summaryrefslogtreecommitdiffstats
path: root/Snippets/tex/math.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Snippets/tex/math.lua')
-rw-r--r--Snippets/tex/math.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/Snippets/tex/math.lua b/Snippets/tex/math.lua
deleted file mode 100644
index 7299e04..0000000
--- a/Snippets/tex/math.lua
+++ /dev/null
@@ -1,30 +0,0 @@
-local in_mathzone = function()
- return vim.fn['vimtex#syntax#in_mathzone']() == 1
-end
-
-return {
- s({ trig = '/', snippetType = 'autosnippet' },
- fmta(
- '\\frac{<>}{<>}',
- {
- i(1),
- i(2),
- }
- ),
- { condition = in_mathzone }
- ),
- s({ trig = "in", snippetType = "autosnippet" },
- fmta(
- '\\int_{<>}^{<>}',
- {
- i(1),
- i(2),
- }
- ),
- { condition = in_mathzone }
- ),
- s({ trig = 'df', snippetType = 'autosnippet' },
- { t('\\diff ') },
- { condition = in_mathzone }
- ),
-}