diff options
Diffstat (limited to 'nvim/snips')
| -rw-r--r-- | nvim/snips/tex/symbols.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nvim/snips/tex/symbols.lua b/nvim/snips/tex/symbols.lua index ef64e96..98cd50e 100644 --- a/nvim/snips/tex/symbols.lua +++ b/nvim/snips/tex/symbols.lua @@ -261,6 +261,11 @@ return { { n.i(1) }), { condition = h.in_mathzone } ), + n.s({trig="msf", wordTrig=false, trigEngine="ecma", snippetType="autosnippet"}, + n.fmta("\\mathsf{<>}", + { n.i(1) }), + { condition = h.in_mathzone } + ), n.s({trig="'hb", snippetType="autosnippet"}, { n.t("\\hbar") }, |