mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
255 B
10 lines
255 B
" Helper function for (x)html snippets
|
|
if exists('s:did_snip_helper') || &cp || !exists('loaded_snips')
|
|
finish
|
|
endif
|
|
let s:did_snip_helper = 1
|
|
|
|
" Automatically closes tag if in xhtml
|
|
fun! Close() abort
|
|
return stridx(&ft, 'xhtml') == -1 ? '' : ' /'
|
|
endf
|
|
|