diff options
| author | ottjk <joshott16@gmail.com> | 2024-03-10 01:31:28 -0500 |
|---|---|---|
| committer | ottjk <joshott16@gmail.com> | 2024-03-10 01:31:28 -0500 |
| commit | 313f7738fea3ab0d7f477c8c760037749ea7b735 (patch) | |
| tree | 9a2fd57b7f6037611aea747f418542fae9f42a72 /nvim/snips/tex/symbols.lua | |
| parent | bdd3025be432f5d78f8bfe1584c90ce63e51a693 (diff) | |
| download | dotfiles-313f7738fea3ab0d7f477c8c760037749ea7b735.tar.gz dotfiles-313f7738fea3ab0d7f477c8c760037749ea7b735.zip | |
updates
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 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 } + ), } |