diff options
| author | ottjk <joshott16@gmail.com> | 2024-01-28 12:08:43 -0500 |
|---|---|---|
| committer | ottjk <joshott16@gmail.com> | 2024-01-28 12:08:43 -0500 |
| commit | bdd3025be432f5d78f8bfe1584c90ce63e51a693 (patch) | |
| tree | 5acdf65c22f1fa18663f006bdc2e06ee475c8bd9 /nvim/snips/tex/chunks.lua | |
| parent | c376c21b31aaee39acadc5e4148ae4d366d45f00 (diff) | |
| download | dotfiles-bdd3025be432f5d78f8bfe1584c90ce63e51a693.tar.gz dotfiles-bdd3025be432f5d78f8bfe1584c90ce63e51a693.zip | |
updated snips and configs toml
Diffstat (limited to 'nvim/snips/tex/chunks.lua')
| -rw-r--r-- | nvim/snips/tex/chunks.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/snips/tex/chunks.lua b/nvim/snips/tex/chunks.lua index 7e6b8d1..5fb1aaf 100644 --- a/nvim/snips/tex/chunks.lua +++ b/nvim/snips/tex/chunks.lua @@ -206,7 +206,7 @@ return { \end{split}\end{equation} ]], { n.i(0) }), - { condition = h.in_text * h.line_begin }) + { condition = h.in_text * h.line_begin }), -- split display equation n.s({trig="sld", snippetType="autosnippet"}, n.fmta( @@ -216,5 +216,5 @@ return { \end{split} \] ]], { n.i(0) }), - { condition = h.in_text * h.line_begin }) + { condition = h.in_text * h.line_begin }), } |