From d37f266e7719a67faa99b3ec62e9a51f0033cfc2 Mon Sep 17 00:00:00 2001 From: Nanderty Date: Sat, 22 Apr 2023 12:10:01 +0200 Subject: starter verbesserungen --- lua/Snippets/tex/symbols.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'lua/Snippets/tex/symbols.lua') diff --git a/lua/Snippets/tex/symbols.lua b/lua/Snippets/tex/symbols.lua index c2ca1d0..ccce14e 100644 --- a/lua/Snippets/tex/symbols.lua +++ b/lua/Snippets/tex/symbols.lua @@ -2,6 +2,30 @@ local tex = require('Snippets.luasniphelperslatex') local helper = require('Snippets.luasniphelpers') return { + s({ trig = 'chi', snippetType = 'autosnippet' }, + { + t('\\chi'), + }, + { condition = tex.in_mathzone } + ), + s({ trig = 'sig', snippetType = 'autosnippet' }, + { + t('\\sigma'), + }, + { condition = tex.in_mathzone } + ), + s({ trig = 'nu', snippetType = 'autosnippet' }, + { + t('\\nu'), + }, + { condition = tex.in_mathzone } + ), + s({ trig = 'alp', snippetType = 'autosnippet' }, + { + t('\\alpha'), + }, + { condition = tex.in_mathzone } + ), s({ trig = 'del', snippetType = 'autosnippet' }, { t('\\delta '), @@ -92,4 +116,10 @@ return { }, { condition = tex.in_mathzone } ), + s({ trig = 'Ria', snippetType = 'autosnippet' }, + { + t('\\Rightarrow'), + }, + { condition = tex.in_mathzone } + ), } -- cgit v1.2.3