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.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/nvim/snips/tex/symbols.lua b/nvim/snips/tex/symbols.lua
index 59b505b..35d0575 100644
--- a/nvim/snips/tex/symbols.lua
+++ b/nvim/snips/tex/symbols.lua
@@ -250,6 +250,10 @@ return {
{ n.t("\\chi") },
{ condition = h.in_mathzone }
),
+ n.s({trig="'na", snippetType="autosnippet"},
+ { n.t("\\nabla") },
+ { condition = h.in_mathzone }
+ ),
n.s({trig="del", snippetType="autosnippet"},
{ n.t("\\Del") },
{ condition = h.in_mathzone }
@@ -358,4 +362,8 @@ return {
{ n.t("\\rhd") },
{ condition = h.in_mathzone }
),
+ n.s({trig=",,", snippetType="autosnippet", wordTrig = false},
+ { n.t("\\,") },
+ { condition = h.in_mathzone }
+ ),
}