From 85004a6c6008067bf1f86d9a411c7d68114bafd6 Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Tue, 6 May 2014 08:41:56 +0200 Subject: [PATCH] add snippet descriptions --- UltiSnips/tex.snippets | 2 +- UltiSnips/vim.snippets | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/UltiSnips/tex.snippets b/UltiSnips/tex.snippets index c32d21f..9ce807e 100644 --- a/UltiSnips/tex.snippets +++ b/UltiSnips/tex.snippets @@ -8,7 +8,7 @@ snippet "b(egin)?" "begin{} / end{}" br \end{$1} endsnippet -snippet tab +snippet tab "tabular / array environment" \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)/}} diff --git a/UltiSnips/vim.snippets b/UltiSnips/vim.snippets index 2e25ffd..29a684a 100644 --- a/UltiSnips/vim.snippets +++ b/UltiSnips/vim.snippets @@ -9,14 +9,14 @@ if !exists("g:${1:MyUltraImportantVar}") endif endsnippet -snippet guard +snippet guard "script reload guard" if exists('${1:did_`!p snip.rv = snip.fn.replace('.','_')`}') || &cp${2: || version < 700} finish endif let $1 = 1${3} endsnippet -snippet f +snippet f function fun ${1:function_name}(${2}) ${3:" code} endf