summaryrefslogtreecommitdiff
path: root/nvim/snips/tex/symbols.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/snips/tex/symbols.lua')
-rw-r--r--nvim/snips/tex/symbols.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/nvim/snips/tex/symbols.lua b/nvim/snips/tex/symbols.lua
index 7fff090..fe7f1f1 100644
--- a/nvim/snips/tex/symbols.lua
+++ b/nvim/snips/tex/symbols.lua
@@ -251,6 +251,16 @@ return {
{ n.i(1) }),
{ condition = h.in_mathzone }
),
+ n.s({trig="mfr", wordTrig=false, trigEngine="ecma", snippetType="autosnippet"},
+ n.fmta("\\mathfrak{<>}",
+ { n.i(1) }),
+ { condition = h.in_mathzone }
+ ),
+ n.s({trig="mrm", wordTrig=false, trigEngine="ecma", snippetType="autosnippet"},
+ n.fmta("\\mathrm{<>}",
+ { n.i(1) }),
+ { condition = h.in_mathzone }
+ ),
n.s({trig="'hb", snippetType="autosnippet"},
{ n.t("\\hbar") },