From 5cffdb1f6922496d1bb3b3aae4152df64e0bc87f Mon Sep 17 00:00:00 2001 From: David Kaufmann Date: Tue, 15 Nov 2011 16:48:21 +0100 Subject: submodule stuff --- src/vim-latex/ftplugin/latex-suite/main.vim | 1041 --------------------------- 1 file changed, 1041 deletions(-) delete mode 100644 src/vim-latex/ftplugin/latex-suite/main.vim (limited to 'src/vim-latex/ftplugin/latex-suite/main.vim') diff --git a/src/vim-latex/ftplugin/latex-suite/main.vim b/src/vim-latex/ftplugin/latex-suite/main.vim deleted file mode 100644 index 65588c9..0000000 --- a/src/vim-latex/ftplugin/latex-suite/main.vim +++ /dev/null @@ -1,1041 +0,0 @@ -" LaTeX filetype -" Language: LaTeX (ft=tex) -" Maintainer: Srinath Avadhanula -" URL: - -" line continuation used here. -let s:save_cpo = &cpo -set cpo&vim - -" avoiding re-inclusion {{{ -" the avoiding re-inclusion statement is not provided here because the files -" which call this file should in the normal course of events handle the -" re-inclusion stuff. - -" we definitely dont want to run through the entire file each and every time. -" only once to define the functions. for successive latex files, just set up -" the folding and mappings and quit. -if exists('s:doneFunctionDefinitions') && !exists('b:forceRedoLocalTex') - call s:SetTeXOptions() - finish -endif - -let s:doneFunctionDefinitions = 1 - -" get the place where this plugin resides for setting cpt and dict options. -" these lines need to be outside the function. -let s:path = expand(':p:h') -" set up personal defaults. -runtime ftplugin/tex/texrc -" set up global defaults. -exe "so ".fnameescape(s:path.'/texrc') - -" }}} - -nmap