diff options
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 }), } |