We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9376b6e commit 85004a6Copy full SHA for 85004a6
UltiSnips/tex.snippets
@@ -8,7 +8,7 @@ snippet "b(egin)?" "begin{} / end{}" br
8
\end{$1}
9
endsnippet
10
11
-snippet tab
+snippet tab "tabular / array environment"
12
\begin{${1:t}${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}{${2:c}}
13
$0${2/((?<=.)c|l|r)|./(?1: & )/g}
14
\end{$1${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}
UltiSnips/vim.snippets
@@ -9,14 +9,14 @@ if !exists("g:${1:MyUltraImportantVar}")
endif
-snippet guard
+snippet guard "script reload guard"
if exists('${1:did_`!p snip.rv = snip.fn.replace('.','_')`}') || &cp${2: || version < 700}
finish
15
16
let $1 = 1${3}
17
18
19
-snippet f
+snippet f function
20
fun ${1:function_name}(${2})
21
${3:" code}
22
endf
0 commit comments