-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvim.snip
44 lines (37 loc) · 988 Bytes
/
vim.snip
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
snippet neobundle_hooks_on_source
abbr neobundle_hooks_on_source
options head
function! neobundle#tapped.hooks.on_source(bundle)
${0}
endfunction
snippet neobundle_tap
abbr neobundle tap
options head
if neobundle#tap('${1:plugin name}') "{{{
${0}
call neobundle#untap()
endif
"}}}
snippet neobundle_config
abbr neobundle config
options head
call neobundle#config(${1:plugin name})
snippet vimplugin-header
abbr vimplugin header part.
options head
" ${1:descriptions}
" Last Change: ${2:date}
" Maintainer: ${3:author} <${4:mail}>
" License: ${4:This file is placed in the public domain.}
snippet plugin-template
abbr plugin's template.
options head
if exists("g:loaded_${1:plugin_name}")
finish
endif
let g:loaded_$1 = 1
let s:save_cpo = &cpo
set cpo&vim
${0:edit here.}
let &cpo = s:save_cpo
unlet s:save_cpo