summaryrefslogtreecommitdiffstats
path: root/lua/Snippets/tex/math.lua
blob: 9d50cb0c0fd6521881deefe66db72187fdff8051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
local tex = require('Snippets.luasniphelperslatex')
local helper = require('Snippets.luasniphelpers')

return {
	s({ trig = '/', snippetType = 'autosnippet' },
		fmta(
			'\\frac{<>}{<>}',
			{
				i(1),
				i(2),
			}
		),
		{ condition = tex.in_mathzone }
	),
	s({ trig = "in", snippetType = "autosnippet" },
		fmta(
			'\\int_{<>}^{<>}',
			{
				i(1),
				i(2),
			}
		),
		{ condition = tex.in_mathzone }
	),
	s({ trig = "tex", snippetType = "autosnippet" },
		fmta(
			'\\text{<>}',
			{
				i(1),
			}
		),
		{ condition = tex.in_mathzone }
	),
	s({ trig = 'df', snippetType = 'autosnippet' },
		{ t('\\diff ') },
		{ condition = tex.in_mathzone }
	),
	s({ trig = 'ple', snippetType = 'autosnippet' },
		{ t('\\left(') },
		{ condition = tex.in_mathzone }
	),
	s({ trig = 'pri', snippetType = 'autosnippet' },
		{ t('\\right)') },
		{ condition = tex.in_mathzone }
	),
}