diff options
| author | Ben Beltran <ben@freshout.us> | 2013-06-05 10:50:57 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@freshout.us> | 2013-06-05 10:50:57 -0500 |
| commit | ab031d44e56467cb7e172206db1aae1d9f34d1b6 (patch) | |
| tree | 9b90a140e8ab77803520e9b3abd2d84b41496cf1 /vim/ftplugin | |
| parent | b61151bbd6d1b325d2d0d09cac7d06e2543346c7 (diff) | |
Aand that's all the plugins.
Diffstat (limited to 'vim/ftplugin')
| -rw-r--r-- | vim/ftplugin/html_snip_helper.vim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/vim/ftplugin/html_snip_helper.vim b/vim/ftplugin/html_snip_helper.vim deleted file mode 100644 index 2e54570..0000000 --- a/vim/ftplugin/html_snip_helper.vim +++ /dev/null @@ -1,10 +0,0 @@ -" 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() - return stridx(&ft, 'xhtml') == -1 ? '' : ' /' -endf |