diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:30:46 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:30:46 +0200 |
commit | d757bfd643cc73c2d495355c153ed0257f5d5b47 (patch) | |
tree | ff210950456938a779d98f6a2ba7321aca512897 /ftplugin/tex_LatexBox.vim | |
parent | 8ec73a3a8974a62a613680a6b6222a77a7b99546 (diff) | |
download | vim-polyglot-d757bfd643cc73c2d495355c153ed0257f5d5b47.tar.gz vim-polyglot-d757bfd643cc73c2d495355c153ed0257f5d5b47.zip |
Change latex provider to luatex, closes #476
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 f2a2ea6e..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 |