summaryrefslogtreecommitdiffstats
path: root/lua/Snippets/tex/symbols.lua
diff options
context:
space:
mode:
authorNanderty <psopka@sopka.ch>2023-05-19 17:08:13 +0200
committerNanderty <psopka@sopka.ch>2023-05-19 17:08:13 +0200
commit95686ce8c52cab5d43ec5cc031ce3758589a5f8f (patch)
treedd00f6c20d8bbfa4406e80512258aa60239b96b0 /lua/Snippets/tex/symbols.lua
parent5b86f069582eaff5d360e62e28dcaba3aee9de47 (diff)
downloadneovim-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.lua14
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 }
+ ),
}