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/expressions.lua | |
| parent | c376c21b31aaee39acadc5e4148ae4d366d45f00 (diff) | |
| download | dotfiles-bdd3025be432f5d78f8bfe1584c90ce63e51a693.tar.gz dotfiles-bdd3025be432f5d78f8bfe1584c90ce63e51a693.zip | |
updated snips and configs toml
Diffstat (limited to 'nvim/snips/tex/expressions.lua')
| -rw-r--r-- | nvim/snips/tex/expressions.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/snips/tex/expressions.lua b/nvim/snips/tex/expressions.lua index 88659eb..3ac5a70 100644 --- a/nvim/snips/tex/expressions.lua +++ b/nvim/snips/tex/expressions.lua @@ -69,12 +69,12 @@ return { { condition = h.in_mathzone } ), n.s({trig="pd", snippetType="autosnippet"}, - n.fmta("\\pd[]{<>}{<>} ", + n.fmta("\\pd[]{<>}{<>}", { n.i(1), n.i(2) }), { condition = h.in_mathzone } ), n.s({trig="pD", snippetType="autosnippet"}, - n.fmta("\\pd[<>]{<>}{<>} ", + n.fmta("\\pd[<>]{<>}{<>}", { n.i(1), n.i(2), n.i(3) }), { condition = h.in_mathzone } ), |