diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-06 13:17:06 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-06 13:17:06 +0100 |
commit | 11f53253ad9fd0cd3e7a44ed9f8c80a4f265b46e (patch) | |
tree | 08649366f6babad66db065b341691cfac02c2c4a /ftplugin/tex_LatexBox.vim | |
parent | 9fe009095afdb86f6f771109ac454ccfc5340f31 (diff) | |
download | vim-polyglot-3.2.0.tar.gz vim-polyglot-3.2.0.zip |
Add slime syntax, closes #252v3.2.0
Diffstat (limited to 'ftplugin/tex_LatexBox.vim')
-rw-r--r-- | ftplugin/tex_LatexBox.vim | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/ftplugin/tex_LatexBox.vim b/ftplugin/tex_LatexBox.vim deleted file mode 100644 index 6c8899a6..00000000 --- a/ftplugin/tex_LatexBox.vim +++ /dev/null @@ -1,37 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1 - -" LaTeX Box plugin for Vim -" Maintainer: David Munger -" Email: mungerd@gmail.com -" Version: 0.9.6 - -if exists('*fnameescape') - function! s:FNameEscape(s) - return fnameescape(a:s) - endfunction -else - function! s:FNameEscape(s) - return a:s - endfunction -endif - -if !exists('b:LatexBox_loaded') - - let prefix = expand('<sfile>:p:h') . '/latex-box/' - - execute 'source ' . s:FNameEscape(prefix . 'common.vim') - execute 'source ' . s:FNameEscape(prefix . 'complete.vim') - execute 'source ' . s:FNameEscape(prefix . 'motion.vim') - execute 'source ' . s:FNameEscape(prefix . 'latexmk.vim') - execute 'source ' . s:FNameEscape(prefix . 'folding.vim') - " added by AH to add main.tex file finder - execute 'source ' . s:FNameEscape(prefix . 'findmain.vim') - execute 'source ' . s:FNameEscape(prefix . 'mappings.vim') - - let b:LatexBox_loaded = 1 - -endif - -" vim:fdm=marker:ff=unix:noet:ts=4:sw=4 - -endif |