diff options
| author | Nanderty <psopka@sopka.ch> | 2023-05-19 17:08:13 +0200 |
|---|---|---|
| committer | Nanderty <psopka@sopka.ch> | 2023-05-19 17:08:13 +0200 |
| commit | 95686ce8c52cab5d43ec5cc031ce3758589a5f8f (patch) | |
| tree | dd00f6c20d8bbfa4406e80512258aa60239b96b0 /lua/Snippets/tex/symbols.lua | |
| parent | 5b86f069582eaff5d360e62e28dcaba3aee9de47 (diff) | |
| download | neovim-config-95686ce8c52cab5d43ec5cc031ce3758589a5f8f.tar.gz neovim-config-95686ce8c52cab5d43ec5cc031ce3758589a5f8f.tar.bz2 neovim-config-95686ce8c52cab5d43ec5cc031ce3758589a5f8f.zip | |
graphics
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 } + ), } |
