Skip to content

Commit

Permalink
add snippet options to some snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
lucc committed May 6, 2014
1 parent 27c2c2b commit 2672bde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion UltiSnips/tex.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ snippet "b(egin)?" "begin{} / end{}" br
\end{$1}
endsnippet

snippet tab "tabular / array environment"
snippet tab "tabular / array environment" b
\begin{${1:t}${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}{${2:c}}
$0${2/((?<=.)c|l|r)|./(?1: & )/g}
\end{$1${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}
Expand Down
6 changes: 3 additions & 3 deletions UltiSnips/vim.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ priority -50
###########################################################################
# SnipMate Snippets #
###########################################################################
snippet gvar "Global / configuration variable"
snippet gvar "Global / configuration variable" b
if !exists("g:${1:MyUltraImportantVar}")
let g:$1 = ${2:"${3:<tab>}"}
endif
endsnippet

snippet guard "script reload guard"
snippet guard "script reload guard" b
if exists('${1:did_`!p snip.rv = snip.fn.replace('.','_')`}') || &cp${2: || version < 700}
finish
endif
let $1 = 1${3}
endsnippet

snippet f "function"
snippet f "function" b
fun ${1:function_name}(${2})
${3:" code}
endf
Expand Down

0 comments on commit 2672bde

Please sign in to comment.