diff options
Diffstat (limited to 'nvim/snips/tex/symbols.lua')
| -rw-r--r-- | nvim/snips/tex/symbols.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nvim/snips/tex/symbols.lua b/nvim/snips/tex/symbols.lua index 04d7e78..cbd7680 100644 --- a/nvim/snips/tex/symbols.lua +++ b/nvim/snips/tex/symbols.lua @@ -109,6 +109,14 @@ return { { n.t("\\leftrightarrow") }, { condition = h.in_mathzone } ), + n.s({trig="^^", snippetType="autosnippet"}, + { n.t("\\uparrow") }, + { condition = h.in_mathzone } + ), + n.s({trig="vv", snippetType="autosnippet"}, + { n.t("\\downarrow") }, + { condition = h.in_mathzone } + ), n.s({trig="!>", snippetType="autosnippet"}, { n.t("\\mapsto") }, { condition = h.in_mathzone } |