merging vim folders

This commit is contained in:
Debucquoy
2023-11-02 10:11:39 +01:00
parent 4234763787
commit 7f78647c46
8 changed files with 58 additions and 0 deletions

View File

@ -20,10 +20,18 @@ snippet bb "mathbb" i
\mathbb{${1:${VISUAL:R}}} $0
endsnippet
snippet in "\in" i
\in $0
endsnippet
snippet text "implement text in tex" i
\text{ ${1:${VISUAL:text}} } $0
endsnippet
snippet quad "small space (like a tab)" i
\quad $0
endsnippet
snippet br "break a line in tex mode" i
\\\\\\\\
$0
@ -43,6 +51,13 @@ snippet set "prepare for a set in tex {}" i
\\\\{ ${1:${VISUAL:e}} \\\\} $0
endsnippet
snippet forall "forall"
\forall $0
endsnippet
snippet exists "exists"
\exists $0
priority -1
snippet "(\w+)" "latex default" r
\\`!p snip.rv = match.group(1)` $1