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 = 'ble', snippetType = 'autosnippet' },
{ t('\\left(') },
{ condition = tex.in_mathzone }
),
s({ trig = 'bri', snippetType = 'autosnippet' },
{ t('\\right)') },
{ condition = tex.in_mathzone }
),
}
|