diff options
Diffstat (limited to 'lua/Snippets/tex/symbols.lua')
| -rw-r--r-- | lua/Snippets/tex/symbols.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lua/Snippets/tex/symbols.lua b/lua/Snippets/tex/symbols.lua index 76fc3c2..ef57ca4 100644 --- a/lua/Snippets/tex/symbols.lua +++ b/lua/Snippets/tex/symbols.lua @@ -59,10 +59,24 @@ return { { condition = tex.in_mathzone } ), + s({ trig = 'perp', snippetType = 'autosnippet' }, + { + t('\\perp '), + }, + { condition = tex.in_mathzone } + ), + s({ trig = 'Ria', snippetType = 'autosnippet' }, { t('\\Rightarrow '), }, { condition = tex.in_mathzone } ), + + s({ trig = 'to', snippetType = 'autosnippet' }, + { + t('\\to '), + }, + { condition = tex.in_mathzone } + ), } |
