diff options
Diffstat (limited to '')
74 files changed, 0 insertions, 3315 deletions
diff --git a/dot_vim/ftplugin/latex-suite/packages.vim b/dot_vim/ftplugin/latex-suite/packages.vim deleted file mode 100644 index c3bf2b1..0000000 --- a/dot_vim/ftplugin/latex-suite/packages.vim +++ /dev/null @@ -1,669 +0,0 @@ -"============================================================================= -" File: packages.vim -" Author: Mikolaj Machowski -" Created: Tue Apr 23 06:00 PM 2002 PST -" CVS: $Id: packages.vim 997 2006-03-20 09:45:45Z srinathava $ -" -" Description: handling packages from within vim -"============================================================================= - -" avoid reinclusion. -if !g:Tex_PackagesMenu || exists('s:doneOnce') - finish -endif -let s:doneOnce = 1 - -let s:path = expand("<sfile>:p:h") - -let s:menu_div = 20 - -com! -nargs=0 TPackageUpdate :silent! call Tex_pack_updateall(1) -com! -nargs=0 TPackageUpdateAll :silent! call Tex_pack_updateall(1) - -" Custom command-line completion of Tcommands is very useful but this feature -" is available only in Vim 6.2 and above. Check number of version and choose -" proper command and function. -if v:version >= 602 - com! -complete=custom,Tex_CompletePackageName -nargs=* TPackage let s:retVal = Tex_pack_one(<f-args>) <bar> normal! i<C-r>=s:retVal<CR> - - " Tex_CompletePackageName: for completing names in TPackage command {{{ - " Description: get list of package names with globpath(), remove full path - " and return list of names separated with newlines. - " - function! Tex_CompletePackageName(A,P,L) - " Get name of packages from all runtimepath directories - let packnames = Tex_FindInRtp('', 'packages') - let packnames = substitute(packnames, '^,', '', 'e') - " Separate names with \n not , - let packnames = substitute(packnames,',','\n','g') - return packnames - endfunction - " }}} - -else - com! -nargs=* TPackage let s:retVal = Tex_pack_one(<f-args>) <bar> normal! i<C-r>=s:retVal<CR> - -endif - -imap <silent> <plug> <Nop> -nmap <silent> <plug> i - -let g:Tex_package_supported = '' -let g:Tex_package_detected = '' -" Remember the defaults because we want g:Tex_PromptedEnvironments to contain -" in addition to the default, \newenvironments, and the \newenvironments might -" change... -let g:Tex_PromptedEnvironmentsDefault = g:Tex_PromptedEnvironments -let g:Tex_PromptedCommandsDefault = g:Tex_PromptedCommands - - -" Tex_pack_check: creates the package menu and adds to 'dict' setting. {{{ -" -function! Tex_pack_check(package) - " Use Tex_FindInRtp() function to get first name from packages list in all - " rtp directories conforming with latex-suite directories hierarchy - " Store names in variables to process functions only once. - let packname = Tex_FindInRtp(a:package, 'packages') - if packname != '' - exe 'runtime! ftplugin/latex-suite/packages/' . a:package - if has("gui_running") - call Tex_pack(a:package) - endif - if g:Tex_package_supported !~ a:package - let g:Tex_package_supported = g:Tex_package_supported.','.a:package - endif - endif - " Return full list of dictionaries (separated with ,) for package in &rtp - call Tex_Debug("Tex_pack_check: searching for ".a:package." in dictionaries/ in &rtp", "pack") - let dictname = Tex_FindInRtp(a:package, 'dictionaries', ':p') - if dictname != '' - exe 'setlocal dict^=' . dictname - call Tex_Debug('Tex_pack_check: setlocal dict^=' . dictname, 'pack') - if g:Tex_package_supported !~ a:package - let g:Tex_package_supported = g:Tex_package_supported.','.a:package - endif - endif - if g:Tex_package_detected !~ '\<'.a:package.'\>' - let g:Tex_package_detected = g:Tex_package_detected.','.a:package - endif - let g:Tex_package_detected = substitute(g:Tex_package_detected, '^,', '', '') - let g:Tex_package_supported = substitute(g:Tex_package_supported, '^,', '', '') -endfunction - -" }}} -" Tex_pack_uncheck: removes package from menu and 'dict' settings. {{{ -function! Tex_pack_uncheck(package) - if has("gui_running") && Tex_FindInRtp(a:package, 'packages') != '' - exe 'silent! aunmenu '.g:Tex_PackagesMenuLocation.'-sep'.a:package.'-' - exe 'silent! aunmenu '.g:Tex_PackagesMenuLocation.a:package.'\ Options' - exe 'silent! aunmenu '.g:Tex_PackagesMenuLocation.a:package.'\ Commands' - endif - if Tex_FindInRtp(a:package, 'dictionaries') != '' - exe 'setlocal dict-='.Tex_FindInRtp(a:package, 'dictionaries') - endif -endfunction - -" }}} -" Tex_pack_updateall: updates the TeX-Packages menu {{{ -" Description: -" This function first calls Tex_pack_all to scan for \usepackage's etc if -" necessary. After that, it 'supports' and 'unsupports' packages as needed -" in such a way as to not repeat work. -function! Tex_pack_updateall(force) - call Tex_Debug('+Tex_pack_updateall', 'pack') - - " Find out which file we need to scan. - let fname = Tex_GetMainFileName(':p') - - " If this is the same as last time, don't repeat. - if !a:force && exists('s:lastScannedFile') && - \ s:lastScannedFile == fname - return - endif - " Remember which file we scanned for next time. - let s:lastScannedFile = fname - - " Remember which packages we detected last time. - if exists('g:Tex_package_detected') - let oldpackages = g:Tex_package_detected - else - let oldpackages = '' - endif - - " This sets up a global variable of all detected packages. - let g:Tex_package_detected = '' - " reset the environments and commands. - let g:Tex_PromptedEnvironments = g:Tex_PromptedEnvironmentsDefault - let g:Tex_PromptedCommands = g:Tex_PromptedCommandsDefault - - if expand('%:p') != fname - call Tex_Debug(':Tex_pack_updateall: sview '.Tex_EscapeSpaces(fname), 'pack') - exe 'sview '.Tex_EscapeSpaces(fname) - else - call Tex_Debug(':Tex_pack_updateall: split', 'pack') - split - endif - - call Tex_ScanForPackages() - q - - call Tex_Debug(':Tex_pack_updateall: detected ['.g:Tex_package_detected.'] in first run', 'pack') - - " Now for each package find out if this is a custom package and if so, - " scan that as well. We will use the ':find' command in vim to let vim - " search through the file paths for us. - " - " NOTE: This while loop will also take into account packages included - " within packages to any level of recursion as long as - " g:Tex_package_detected is always padded with new package names - " from the end. - " - " First set the &path setting to the user's TEXINPUTS setting. - let _path = &path - let _suffixesadd = &suffixesadd - - let &path = '.,'.g:Tex_TEXINPUTS - let &suffixesadd = '.sty,.tex' - - let scannedPackages = '' - - let i = 1 - let packname = Tex_Strntok(g:Tex_package_detected, ',', i) - while packname != '' - - call Tex_Debug(':Tex_pack_updateall: scanning package '.packname, 'pack') - - " Scan this package only if we have not scanned it before in this - " run. - if scannedPackages =~ '\<'.packname.'\>' - let i = i + 1 - - call Tex_Debug(':Tex_pack_updateall: '.packname.' already scanned', 'pack') - let packname = Tex_Strntok(g:Tex_package_detected, ',', i) - continue - endif - - " Split this window in two. The packages/files being found will open - " in this new window and we also need not bother with files being - " modified etc. - split - - call Tex_Debug(':Tex_pack_updateall: silent! find '.Tex_EscapeSpaces(packname).'.sty', 'pack') - let thisbufnum = bufnr('%') - exec 'silent! find '.Tex_EscapeSpaces(packname).'.sty' - call Tex_Debug(':Tex_pack_updateall: present file = '.bufname('%'), 'pack') - - " If this file was not found, assume that it means its not a - " custom package and mark it "scanned". - " A package is not found if we stay in the same buffer as before and - " its not the one where we want to go. - if bufnr('%') == thisbufnum && bufnr('%') != bufnr(packname.'.sty') - let scannedPackages = scannedPackages.','.packname - q - - call Tex_Debug(':Tex_pack_updateall: '.packname.' not found anywhere', 'pack') - let i = i + 1 - let packname = Tex_Strntok(g:Tex_package_detected, ',', i) - continue - endif - - " otherwise we are presently editing a custom package, scan it for - " more \usepackage lines from the first line to the last. - let packpath = expand('%:p') - let &complete = &complete.'s'.packpath - - call Tex_Debug(':Tex_pack_updateall: found custom package '.packpath, 'pack') - call Tex_ScanForPackages(line('$'), line('$')) - call Tex_Debug(':Tex_pack_updateall: After scanning, g:Tex_package_detected = '.g:Tex_package_detected, 'pack') - - let scannedPackages = scannedPackages.','.packname - " Do not use bwipe, but that leads to excessive buffer number - " consumption. Besides, its intuitive for a custom package to remain - " on the buffer list. - q - - let i = i + 1 - let packname = Tex_Strntok(g:Tex_package_detected, ',', i) - endwhile - - let &path = _path - let &suffixesadd = _suffixesadd - - " Now only support packages we didn't last time. - " First remove packages which were used last time but are no longer used. - let i = 1 - let oldPackName = Tex_Strntok(oldpackages, ',', i) - while oldPackName != '' - if g:Tex_package_detected !~ oldPackName - call Tex_pack_uncheck(oldPackName) - endif - let i = i + 1 - let oldPackName = Tex_Strntok(oldpackages, ',', i) - endwhile - - " Then support packages which are used this time but weren't used last - " time. - let i = 1 - let newPackName = Tex_Strntok(g:Tex_package_detected, ',', i) - while newPackName != '' - if oldpackages !~ newPackName - call Tex_pack_one(newPackName) - endif - let i = i + 1 - let newPackName = Tex_Strntok(g:Tex_package_detected, ',', i) - endwhile - - " Throw an event that we are done scanning packages. Some packages might - " use this to change behavior based on which options have been used etc. - call Tex_Debug(":Tex_pack_updateall: throwing LatexSuiteScannedPackages event", "pack") - silent! do LatexSuite User LatexSuiteScannedPackages - - call Tex_Debug("-Tex_pack_updateall", "pack") -endfunction - -" }}} -" Tex_pack_one: supports each package in the argument list.{{{ -" Description: -" If no arguments are supplied, then the user is asked to choose from the -" packages found in the packages/ directory -function! Tex_pack_one(...) - if a:0 == 0 || (a:0 > 0 && a:1 == '') - let packlist = Tex_FindInRtp('', 'packages') - let packname = Tex_ChooseFromPrompt( - \ "Choose a package: \n" . - \ Tex_CreatePrompt(packlist, '3', ',') . - \ "\nEnter number or filename :", - \ packlist, ',') - if packname != '' - return Tex_pack_one(packname) - else - return '' - endif - else - " Support the packages supplied. This function can be called with - " multiple arguments in which case, support each of them in turn. - let retVal = '' - let omega = 1 - while omega <= a:0 - let packname = a:{omega} - if Tex_FindInRtp(packname, 'packages') != '' - call Tex_pack_check(packname) - if exists('g:TeX_package_option_'.packname) - \ && g:TeX_package_option_{packname} != '' - let retVal = retVal.'\usepackage[<++>]{'.packname.'}<++>' - else - let retVal = retVal.'\usepackage{'.packname.'}'."\<CR>" - endif - else - let retVal = retVal.'\usepackage{'.packname.'}'."\<CR>" - endif - let omega = omega + 1 - endwhile - return IMAP_PutTextWithMovement(substitute(retVal, "\<CR>$", '', ''), '<+', '+>') - endif -endfunction -" }}} -" Tex_ScanForPackages: scans the current file for \usepackage{} lines {{{ -" and if supported, loads the options and commands found in the -" corresponding package file. Also scans for \newenvironment and -" \newcommand lines and adds names to g:Tex_Prompted variables, they can be -" easy available through <F5> and <F7> shortcuts -function! Tex_ScanForPackages(...) - call Tex_Debug("+Tex_ScanForPackages", "pack") - - let pos = line('.').' | normal! '.virtcol('.').'|' - - " For package files without \begin and \end{document}, we might be told to - " search from beginning to end. - if a:0 < 2 - 0 - let beginline = search('\\begin{document}', 'W') - let endline = search('\\end{document}', 'W') - 0 - else - let beginline = a:1 - let endline = a:2 - endif - - call Tex_Debug(":Tex_ScanForPackages: Begining scans in [".bufname('%')."], beginline = ".beginline, "pack") - - - " Scan the file. First open up all the folds, because the command - " /somepattern - " issued in a closed fold _always_ goes to the first match. - let erm = v:errmsg - silent! normal! ggVGzO - let v:errmsg = erm - - call Tex_Debug(":Tex_ScanForPackages: beginning scan for \\usepackage lines", "pack") - " The wrap trick enables us to match \usepackage on the first line as - " well. - let wrap = 'w' - while search('^\s*\\usepackage\_.\{-}{\_.\+}', wrap) - let wrap = 'W' - - if line('.') > beginline - break - endif - - let saveA = @a - - " If there are options, then find those. - if getline('.') =~ '\\usepackage\[.\{-}\]' - let options = matchstr(getline('.'), '\\usepackage\[\zs.\{-}\ze\]') - elseif getline('.') =~ '\\usepackage\[' - " Entering here means that the user has split the \usepackage - " across newlines. Therefore, use yank. - exec "normal! /{\<CR>\"ayi}" - let options = @a - else - let options = '' - endif - - " The following statement puts the stuff between the { }'s of a - " \usepackage{stuff,foo} into @a. Do not use matchstr() and the like - " because we can have things split across lines and such. - exec "normal! /{\<CR>\"ay/}\<CR>" - - " now remove all whitespace from @a. We need to remove \n and \r - " because we can encounter stuff like - " \usepackage{pack1, - " newpackonanotherline} - let @a = substitute(@a, "[ \t\n\r]", '', 'g') - - " Now we have something like pack1,pack2,pack3 with possibly commas - " and stuff before the first package and after the last package name. - " Remove those. - let @a = substitute(@a, '\(^\W*\|\W*$\)', '', 'g') - - " This gets us a string like 'pack1,pack2,pack3' - " TODO: This will contain duplicates if the user has duplicates. - " Should we bother taking care of this? - let g:Tex_package_detected = g:Tex_package_detected.','.@a - - " For each package found, form a global variable of the form - " g:Tex_{packagename}_options - " which contains a list of the options. - let j = 1 - while Tex_Strntok(@a, ',', j) != '' - let g:Tex_{Tex_Strntok(@a, ',', j)}_options = options - let j = j + 1 - endwhile - - " Finally convert @a into something like '"pack1","pack2"' - let @a = substitute(@a, '^\|$', '"', 'g') - let @a = substitute(@a, ',', '","', 'g') - - call Tex_Debug(":Tex_ScanForPackages: found package(s) [".@a."] on line ".line('.'), "pack") - - " restore @a - let @a = saveA - endwhile - call Tex_Debug(":Tex_ScanForPackages: End scan \\usepackage, detected packages = ".g:Tex_package_detected, "pack") - - " TODO: This needs to be changed. In the future, we might have - " functionality to remember the fold-state before opening up all the folds - " and then re-creating them. Use mkview.vim. - let erm = v:errmsg - silent! normal! ggVGzC - let v:errmsg = erm - - " Because creating list of detected packages gives string - " ',pack1,pack2,pack3' remove leading , - let g:Tex_package_detected = substitute(g:Tex_package_detected, '^,', '', '') - - call Tex_Debug(":Tex_ScanForPackages: Beginning scan for \\newcommand's", "pack") - " Scans whole file (up to \end{document}) for \newcommand and adds this - " commands to g:Tex_PromptedCommands variable, it is easily available - " through <F7> - 0 - while search('^\s*\\newcommand\*\?{.\{-}}', 'W') - - if line('.') > endline - break - endif - - let newcommand = matchstr(getline('.'), '\\newcommand\*\?{\\\zs.\{-}\ze}') - let g:Tex_PromptedCommands = g:Tex_PromptedCommands . ',' . newcommand - - endwhile - - " Scans whole file (up to \end{document}) for \newenvironment and adds this - " environments to g:Tex_PromptedEnvironments variable, it is easily available - " through <F5> - 0 - call Tex_Debug(":Tex_ScanForPackages: Beginning scan for \\newenvironment's", 'pack') - - while search('^\s*\\newenvironment\*\?{.\{-}}', 'W') - call Tex_Debug('found newenvironment on '.line('.'), 'pack') - - if line('.') > endline - break - endif - - let newenvironment = matchstr(getline('.'), '\\newenvironment\*\?{\zs.\{-}\ze}') - let g:Tex_PromptedEnvironments = g:Tex_PromptedEnvironments . ',' . newenvironment - - endwhile - - exe pos - " first make a random search so that we push at least one item onto the - " search history. Since vim puts only one item in the history per function - " call, this way we make sure that one and only item is put into the - " search history. - normal! /^<CR> - " now delete it... - call histdel('/', -1) - - call Tex_Debug("-Tex_ScanForPackages", "pack") -endfunction - -" }}} -" Tex_pack_supp_menu: sets up a menu for package files {{{ -" found in the packages directory groups the packages thus found into groups -" of 20... -function! Tex_pack_supp_menu() - let suplist = Tex_FindInRtp('', 'packages') - - call Tex_MakeSubmenu(suplist, g:Tex_PackagesMenuLocation.'Supported.', - \ '<plug><C-r>=Tex_pack_one("', '")<CR>') -endfunction - -" }}} -" Tex_pack: loads the options (and commands) for the given package {{{ -function! Tex_pack(pack) - if exists('g:TeX_package_'.a:pack) - - let optionList = g:TeX_package_option_{a:pack}.',' - let commandList = g:TeX_package_{a:pack}.',' - - " Don't create separator if in package file are only Vim commands. - " Rare but possible. - if !(commandList == ',' && optionList == ',') - exec 'amenu '.g:Tex_PackagesMenuLocation.'-sep'.a:pack.'- <Nop>' - endif - - if optionList != '' - - let mainMenuName = g:Tex_PackagesMenuLocation.a:pack.'\ Options.' - call s:GroupPackageMenuItems(optionList, mainMenuName, - \ '<plug><C-r>=IMAP_PutTextWithMovement("', ',")<CR>') - - endif - - if commandList != '' - - let mainMenuName = g:Tex_PackagesMenuLocation.a:pack.'\ Commands.' - call s:GroupPackageMenuItems(commandList, mainMenuName, - \ '<plug><C-r>=Tex_ProcessPackageCommand("', '")<CR>', - \ '<SID>FilterPackageMenuLHS') - endif - endif -endfunction - -" }}} - -" ============================================================================== -" Menu Functions -" Creating menu items for the all the package files found in the packages/ -" directory as well as creating menus for each supported package found in the -" preamble. -" ============================================================================== -" Tex_MakeSubmenu: makes a submenu given a list of items {{{ -" Description: -" This function takes a comma seperated list of menu items and creates a -" 'grouped' menu. i.e, it groups the items into s:menu_div items each and -" puts them in submenus of the given mainMenu. -" Each menu item is linked to the HandlerFunc. -" If an additional argument is supplied, then it is used to filter each of -" the menu items to generate better names for the menu display. -" -function! Tex_MakeSubmenu(menuList, mainMenuName, - \ handlerFuncLHS, handlerFuncRHS, ...) - - let extractFunction = (a:0 > 0 ? a:1 : '' ) - let menuList = substitute(a:menuList, '[^,]$', ',', '') - - let doneMenuSubmenu = 0 - - while menuList != '' - - " Extract upto s:menu_div menus at once. - let menuBunch = matchstr(menuList, '\v(.{-},){,'.s:menu_div.'}') - - " The remaining menus go into the list. - let menuList = strpart(menuList, strlen(menuBunch)) - - let submenu = '' - " If there is something remaining, then we got s:menu_div items. - " therefore put these menu items into a submenu. - if strlen(menuList) || doneMenuSubmenu - exec 'let firstMenu = '.extractFunction."(matchstr(menuBunch, '\\v^.{-}\\ze,'))" - exec 'let lastMenu = '.extractFunction."(matchstr(menuBunch, '\\v[^,]{-}\\ze,$'))" - - let submenu = firstMenu.'\ \-\ '.lastMenu.'.' - - let doneMenuSubmenu = 1 - endif - - " Now for each menu create a menu under the submenu - let i = 1 - let menuName = Tex_Strntok(menuBunch, ',', i) - while menuName != '' - exec 'let menuItem = '.extractFunction.'(menuName)' - execute 'amenu '.a:mainMenuName.submenu.menuItem - \ ' '.a:handlerFuncLHS.menuName.a:handlerFuncRHS - - let i = i + 1 - let menuName = Tex_Strntok(menuBunch, ',', i) - endwhile - endwhile -endfunction - -" }}} -" GroupPackageMenuItems: uses the sbr: to split menus into groups {{{ -" Description: -" This function first splits up the menuList into groups based on the -" special sbr: tag and then calls Tex_MakeSubmenu -" -function! <SID>GroupPackageMenuItems(menuList, menuName, - \ handlerFuncLHS, handlerFuncRHS,...) - - if a:0 > 0 - let extractFunction = a:1 - else - let extractFunction = '' - endif - let menuList = a:menuList - - while matchstr(menuList, 'sbr:') != '' - let groupName = matchstr(menuList, '\v^sbr:\zs.{-}\ze,') - let menuList = strpart(menuList, strlen('sbr:'.groupName.',')) - if matchstr(menuList, 'sbr:') != '' - let menuGroup = matchstr(menuList, '\v^.{-},\zesbr:') - else - let menuGroup = menuList - endif - - call Tex_MakeSubmenu(menuGroup, a:menuName.groupName.'.', - \ a:handlerFuncLHS, a:handlerFuncRHS, extractFunction) - - let menuList = strpart(menuList, strlen(menuGroup)) - endwhile - - call Tex_MakeSubmenu(menuList, a:menuName, - \ a:handlerFuncLHS, a:handlerFuncRHS, extractFunction) - -endfunction " }}} -" Definition of what to do for various package commands {{{ -let s:CommandSpec_bra = '\<+replace+>{<++>}<++>' -let s:CommandSpec_brs = '\<+replace+><++>' -let s:CommandSpec_brd = '\<+replace+>{<++>}{<++>}<++>' -let s:CommandSpec_env = '\begin{<+replace+>}'."\<CR><++>\<CR>".'\end{<+replace+>}<++>' -let s:CommandSpec_ens = '\begin{<+replace+>}<+extra+>'."\<CR><++>\<CR>".'\end{<+replace+>}<++>' -let s:CommandSpec_eno = '\begin[<++>]{<+replace+>}'."\<CR><++>\<CR>".'\end{<+replace+>}' -let s:CommandSpec_nor = '\<+replace+>' -let s:CommandSpec_noo = '\<+replace+>[<++>]' -let s:CommandSpec_nob = '\<+replace+>[<++>]{<++>}{<++>}<++>' -let s:CommandSpec_spe = '<+replace+>' -let s:CommandSpec_ = '\<+replace+>' - -let s:MenuLHS_bra = '\\&<+replace+>{}' -let s:MenuLHS_brs = '\\&<+replace+>{}' -let s:MenuLHS_brd = '\\&<+replace+>{}{}' -let s:MenuLHS_env = '&<+replace+>\ (E)' -let s:MenuLHS_ens = '&<+replace+>\ (E)' -let s:MenuLHS_eno = '&<+replace+>\ (E)' -let s:MenuLHS_nor = '\\&<+replace+>' -let s:MenuLHS_noo = '\\&<+replace+>[]' -let s:MenuLHS_nob = '\\&<+replace+>[]{}{}' -let s:MenuLHS_spe = '&<+replace+>' -let s:MenuLHS_sep = '-sep<+replace+>-' -let s:MenuLHS_ = '\\&<+replace+>' -" }}} -" Tex_ProcessPackageCommand: processes a command from the package menu {{{ -" Description: -function! Tex_ProcessPackageCommand(command) - if a:command =~ ':' - let commandType = matchstr(a:command, '^\w\+\ze:') - let commandName = matchstr(a:command, '^\w\+:\zs[^:]\+\ze:\?') - let extrapart = strpart(a:command, strlen(commandType.':'.commandName.':')) - else - let commandType = '' - let commandName = a:command - let extrapart = '' - endif - - let command = s:CommandSpec_{commandType} - let command = substitute(command, '<+replace+>', commandName, 'g') - let command = substitute(command, '<+extra+>', extrapart, 'g') - return IMAP_PutTextWithMovement(command) -endfunction -" }}} -" FilterPackageMenuLHS: filters the command description to provide a better menu item {{{ -" Description: -function! <SID>FilterPackageMenuLHS(command) - let commandType = matchstr(a:command, '^\w\+\ze:') - if commandType != '' - let commandName = strpart(a:command, strlen(commandType.':')) - else - let commandName = a:command - endif - - return substitute(s:MenuLHS_{commandType}, '<+replace+>', commandName, 'g') -endfunction " }}} - -if g:Tex_Menus - exe 'amenu '.g:Tex_PackagesMenuLocation.'&UpdatePackage :call Tex_pack(expand("<cword>"))<cr>' - exe 'amenu '.g:Tex_PackagesMenuLocation.'&UpdateAll :call Tex_pack_updateall(1)<cr>' - - call Tex_pack_supp_menu() -endif - -augroup LatexSuite - au LatexSuite User LatexSuiteFileType - \ call Tex_Debug('packages.vim: Catching LatexSuiteFileType event', 'pack') | - \ call Tex_pack_updateall(0) -augroup END - -" vim:fdm=marker:ts=4:sw=4:noet:ff=unix diff --git a/dot_vim/ftplugin/latex-suite/packages/SIunits b/dot_vim/ftplugin/latex-suite/packages/SIunits deleted file mode 100644 index ba110fa..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/SIunits +++ /dev/null @@ -1,315 +0,0 @@ -if exists("SIunits_package_file") - finish -endif -let SIunits_package_file = 1 - -let g:TeX_package_SIunits = -\'nor:addprefix,'. -\'nor:addunit,'. -\'nor:ampere,'. -\'nor:amperemetresecond,'. -\'nor:amperepermetre,'. -\'nor:amperepermetrenp,'. -\'nor:amperepersquaremetre,'. -\'nor:amperepersquaremetrenp,'. -\'nor:angstrom,'. -\'nor:arad,'. -\'nor:arcminute,'. -\'nor:arcsecond,'. -\'nor:are,'. -\'nor:atomicmass,'. -\'nor:atto,'. -\'nor:attod,'. -\'nor:barn,'. -\'nor:bbar,'. -\'nor:becquerel,'. -\'nor:becquerelbase,'. -\'nor:bel,'. -\'nor:candela,'. -\'nor:candelapersquaremetre,'. -\'nor:candelapersquaremetrenp,'. -\'nor:celsius,'. -\'nor:Celsius,'. -\'nor:celsiusbase,'. -\'nor:centi,'. -\'nor:centid,'. -\'nor:coulomb,'. -\'nor:coulombbase,'. -\'nor:coulombpercubicmetre,'. -\'nor:coulombpercubicmetrenp,'. -\'nor:coulombperkilogram,'. -\'nor:coulombperkilogramnp,'. -\'nor:coulombpermol,'. -\'nor:coulombpermolnp,'. -\'nor:coulombpersquaremetre,'. -\'nor:coulombpersquaremetrenp,'. -\'nor:cubed,'. -\'nor:cubic,'. -\'nor:cubicmetre,'. -\'nor:cubicmetreperkilogram,'. -\'nor:cubicmetrepersecond,'. -\'nor:curie,'. -\'nor:dday,'. -\'nor:deca,'. -\'nor:decad,'. -\'nor:deci,'. -\'nor:decid,'. -\'nor:degree,'. -\'nor:degreecelsius,'. -\'nor:deka,'. -\'nor:dekad,'. -\'nor:derbecquerel,'. -\'nor:dercelsius,'. -\'nor:dercoulomb,'. -\'nor:derfarad,'. -\'nor:dergray,'. -\'nor:derhenry,'. -\'nor:derhertz,'. -\'nor:derjoule,'. -\'nor:derkatal,'. -\'nor:derlumen,'. -\'nor:derlux,'. -\'nor:dernewton,'. -\'nor:derohm,'. -\'nor:derpascal,'. -\'nor:derradian,'. -\'nor:dersiemens,'. -\'nor:dersievert,'. -\'nor:dersteradian,'. -\'nor:dertesla,'. -\'nor:dervolt,'. -\'nor:derwatt,'. -\'nor:derweber,'. -\'nor:electronvolt,'. -\'nor:exa,'. -\'nor:exad,'. -\'nor:farad,'. -\'nor:faradbase,'. -\'nor:faradpermetre,'. -\'nor:faradpermetrenp,'. -\'nor:femto,'. -\'nor:femtod,'. -\'nor:fourth,'. -\'nor:gal,'. -\'nor:giga,'. -\'nor:gigad,'. -\'nor:gram,'. -\'nor:graybase,'. -\'nor:graypersecond,'. -\'nor:graypersecondnp,'. -\'nor:hectare,'. -\'nor:hecto,'. -\'nor:hectod,'. -\'nor:henry,'. -\'nor:henrybase,'. -\'nor:henrypermetre,'. -\'nor:henrypermetrenp,'. -\'nor:hertz,'. -\'nor:hertzbase,'. -\'nor:hour,'. -\'nor:joule,'. -\'nor:joulebase,'. -\'nor:joulepercubicmetre,'. -\'nor:joulepercubicmetrenp,'. -\'nor:jouleperkelvin,'. -\'nor:jouleperkelvinnp,'. -\'nor:jouleperkilogram,'. -\'nor:jouleperkilogramkelvin,'. -\'nor:jouleperkilogramkelvinnp,'. -\'nor:jouleperkilogramnp,'. -\'nor:joulepermole,'. -\'nor:joulepermolekelvin,'. -\'nor:joulepermolekelvinnp,'. -\'nor:joulepermolenp,'. -\'nor:joulepersquaremetre,'. -\'nor:joulepersquaremetrenp,'. -\'nor:joulepertesla,'. -\'nor:jouleperteslanp,'. -\'nor:katal,'. -\'nor:katalbase,'. -\'nor:katalpercubicmetre,'. -\'nor:katalpercubicmetrenp,'. -\'nor:kelvin,'. -\'nor:kilo,'. -\'nor:kilod,'. -\'nor:kilogram,'. -\'nor:kilogrammetrepersecond,'. -\'nor:kilogrammetrepersecondnp,'. -\'nor:kilogrammetrepersquaresecond,'. -\'nor:kilogrammetrepersquaresecondnp,'. -\'nor:kilogrampercubicmetre,'. -\'nor:kilogrampercubicmetrecoulomb,'. -\'nor:kilogrampercubicmetrecoulombnp,'. -\'nor:kilogrampercubicmetrenp,'. -\'nor:kilogramperkilomole,'. -\'nor:kilogramperkilomolenp,'. -\'nor:kilogrampermetre,'. -\'nor:kilogrampermetrenp,'. -\'nor:kilogrampersecond,'. -\'nor:kilogrampersecondcubicmetre,'. -\'nor:kilogrampersecondcubicmetrenp,'. -\'nor:kilogrampersecondnp,'. -\'nor:kilogrampersquaremetre,'. -\'nor:kilogrampersquaremetrenp,'. -\'nor:kilogrampersquaremetresecond,'. -\'nor:kilogrampersquaremetresecondnp,'. -\'nor:kilogramsquaremetre,'. -\'nor:kilogramsquaremetrenp,'. -\'nor:kilogramsquaremetrepersecond,'. -\'nor:kilogramsquaremetrepersecondnp,'. -\'nor:kilowatthour,'. -\'nor:liter,'. -\'nor:litre,'. -\'nor:lumen,'. -\'nor:lumenbase,'. -\'nor:lux,'. -\'nor:luxbase,'. -\'nor:mega,'. -\'nor:megad,'. -\'nor:meter,'. -\'nor:metre,'. -\'nor:metrepersecond,'. -\'nor:metrepersecondnp,'. -\'nor:metrepersquaresecond,'. -\'nor:metrepersquaresecondnp,'. -\'nor:micro,'. -\'nor:microd,'. -\'nor:milli,'. -\'nor:millid,'. -\'nor:minute,'. -\'nor:mole,'. -\'nor:molepercubicmetre,'. -\'nor:molepercubicmetrenp,'. -\'nor:nano,'. -\'nor:nanod,'. -\'nor:neper,'. -\'nor:newton,'. -\'nor:newtonbase,'. -\'nor:newtonmetre,'. -\'nor:newtonpercubicmetre,'. -\'nor:newtonpercubicmetrenp,'. -\'nor:newtonperkilogram,'. -\'nor:newtonperkilogramnp,'. -\'nor:newtonpermetre,'. -\'nor:newtonpermetrenp,'. -\'nor:newtonpersquaremetre,'. -\'nor:newtonpersquaremetrenp,'. -\'nor:NoAMS,'. -\'nor:no@qsk,'. -\'nor:ohm,'. -\'nor:ohmbase,'. -\'nor:ohmmetre,'. -\'nor:one,'. -\'nor:paminute,'. -\'nor:pascal,'. -\'nor:pascalbase,'. -\'nor:pascalsecond,'. -\'nor:pasecond,'. -\'nor:per,'. -\'nor:period@active,'. -\'nor:persquaremetresecond,'. -\'nor:persquaremetresecondnp,'. -\'nor:peta,'. -\'nor:petad,'. -\'nor:pico,'. -\'nor:picod,'. -\'nor:power,'. -\'nor:@qsk,'. -\'nor:quantityskip,'. -\'nor:rad,'. -\'nor:radian,'. -\'nor:radianbase,'. -\'nor:radianpersecond,'. -\'nor:radianpersecondnp,'. -\'nor:radianpersquaresecond,'. -\'nor:radianpersquaresecondnp,'. -\'nor:reciprocal,'. -\'nor:rem,'. -\'nor:roentgen,'. -\'nor:rp,'. -\'nor:rpcubed,'. -\'nor:rpcubic,'. -\'nor:rpcubicmetreperkilogram,'. -\'nor:rpcubicmetrepersecond,'. -\'nor:rperminute,'. -\'nor:rpersecond,'. -\'nor:rpfourth,'. -\'nor:rpsquare,'. -\'nor:rpsquared,'. -\'nor:rpsquaremetreperkilogram,'. -\'nor:second,'. -\'nor:siemens,'. -\'nor:siemensbase,'. -\'nor:sievert,'. -\'nor:sievertbase,'. -\'nor:square,'. -\'nor:squared,'. -\'nor:squaremetre,'. -\'nor:squaremetrepercubicmetre,'. -\'nor:squaremetrepercubicmetrenp,'. -\'nor:squaremetrepercubicsecond,'. -\'nor:squaremetrepercubicsecondnp,'. -\'nor:squaremetreperkilogram,'. -\'nor:squaremetrepernewtonsecond,'. -\'nor:squaremetrepernewtonsecondnp,'. -\'nor:squaremetrepersecond,'. -\'nor:squaremetrepersecondnp,'. -\'nor:squaremetrepersquaresecond,'. -\'nor:squaremetrepersquaresecondnp,'. -\'nor:steradian,'. -\'nor:steradianbase,'. -\'nor:tera,'. -\'nor:terad,'. -\'nor:tesla,'. -\'nor:teslabase,'. -\'nor:ton,'. -\'nor:tonne,'. -\'nor:unit,'. -\'nor:unitskip,'. -\'nor:usk,'. -\'nor:volt,'. -\'nor:voltbase,'. -\'nor:voltpermetre,'. -\'nor:voltpermetrenp,'. -\'nor:watt,'. -\'nor:wattbase,'. -\'nor:wattpercubicmetre,'. -\'nor:wattpercubicmetrenp,'. -\'nor:wattperkilogram,'. -\'nor:wattperkilogramnp,'. -\'nor:wattpermetrekelvin,'. -\'nor:wattpermetrekelvinnp,'. -\'nor:wattpersquaremetre,'. -\'nor:wattpersquaremetrenp,'. -\'nor:wattpersquaremetresteradian,'. -\'nor:wattpersquaremetresteradiannp,'. -\'nor:weber,'. -\'nor:weberbase,'. -\'nor:yocto,'. -\'nor:yoctod,'. -\'nor:yotta,'. -\'nor:yottad,'. -\'nor:zepto,'. -\'nor:zeptod,'. -\'nor:zetta,'. -\'nor:zettad' - -let g:TeX_package_option_SIunits = -\'amssymb,'. -\'binary,'. -\'cdot,'. -\'derived,'. -\'derivedinbase,'. -\'Gray,'. -\'mediumqspace,'. -\'mediumspace,'. -\'noams,'. -\'pstricks,'. -\'squaren,'. -\'textstyle,'. -\'thickqspace,'. -\'thickspace,'. -\'thinqspace,'. -\'thinspace' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/accents b/dot_vim/ftplugin/latex-suite/packages/accents deleted file mode 100644 index 706d95e..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/accents +++ /dev/null @@ -1,28 +0,0 @@ -if exists("accents_package_file") - finish -endif -let accents_package_file = 1 - -let g:TeX_package_option_accents = -\ 'nonscript,' -\.'single' - -let g:TeX_package_accents = -\ 'bra:grave,' -\.'bra:acute,' -\.'bra:check,' -\.'bra:breve,' -\.'bra:bar,' -\.'bra:ring,' -\.'bra:hat,' -\.'bra:dot,' -\.'bra:tilde,' -\.'bra:undertilde,' -\.'bra:ddot,' -\.'bra:dddot,' -\.'bra:ddddot,' -\.'bra:vec,' -\.'brd:accentset,' -\.'brd:underaccent' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/acromake b/dot_vim/ftplugin/latex-suite/packages/acromake deleted file mode 100644 index 2130f61..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/acromake +++ /dev/null @@ -1,10 +0,0 @@ -if exists("acromake_package_file") - finish -endif -let acromake_package_file = 1 - -let g:TeX_package_option_acromake = '' - -let g:TeX_package_acromake = 'brs:acromake{<++>}{<++>}{<++>}' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/afterpage b/dot_vim/ftplugin/latex-suite/packages/afterpage deleted file mode 100644 index 5087321..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/afterpage +++ /dev/null @@ -1,10 +0,0 @@ -if exists("afterpage_package_file") - finish -endif -let afterpage_package_file = 1 - -let g:TeX_package_option_afterpage = '' - -let g:TeX_package_afterpage = 'bra:afterpage' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/alltt b/dot_vim/ftplugin/latex-suite/packages/alltt deleted file mode 100644 index c30b684..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/alltt +++ /dev/null @@ -1,12 +0,0 @@ -if exists("alltt_package_file") - finish -endif -let alltt_package_file = 1 - -let g:TeX_package_option_alltt = '' - -let g:TeX_package_alltt = 'env:alltt' - -syn region texZone start="\\begin{alltt}" end="\\end{alltt}\|%stopzone\>" fold - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/amsmath b/dot_vim/ftplugin/latex-suite/packages/amsmath deleted file mode 100644 index fd7dcda..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/amsmath +++ /dev/null @@ -1,106 +0,0 @@ -if exists("amsmath_package_file") - finish -endif -let amsmath_package_file = 1 - -let g:TeX_package_option_amsmath = -\ 'centertags,' -\.'tbtags,' -\.'sumlimits,' -\.'nosumlimits,' -\.'intlimits,' -\.'nointlimits,' -\.'namelimits,' -\.'nonamelimits,' -\.'leqno,' -\.'reqno,' -\.'fleqno' - -let g:TeX_package_amsmath = -\ 'sbr:Environments,' -\.'env:equation,' -\.'env:equation*,' -\.'env:align,' -\.'env:align*,' -\.'env:gather,' -\.'env:gather*,' -\.'env:flalign,' -\.'env:flalign*,' -\.'env:multline,' -\.'env:multline*,' -\.'ens:alignat:{<+arg1+>}{<+arg2+>},' -\.'env:alignat,' -\.'ens:alignat*:{<+arg1+>}{<+arg2+>},,' -\.'env:alignat*,' -\.'env:subequations,' -\.'env:subarray,' -\.'env:split,' -\.'env:cases,' -\.'sbr:Matrices,' -\.'env:matrix,' -\.'env:pmatrix,' -\.'env:bmatrix,' -\.'env:Bmatrix,' -\.'env:vmatrix,' -\.'env:Vmatrix,' -\.'env:smallmatrix,' -\.'bra:hdotsfor,' -\.'sbr:Dots,' -\.'dotsc,' -\.'dotsb,' -\.'dotsm,' -\.'dotsi,' -\.'dotso,' -\.'sbr:ItalicGreek,' -\.'nor:varGamma,' -\.'nor:varDelta,' -\.'nor:varTheta,' -\.'nor:varLambda,' -\.'nor:varXi,' -\.'nor:varPi,' -\.'nor:varSigma,' -\.'nor:varUpsilon,' -\.'nor:varPhi,' -\.'nor:varPsi,' -\.'nor:varOmega,' -\.'sbr:Mod,' -\.'nor:mod,' -\.'nor:bmod,' -\.'nor:pmod,' -\.'nor:pod,' -\.'sbr:CreatingSymbols,' -\.'brd:overset,' -\.'brd:underset,' -\.'brd:sideset,' -\.'sbr:Fractions,' -\.'brd:frac,' -\.'brd:dfrac,' -\.'brd:tfrac,' -\.'brd:cfrac,' -\.'brd:binom,' -\.'brd:dbinom,' -\.'brd:tbinom,' -\.'brs:genfrac{<+ldelim+>}{<+rdelim+>}{<+thick+>}{<+style+>}{<+numer+>}{<+denom+>},' -\.'sbr:Commands,' -\.'nob:smash,' -\.'bra:substack,' -\.'bra:tag,' -\.'bra:tag*,' -\.'nor:notag,' -\.'bra:raisetag,' -\.'bra:shoveleft,' -\.'bra:shoveright,' -\.'bra:intertext,' -\.'bra:text,' -\.'nor:displaybreak,' -\.'noo:displaybreak,' -\.'noo:allowdisplaybreaks,' -\.'nor:nobreakdash,' -\.'brs:numberwithin{<+env+>}{<+parent+>},' -\.'bra:leftroot,' -\.'bra:uproot,' -\.'bra:boxed,' -\.'brs:DeclareMathSymbol{<++>}{<++>}{<++>}{<++>},' -\.'bra:eqref' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/amsthm b/dot_vim/ftplugin/latex-suite/packages/amsthm deleted file mode 100644 index 6bae018..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/amsthm +++ /dev/null @@ -1,21 +0,0 @@ -if exists("amsthm_package_file") - finish -endif -let amsthm_package_file = 1 - -let TeX_package_option_amsthm = '' - -let TeX_package_amsthm = -\ 'env:proof,' -\.'nor:swapnumbers,' -\.'brd:newtheorem,' -\.'brd:newtheorem*,' -\.'nor:theoremstyle{plain},' -\.'nor:theoremstyle{definition},' -\.'nor:theoremstyle{remark},' -\.'nor:newtheoremstyle,' -\.'nor:qedsymbol,' -\.'nor:qed,' -\.'nor:qedhere' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/amsxtra b/dot_vim/ftplugin/latex-suite/packages/amsxtra deleted file mode 100644 index 3875cc3..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/amsxtra +++ /dev/null @@ -1,12 +0,0 @@ -if exists("amsxtra_package_file") - finish -endif -let amsxtra_package_file = 1 - -let g:TeX_package_option_amsxtra = '' - -let g:TeX_package_amsxtra = -\ 'nor:sphat,' -\.'nor:sptilde' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/arabic b/dot_vim/ftplugin/latex-suite/packages/arabic deleted file mode 100644 index 46f8314..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/arabic +++ /dev/null @@ -1,10 +0,0 @@ -if exists("arabic_package_file") - finish -endif -let arabic_package_file = 1 - -let g:TeX_package_option_arabic = '' - -let g:TeX_package_arabic = 'bra:arabicnumeral' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/array b/dot_vim/ftplugin/latex-suite/packages/array deleted file mode 100644 index 99f3dbc..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/array +++ /dev/null @@ -1,17 +0,0 @@ -if exists("array_package_file") - finish -endif -let array_package_file = 1 - -let g:TeX_package_option_array = '' - -let g:TeX_package_array = -\ 'brs:newcolumntype{<+type+>}[<+no+>]{<+preamble+>},' -\.'arraycolsep,' -\.'tabcolsep,' -\.'arrayrulewidth,' -\.'doublerulesep,' -\.'arraystretch,' -\.'extrarowheight' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/babel b/dot_vim/ftplugin/latex-suite/packages/babel deleted file mode 100644 index cdb76ec..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/babel +++ /dev/null @@ -1,98 +0,0 @@ -if exists("babel_package_file") - finish -endif -let babel_package_file = 1 - -" This package sets some language specific options. -" Since it needs to find out which options the user used with the babel -" package, it needs to wait till latex-suite is done scanning packages. It -" then catches the LatexSuiteScannedPackages event which -" Tex_pack_updateall() throws at which time g:Tex_pack_detected and -" g:Tex_babel_options contain the necessary information. - -let g:TeX_package_option_babel = -\ 'afrikaans,' -\.'bahasa,' -\.'basque,' -\.'breton,' -\.'bulgarian,' -\.'catalan,' -\.'croatian,' -\.'chech,' -\.'danish,' -\.'dutch,' -\.'english,USenglish,american,UKenglish,british,canadian,' -\.'esperanto,' -\.'estonian,' -\.'finnish,' -\.'french,francais,canadien,acadian,' -\.'galician,' -\.'austrian,german,germanb,ngerman,naustrian,' -\.'greek,polutonikogreek,' -\.'hebrew,' -\.'magyar,hungarian,' -\.'icelandic,' -\.'irish,' -\.'italian,' -\.'latin,' -\.'lowersorbian,' -\.'samin,' -\.'norsk,nynorsk,' -\.'polish,' -\.'portuges,portuguese,brazilian,brazil,' -\.'romanian,' -\.'russian,' -\.'scottish,' -\.'spanish,' -\.'slovak,' -\.'slovene,' -\.'swedish,' -\.'serbian,' -\.'turkish,' -\.'ukrainian,' -\.'uppersorbian,' -\.'welsh' - -let g:TeX_package_babel = -\ 'bra:selectlanguage,' -\.'env:otherlanguage,' -\.'env:otherlanguage*,' -\.'env:hyphenrules,' -\.'brd:foreignlanguage,' -\.'spe:iflanguage{<+name+>}{<+true+>}{<+false+>},' -\.'languagename,' -\.'bra:useshorthands,' -\.'brd:defineshorthand,' -\.'brd:aliasshorthand,' -\.'bra:languageshorthans,' -\.'bra:shorthandon,' -\.'bra:shorthandoff,' -\.'brd:languageattribute' - -" vim:ft=vim:ff=unix: -if exists('s:doneOnce') - finish -endif -let s:doneOnce = 1 - -augroup LatexSuite - au LatexSuite User LatexSuiteScannedPackages - \ call Tex_Debug('babel: catching LatexSuiteScannedPackages event') | - \ call s:SetQuotes() -augroup END - -let s:path = expand('<sfile>:p:h') - -" SetQuotes: sets quotes for various languages {{{ -" Description: -function! <SID>SetQuotes() - if g:Tex_package_detected =~ '\<babel\>' - if g:Tex_babel_options =~ '\<german\>' - exec 'so '.s:path.'/german' - elseif g:Tex_babel_options =~ '\<ngerman\>' - exec 'so '.s:path.'/ngerman' - endif - endif -endfunction " }}} - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/bar b/dot_vim/ftplugin/latex-suite/packages/bar deleted file mode 100644 index 0087b95..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/bar +++ /dev/null @@ -1,27 +0,0 @@ -if exists("bar_package_file") - finish -endif -let bar_package_file = 1 - -let g:TeX_package_option_bar = '' - -let g:TeX_package_bar = -\ 'env:barenv,' -\.'brs:bar{<+height+>}{<+index+>}[<+desc+>],' -\.'hlineon,' -\.'brs:legend{<+index+>}{<+text+>},' -\.'bra:setdepth,' -\.'bra:sethspace,' -\.'brs:setlinestyle{<+solid-dotted+>},' -\.'brs:setnumberpos{<+empty-axis-down-inside-outside-up+>},' -\.'bra:setprecision,' -\.'bra:setstretch,' -\.'bra:setstyle,' -\.'bra:setwidth,' -\.'brs:setxaxis{<+w1+>}{<+w2+>}{<+step+>},' -\.'brs:setyaxis[<+n+>]{<+w1+>}{<+w2+>}{<+step+>},' -\.'brs:setxname[<+lrbt+>]{<+etiquette+>},' -\.'brs:setyname[<+lrbt+>]{<+etiquette+>},' -\.'brs:setxvaluetyp{<+day-month+>}' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/bm b/dot_vim/ftplugin/latex-suite/packages/bm deleted file mode 100644 index 1cd5109..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/bm +++ /dev/null @@ -1,10 +0,0 @@ -if exists("bm_package_file") - finish -endif -let bm_package_file = 1 - -let g:TeX_package_option_bm = '' - -let g:TeX_package_bm = 'bra:bm' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/bophook b/dot_vim/ftplugin/latex-suite/packages/bophook deleted file mode 100644 index 16ca8b0..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/bophook +++ /dev/null @@ -1,12 +0,0 @@ -if exists("bophook_package_file") - finish -endif -let bophook_package_file = 1 - -let g:TeX_package_option_bophook = '' - -let g:TeX_package_bophook = -\ 'bra:AtBeginPage,' -\.'bra:PageLayout' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/boxedminipage b/dot_vim/ftplugin/latex-suite/packages/boxedminipage deleted file mode 100644 index 0917352..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/boxedminipage +++ /dev/null @@ -1,10 +0,0 @@ -if exists("boxedminipage_package_file") - finish -endif -let boxedminipage_package_file = 1 - -let g:TeX_package_option_boxedminipage = '' - -let g:TeX_package_boxedminipage = 'ens:boxedminipage:[<+pos+>]{<+size+>}' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/caption2 b/dot_vim/ftplugin/latex-suite/packages/caption2 deleted file mode 100644 index 7e16031..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/caption2 +++ /dev/null @@ -1,43 +0,0 @@ -if exists("caption2_package_file") - finish -endif -let caption2_package_file = 1 - -let g:TeX_package_option_caption2 = -\ 'scriptsize,' -\.'footnotesize,' -\.'small,' -\.'normalsize,' -\.'large,' -\.'Large,' -\.'up,' -\.'it,' -\.'sl,' -\.'sc,' -\.'md,' -\.'bf,' -\.'rm,' -\.'sf,' -\.'tt,' -\.'ruled,' -\.'boxed,' -\.'centerlast,' -\.'anne,' -\.'center,' -\.'flushleft,' -\.'flushright,' -\.'oneline,' -\.'nooneline,' -\.'hang,' -\.'isu,' -\.'indent,' -\.'longtable' - -let g:TeX_package_caption2 = -\ 'bra:captionsize,' -\.'bra:captionfont,' -\.'bra:captionlabelfont,' -\.'bra:setcaptionmargin,' -\.'bra:setcaptionwidth' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/cases b/dot_vim/ftplugin/latex-suite/packages/cases deleted file mode 100644 index a2deafe..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/cases +++ /dev/null @@ -1,12 +0,0 @@ -if exists("cases_package_file") - finish -endif -let cases_package_file = 1 - -let g:TeX_package_option_cases = '' - -let g:TeX_package_cases = -\ 'ens:numcases:{<+label+>},' -\.'ens:subnumcases:{<+label+>}' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/ccaption b/dot_vim/ftplugin/latex-suite/packages/ccaption deleted file mode 100644 index 2ec3f2f..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/ccaption +++ /dev/null @@ -1,20 +0,0 @@ -if exists("ccaption_package_file") - finish -endif -let ccaption_package_file = 1 - -let g:TeX_package_option_ccaption = '' - -let g:TeX_package_ccaption = -\ 'bra:contcaption,' -\.'bra:legend,' -\.'bra:namedlegend,' -\.'abovelegendskip,' -\.'belowlegendskip,' -\.'brd:newfixedcaption,' -\.'brd:renewfixedcaption,' -\.'brd:providefixedcaption,' -\.'brs:newfloatenv[<+counter+>]{<+name+>}{<+ext+>}{<+etiq+>},' -\.'brd:listfloats' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/changebar b/dot_vim/ftplugin/latex-suite/packages/changebar deleted file mode 100644 index e5002cf..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/changebar +++ /dev/null @@ -1,35 +0,0 @@ -if exists("changebar_package_file") - finish -endif -let changebar_package_file = 1 - -let g:TeX_package_option_changebar = -\ 'DVItoLN03,' -\.'dvitoln03,' -\.'DVItoPS,' -\.'dvitops,' -\.'DVIps,' -\.'dvips,' -\.'emTeX,' -\.'emtex,' -\.'textures,' -\.'Textures,' -\.'outerbars,' -\.'innerbars,' -\.'leftbars,' -\.'rightbars,' -\.'traceon,' -\.'traceoff' - -let g:TeX_package_changebar = -\ 'ens:changebar:[<+thickness+>],' -\.'noo:cbstart,' -\.'cbend,' -\.'cbdelete,' -\.'changebarwidth,' -\.'deletebarwidth,' -\.'changebarsep,' -\.'spe:changebargrey,' -\.'nochangebars' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/chapterbib b/dot_vim/ftplugin/latex-suite/packages/chapterbib deleted file mode 100644 index 331e901..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/chapterbib +++ /dev/null @@ -1,24 +0,0 @@ -if exists("chapterbib_package_file") - finish -endif -let chapterbib_package_file = 1 - -let g:TeX_package_option_chapterbib = -\ 'sectionbib,' -\.'rootbib,' -\.'gather,' -\.'duplicate' - -let g:TeX_package_chapterbib = -\ 'env:cbunit,' -\.'brd:sectionbib,' -\.'bra:cbinput,' -\.'sep:redefine,' -\.'bra:citeform,' -\.'bra:citepunct,' -\.'bra:citeleft,' -\.'bra:citeright,' -\.'bra:citemid,' -\.'bra:citedash' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/cite b/dot_vim/ftplugin/latex-suite/packages/cite deleted file mode 100644 index aa43e5b..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/cite +++ /dev/null @@ -1,32 +0,0 @@ -if exists("cite_package_file") - finish -endif -let cite_package_file = 1 - -let g:TeX_package_option_cite = -\ 'verbose,' -\.'nospace,' -\.'space,' -\.'nosort,' -\.'sort,' -\.'noadjust' - -let g:TeX_package_cite = -\ 'bra:cite,' -\.'bra:citen,' -\.'bra:citenum,' -\.'bra:citeonline,' -\.'bra:nocite,' -\.'sep:redefine,' -\.'bra:citeform,' -\.'bra:citepunct,' -\.'bra:citeleft,' -\.'bra:citeright,' -\.'bra:citemid,' -\.'bra:citedash' - -syn region texRefZone matchgroup=texStatement start="\\citen\([tp]\*\=\)\={" keepend end="}\|%stopzone\>" contains=texComment,texDelimiter -syn region texRefZone matchgroup=texStatement start="\\citenum\([tp]\*\=\)\={" keepend end="}\|%stopzone\>" contains=texComment,texDelimiter -syn region texRefZone matchgroup=texStatement start="\\citeonline\([tp]\*\=\)\={" keepend end="}\|%stopzone\>" contains=texComment,texDelimiter - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/color b/dot_vim/ftplugin/latex-suite/packages/color deleted file mode 100644 index 7f3aeac..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/color +++ /dev/null @@ -1,43 +0,0 @@ -if exists("color_package_file") - finish -endif -let color_package_file = 1 - -let g:TeX_package_option_color = -\ 'monochrome,' -\.'debugshow,' -\.'dvips,' -\.'xdvi,' -\.'dvipdf,' -\.'pdftex,' -\.'dvipsone,' -\.'dviwindo,' -\.'emtex,' -\.'dviwin,' -\.'oztex,' -\.'textures,' -\.'pctexps,' -\.'pctexwin,' -\.'pctexhp,' -\.'pctex32,' -\.'truetex,' -\.'tcidvi,' -\.'dvipsnames,' -\.'nodvipsnames,' -\.'usenames' - -let g:TeX_package_color = -\ 'brs:definecolor{<++>}{<++>}{<++>},' -\.'brs:DefineNamedColor{<++>}{<++>}{<++>}{<++>},' -\.'bra:color,' -\.'nob:color,' -\.'brd:textcolor,' -\.'brs:textcolor[<++>]{<++>}{<++>},' -\.'brd:colorbox,' -\.'brs:colorbox[<++>]{<++>}{<++>},' -\.'brs:fcolorbox{<++>}{<++>}{<++>},' -\.'brs:fcolorbox[<++>]{<++>}{<++>}{<++>},' -\.'brd:pagecolor,' -\.'nob:pagecolor' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/comma b/dot_vim/ftplugin/latex-suite/packages/comma deleted file mode 100644 index 5ec8d70..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/comma +++ /dev/null @@ -1,12 +0,0 @@ -if exists("comma_package_file") - finish -endif -let comma_package_file = 1 - -let g:TeX_package_option_comma = '' - -let g:TeX_package_comma = -\ 'bra:commaform,' -\.'bra:commaformtoken' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/deleq b/dot_vim/ftplugin/latex-suite/packages/deleq deleted file mode 100644 index 58426d2..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/deleq +++ /dev/null @@ -1,36 +0,0 @@ -if exists("deleq_package_file") - finish -endif -let deleq_package_file = 1 - -let g:TeX_package_option_deleq = '' - -let g:TeX_package_deleq = -\.'env:deqn,' -\.'env:ddeqn,' -\.'env:deqarr,' -\.'env:ddeqar,' -\.'env:deqrarr,' -\.'nor:nydeqno,' -\.'nor:heqno,' -\.'bra:reqno,' -\.'bra:rndeqno,' -\.'bra:rdeqno,' -\.'nob:eqreqno,' -\.'nob:deqreqno,' -\.'nob:ddeqreqno,' -\.'bra:arrlabel,' -\.'nor:where,' -\.'bra:remtext,' -\.'nor:nydeleqno,' -\.'nor:deleqno,' -\.'nor:jotbaseline' - -if !exists("tex_no_math") - syn region texMathZoneA start="\\begin\s*{\s*deqn\*\s*}" end="\\end\s*{\s*deqn\*\s*}" keepend fold contains=@texMathZoneGroup - syn region texMathZoneB start="\\begin\s*{\s*ddeqn\*\s*}" end="\\end\s*{\s*ddeqn\*\s*}" keepend fold contains=@texMathZoneGroup - syn region texMathZoneC start="\\begin\s*{\s*deqarr\s*}" end="\\end\s*{\s*deqarr\s*}" keepend fold contains=@texMathZoneGroup - syn region texMathZoneD start="\\begin\s*{\s*ddeqar\s*}" end="\\end\s*{\s*ddeqar\s*}" keepend fold contains=@texMathZoneGroup - syn region texMathZoneE start="\\begin\s*{\s*deqrarr\*\s*}" end="\\end\s*{\s*deqrarr\*\s*}" keepend fold contains=@texMathZoneGroup -endif -" vim:ft=vim:ff=unix:noet:ts=4: diff --git a/dot_vim/ftplugin/latex-suite/packages/drftcite b/dot_vim/ftplugin/latex-suite/packages/drftcite deleted file mode 100644 index 8c30447..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/drftcite +++ /dev/null @@ -1,29 +0,0 @@ -if exists("drftcite_package_file") - finish -endif -let drftcite_package_file = 1 - -let g:TeX_package_option_drftcite = -\ 'verbose,' -\.'nospace,' -\.'space,' -\.'breakcites,' -\.'manualsort,' -\.'tt,' -\.'shownumbers,' -\.'nocitecount' - -let g:TeX_package_drftcite = -\ 'bra:cite,' -\.'bra:citen,' -\.'sep:redefine,' -\.'bra:citeform,' -\.'bra:citepunct,' -\.'bra:citeleft,' -\.'bra:citeright,' -\.'bra:citemid,' -\.'bra:citedash' - -syn region texRefZone matchgroup=texStatement start="\\citen\([tp]\*\=\)\={" keepend end="}\|%stopzone\>" contains=texComment,texDelimiter - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/dropping b/dot_vim/ftplugin/latex-suite/packages/dropping deleted file mode 100644 index bcfc11f..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/dropping +++ /dev/null @@ -1,12 +0,0 @@ -if exists("dropping_package_file") - finish -endif -let dropping_package_file = 1 - -let g:TeX_package_option_dropping = '' - -let g:TeX_package_dropping = -\ 'brs:bigdrop{<+indent+>}{<+big+>}{<+font+>}{<+text+>},' -\.'brs:dropping[<+indent+>]{<+big+>}{<+text+>}' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/enumerate b/dot_vim/ftplugin/latex-suite/packages/enumerate deleted file mode 100644 index 40c3f7c..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/enumerate +++ /dev/null @@ -1,10 +0,0 @@ -if exists("enumerate_package_file") - finish -endif -let enumerate_package_file = 1 - -let g:TeX_package_option_enumerate = '' - -let g:TeX_package_enumerate = 'ens:enumerate:[<+prefix+>]' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/eqlist b/dot_vim/ftplugin/latex-suite/packages/eqlist deleted file mode 100644 index e1e249e..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/eqlist +++ /dev/null @@ -1,19 +0,0 @@ -if exists("eqlist_package_file") - finish -endif -let eqlist_package_file = 1 - -let g:TeX_package_option_eqlist = '' - -let g:TeX_package_eqlist = -\ 'env:eqlist,' -\.'env:eqlist*,' -\.'env:Eqlist,' -\.'env:Eqlist*,' -\.'sep:modificators,' -\.'eqlistinit,' -\.'eqliststarinit,' -\.'eqlistinitpar,' -\.'eqlistlabel' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/eqparbox b/dot_vim/ftplugin/latex-suite/packages/eqparbox deleted file mode 100644 index a05061b..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/eqparbox +++ /dev/null @@ -1,12 +0,0 @@ -if exists("eqparbox_package_file") - finish -endif -let eqparbox_package_file = 1 - -let g:TeX_package_option_eqparbox = '' - -let g:TeX_package_eqparbox = -\ 'brs:eqparbox[<+pos+>][<+height+>][<+inner-pos+>]{<+tag+>}{<+text+>},' -\.'bra:eqboxwidth' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/everyshi b/dot_vim/ftplugin/latex-suite/packages/everyshi deleted file mode 100644 index e42a3d5..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/everyshi +++ /dev/null @@ -1,10 +0,0 @@ -if exists("everyshi_package_file") - finish -endif -let everyshi_package_file = 1 - -let g:TeX_package_option_everyshi = '' - -let g:TeX_package_everyshi = 'bra:EveryShipOut' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/exmpl b/dot_vim/ftplugin/latex-suite/packages/exmpl deleted file mode 100644 index e9e37fc..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/exmpl +++ /dev/null @@ -1,55 +0,0 @@ -if exists("exmpl_package_file") - finish -endif -let exmpl_package_file = 1 - -" Author: Mikolaj Machowski -" Date: 10.04.2002 -" Example plugin for packages in latexSuite -" - -" This variable creates Options submenu in package menu. Even when no options are -" given for this package it HAS to exist in form -" let TeX_package_option_exmpl = "" -" Options and commands are delimited with comma , - -let g:TeX_package_option_exmpl = "OpcjaA=,OpcjaB,OpcjaC" - -" Most command should have some definition before. Package menu system can -" recognize type of command and behave in good manner: -" env: (environment) creates simple environment template -" \begin{command} -" x <- cursor here -" \end{command} -" -" bra: (brackets) useful when inserting brackets commands -" \command{x}<<>> <- cursor at x, and placeholders as in other menu entries -" -" nor: (normal) nor: and pla: are `highlighted' in menu with `'' -" \command<Space> -" -" pla: (plain) -" command<Space> -" -" spe: (special) -" command <-literal insertion of command, in future here should go -" commands with special characters -" -" sep: (separator) creates separator. Good for aesthetics and usability :) -" -" Command can be also given with no prefix:. The result is -" \command (as in nor: but without <Space>) - - -let g:TeX_package_exmpl = "env:AEnvFirst,env:aEnvSec,env:BThi," - \ . "sep:a,env:zzzz," - \ . "bra:aBraFirst,bra:bBraSec,bra:cBraThi," - \ . "sep:b," - \ . "nor:aNorPri,nor:bNorSec,nor:cNorTer," - \ . "sep:c," - \ . "pla:aPla1,pla:bPla2,pla:cPla3," - \ . "sep:d," - \ . "spe:aSpe1,spe:bSpe2,spe:cSpe3," - \ . "sep:e," - \ . "aNo1,bNo2,cNo3" -" vim:ft=vim diff --git a/dot_vim/ftplugin/latex-suite/packages/flafter b/dot_vim/ftplugin/latex-suite/packages/flafter deleted file mode 100644 index 8859397..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/flafter +++ /dev/null @@ -1,10 +0,0 @@ -if exists("flafter_package_file") - finish -endif -let flafter_package_file = 1 - -let g:TeX_package_option_flafter = '' - -let g:TeX_package_flafter = 'noo:suppressfloats,noo:suppress' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/float b/dot_vim/ftplugin/latex-suite/packages/float deleted file mode 100644 index 7c1cf46..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/float +++ /dev/null @@ -1,16 +0,0 @@ -if exists("float_package_file") - finish -endif -let float_package_file = 1 - -let g:TeX_package_option_float = '' - -let g:TeX_package_float = -\ 'bra:floatstyle,' -\.'brs:newfloat{<++>}{<++>}{<++>}[<++>],' -\.'brd:floatname,' -\.'brd:listof,' -\.'bra:restylefloat,' -\.'brd:floatplacement' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/floatflt b/dot_vim/ftplugin/latex-suite/packages/floatflt deleted file mode 100644 index 4902d89..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/floatflt +++ /dev/null @@ -1,12 +0,0 @@ -if exists("floatflt_package_file") - finish -endif -let floatflt_package_file = 1 - -let g:TeX_package_option_floatflt = 'rflt,lflt,vflt' - -let g:TeX_package_floatflt = -\ 'ens:floatingfigure:[<+loc+>]{<+spec+>},' -\.'ens:floatingtable:[<+loc+>]{<+spec+>}' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/fn2end b/dot_vim/ftplugin/latex-suite/packages/fn2end deleted file mode 100644 index aac4184..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/fn2end +++ /dev/null @@ -1,10 +0,0 @@ -if exists("fn2end_package_file") - finish -endif -let fn2end_package_file = 1 - -let g:TeX_package_option_fn2end = '' - -let g:TeX_package_fn2end = 'makeendnotes,theendnotes' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/footmisc b/dot_vim/ftplugin/latex-suite/packages/footmisc deleted file mode 100644 index 04723f6..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/footmisc +++ /dev/null @@ -1,21 +0,0 @@ -if exists("footmisc_package_file") - finish -endif -let footmisc_package_file = 1 - -let g:TeX_package_option_footmisc = -\ 'bottom,' -\.'flushmargin,' -\.'marginal,' -\.'multiple,' -\.'norule,' -\.'para,' -\.'perpage,' -\.'splitrule,' -\.'stable,' -\.'symbol,' -\.'symbol+' - -let g:TeX_package_footmisc = '' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/geometry b/dot_vim/ftplugin/latex-suite/packages/geometry deleted file mode 100644 index 667a289..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/geometry +++ /dev/null @@ -1,93 +0,0 @@ -if exists("geometry_package_file") - finish -endif -let geometry_package_file = 1 - -let g:TeX_package_option_geometry = -\ 'sbr:Boolean,' -\.'verbose,' -\.'landscape,' -\.'portrait,' -\.'twoside,' -\.'includemp,' -\.'reversemp,' -\.'reversemarginpar,' -\.'nohead,' -\.'nofoot,' -\.'noheadfoot,' -\.'dvips,' -\.'pdftex,' -\.'vtex,' -\.'truedimen,' -\.'reset,' -\.'sbr:BooleanDimensions,' -\.'a0paper,' -\.'a1paper,' -\.'a2paper,' -\.'a3paper,' -\.'a4paper,' -\.'a5paper,' -\.'a6paper,' -\.'b0paper,' -\.'b1paper,' -\.'b2paper,' -\.'b3paper,' -\.'b4paper,' -\.'b5paper,' -\.'b6paper,' -\.'letterpaper,' -\.'executivepaper,' -\.'legalpaper,' -\.'sbr:SingleValueOption,' -\.'paper=,' -\.'papername=,' -\.'paperwidth=,' -\.'paperheight=,' -\.'width=,' -\.'totalwidth=,' -\.'height=,' -\.'totalheight=,' -\.'left=,' -\.'lmargin=,' -\.'right=,' -\.'rmargin=,' -\.'top=,' -\.'tmargin=,' -\.'bottom=,' -\.'bmargin=,' -\.'hscale=,' -\.'vscale=,' -\.'textwidth=,' -\.'textheight=,' -\.'marginparwidth=,' -\.'marginpar=,' -\.'marginparsep=,' -\.'headheight=,' -\.'head=,' -\.'headsep=,' -\.'footskip=,' -\.'hoffset=,' -\.'voffset=,' -\.'twosideshift=,' -\.'mag=,' -\.'columnsep=,' -\.'footnotesep=,' -\.'sbr:TwoValueOptions,' -\.'papersize={<++>},' -\.'total={<++>},' -\.'body={<++>},' -\.'text={<++>},' -\.'scale={<++>},' -\.'hmargin={<++>},' -\.'vmargin={<++>},' -\.'margin={<++>},' -\.'offset={<++>},' -\.'sbr:ThreeValueOptions,' -\.'hdivide={<++>},' -\.'vdivide={<++>},' -\.'divide={<++>}' - -let g:TeX_package_geometry = -\ 'bra:geometry' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/german b/dot_vim/ftplugin/latex-suite/packages/german deleted file mode 100644 index 9aa7519..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/german +++ /dev/null @@ -1,12 +0,0 @@ -if exists("german_package_file") - finish -endif -let german_package_file = 1 - -let g:TeX_package_german = '' -let g:TeX_package_option_german = '' -" For now just define the smart quotes. -let b:Tex_SmartQuoteOpen = '"`' -let b:Tex_SmartQuoteClose = "\"'" - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/graphicx b/dot_vim/ftplugin/latex-suite/packages/graphicx deleted file mode 100644 index 4aa7571..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/graphicx +++ /dev/null @@ -1,69 +0,0 @@ -if exists("graphicx_package_file") - finish -endif -let graphicx_package_file = 1 - -let g:TeX_package_option_graphicx = -\ 'sbr:Drivers,' -\.'xdvi,' -\.'dvipdf,' -\.'dvipdfm,' -\.'pdftex,' -\.'dvipsone,' -\.'dviwindo,' -\.'emtex,' -\.'dviwin,' -\.'oztex,' -\.'textures,' -\.'pctexps,' -\.'pctexwin,' -\.'pctexhp,' -\.'pctex32,' -\.'truetex,' -\.'tcidvi,' -\.'vtex,' -\.'sbr:Rest,' -\.'debugshow,' -\.'draft,' -\.'final,' -\.'hiderotate,' -\.'hiresbb,' -\.'hidescale,' -\.'unknownkeysallowed,' -\.'unknownkeyserror' - -let g:TeX_package_graphicx = -\ 'sbr:Includegraphics,' -\.'brs:includegraphics[<++>]{<++>},' -\.'spe:height=,' -\.'spe:width=,' -\.'spe:keepaspectratio=,' -\.'spe:totalheight=,' -\.'spe:angle=,' -\.'spe:scale=,' -\.'spe:origin=,' -\.'spe:clip,' -\.'spe:bb=,' -\.'spe:viewport=,' -\.'spe:trim=,' -\.'spe:draft,' -\.'spe:hiresbb,' -\.'spe:type=,' -\.'spe:ext=,' -\.'spe:read=,' -\.'spe:command=,' -\.'sbr:Rotatebox,' -\.'brs:rotatebox[<++>]{<++>}{<++>},' -\.'spe:origin=,' -\.'spe:x=,' -\.'spe:y=,' -\.'spe:units=,' -\.'sbr:Rest,' -\.'brs:scalebox{<++>}[<++>]{<++>},' -\.'brs:resizebox{<++>}{<++>}{<++>},' -\.'brs:resizebox*{<++>}{<++>}{<++>},' -\.'bra:DeclareGraphicsExtensions,' -\.'brs:DeclareGraphicsRule{<++>}{<++>}{<++>}{<++>},' -\.'bra:graphicspath' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/graphpap b/dot_vim/ftplugin/latex-suite/packages/graphpap deleted file mode 100644 index ebbd268..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/graphpap +++ /dev/null @@ -1,10 +0,0 @@ -if exists("graphpap_package_file") - finish -endif -let graphpap_package_file = 1 - -let g:TeX_package_option_graphpap = '' - -let g:TeX_package_graphpap = 'brs:graphpaper[<+step+>](<+x1,y1+>)(<+x2,y2+>)' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/harpoon b/dot_vim/ftplugin/latex-suite/packages/harpoon deleted file mode 100644 index 994801d..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/harpoon +++ /dev/null @@ -1,18 +0,0 @@ -if exists("harpoon_package_file") - finish -endif -let harpoon_package_file = 1 - -let g:TeX_package_option_harpoon = '' - -let g:TeX_package_harpoon = -\ 'bra:overleftharp,' -\.'bra:overrightharp,' -\.'bra:overleftharpdown,' -\.'bra:overrightharpdown,' -\.'bra:underleftharp,' -\.'bra:underrightharp,' -\.'bra:underleftharpdown,' -\.'bra:underrightharpdown' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/hhline b/dot_vim/ftplugin/latex-suite/packages/hhline deleted file mode 100644 index a024c19..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/hhline +++ /dev/null @@ -1,21 +0,0 @@ -if exists("hhline_package_file") - finish -endif -let hhline_package_file = 1 - -let g:TeX_package_option_hhline = '' - -let g:TeX_package_hhline = -\ 'bra:hhline,' -\.'sep:a,' -\.'spe:=,' -\.'spe:-,' -\.'spe:~,' -\."spe:\\\|," -\.'spe::,' -\.'spe:#,' -\.'spe:t,' -\.'spe:b,' -\.'spe:*' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/histogram b/dot_vim/ftplugin/latex-suite/packages/histogram deleted file mode 100644 index b18fc07..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/histogram +++ /dev/null @@ -1,13 +0,0 @@ -if exists("histogram_package_file") - finish -endif -let histogram_package_file = 1 - -let g:TeX_package_option_histogram = '' - -let g:TeX_package_histogram = -\ 'histogram,' -\.'noverticallines,' -\.'verticallines' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/hyperref b/dot_vim/ftplugin/latex-suite/packages/hyperref deleted file mode 100644 index a82aac3..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/hyperref +++ /dev/null @@ -1,167 +0,0 @@ -if exists("hyperref_package_file") - finish -endif -let hyperref_package_file = 1 - -let g:TeX_package_option_hyperref = -\ '4=,' -\.'a4paper,' -\.'a5paper,' -\.'anchorcolor=,' -\.'b5paper,' -\.'backref=,' -\.'baseurl={<++>},' -\.'bookmarks=,' -\.'bookmarksnumbered=,' -\.'bookmarksopen=,' -\.'bookmarksopenlevel=,' -\.'bookmarkstype=,' -\.'breaklinks=,' -\.'citebordercolor=,' -\.'citecolor=,' -\.'colorlinks=,' -\.'debug=,' -\.'draft,' -\.'dvipdf,' -\.'dvipdfm,' -\.'dvips,' -\.'dvipsone,' -\.'dviwindo,' -\.'executivepaper,' -\.'extension=,' -\.'filebordercolor=,' -\.'filecolor=,' -\.'frenchlinks=,' -\.'hyperfigures=,' -\.'hyperindex=,' -\.'hypertex,' -\.'hypertexnames=,' -\.'implicit=,' -\.'latex2html,' -\.'legalpaper,' -\.'letterpaper,' -\.'linkbordercolor=,' -\.'linkcolor=,' -\.'linktocpage=,' -\.'menubordercolor=,' -\.'menucolor=,' -\.'naturalnames,' -\.'nesting=,' -\.'pageanchor=,' -\.'pagebackref=,' -\.'pagebordercolor=,' -\.'pagecolor=,' -\.'pdfauthor={<++>},' -\.'pdfborder=,' -\.'pdfcenterwindow=,' -\.'pdfcreator={<++>},' -\.'pdffitwindow,' -\.'pdfhighlight=,' -\.'pdfkeywords={<++>},' -\.'pdfmenubar=,' -\.'pdfnewwindow=,' -\.'pdfpagelabels=,' -\.'pdfpagelayout=,' -\.'pdfpagemode=,' -\.'pdfpagescrop=,' -\.'pdfpagetransition=,' -\.'pdfproducer={<++>},' -\.'pdfstartpage={<++>},' -\.'pdfstartview={<++>},' -\.'pdfsubject={<++>},' -\.'pdftex,' -\.'pdftitle={<++>},' -\.'pdftoolbar=,' -\.'pdfusetitle=,' -\.'pdfview,' -\.'pdfwindowui=,' -\.'plainpages=,' -\.'ps2pdf,' -\.'raiselinks=,' -\.'runbordercolor,' -\.'tex4ht,' -\.'textures,' -\.'unicode=,' -\.'urlbordercolor=,' -\.'urlcolor=,' -\.'verbose=,' -\.'vtex' - -let g:TeX_package_hyperref = -\ 'sbr:Preamble,' -\.'bra:hypersetup,' -\.'wwwbrowser,' -\.'sbr:Links,' -\.'bra:hyperbaseurl,' -\.'brs:href{<+URL+>}{<+text+>},' -\.'bra:hyperimage,' -\.'brs:hyperdef{<+category+>}{<+name+>}{<+text+>},' -\.'brs:hyperref{<+URL+>}{<+category+>}{<+name+>}{<+text+>},' -\.'brs:hyperlink{<+name+>}{<+text+>},' -\.'brs:hypertarget{<+name+>}{<+text+>},' -\.'bra:url,' -\.'bra:htmladdnormallink,' -\.'brs:Acrobatmenu{<+option+>}{<+tekst+>},' -\.'brs:pdfbookmark[<++>]{<++>}{<++>},' -\.'bra:thispdfpagelabel,' -\.'sbr:Forms,' -\.'env:Form,' -\.'sep:Forms1,' -\.'brs:TextField[<+parameters+>]{<+label+>},' -\.'brs:CheckBox[<+parameters+>]{<+label+>},' -\.'brs:ChoiceMenu[<+parameters+>]{<+label+>}{<+choices+>},' -\.'brs:PushButton[<+parameters+>]{<+label+>},' -\.'brs:Submit[<+parameters+>]{<+label+>},' -\.'brs:Reset[<+parameters+>]{<+label+>},' -\.'sep:Forms2,' -\.'brs:LayoutTextField{<+label+>}{<+field+>},' -\.'brs:LayoutChoiceField{<+label+>}{<+field+>},' -\.'brs:LayoutCheckboxField{<+label+>}{<+field+>},' -\.'sep:Forms3,' -\.'brs:MakeRadioField{<+width+>}{<+height+>},' -\.'brs:MakeCheckField{<+width+>}{<+height+>},' -\.'brs:MakeTextField{<+width+>}{<+height+>},' -\.'brs:MakeChoiceField{<+width+>}{<+height+>},' -\.'brs:MakeButtonField{<+text+>},' -\.'sbr:Parameters,' -\.'spe:accesskey,' -\.'spe:align,' -\.'spe:backgroundcolor,' -\.'spe:bordercolor,' -\.'spe:bordersep,' -\.'spe:borderwidth,' -\.'spe:charsize,' -\.'spe:checked,' -\.'spe:color,' -\.'spe:combo,' -\.'spe:default,' -\.'spe:disabled,' -\.'spe:height,' -\.'spe:hidden,' -\.'spe:maxlen,' -\.'spe:menulength,' -\.'spe:multiline,' -\.'spe:name,' -\.'spe:onblur,' -\.'spe:onchange,' -\.'spe:onclick,' -\.'spe:ondblclick,' -\.'spe:onfocus,' -\.'spe:onkeydown,' -\.'spe:onkeypress,' -\.'spe:onkeyup,' -\.'spe:onmousedown,' -\.'spe:onmousemove,' -\.'spe:onmouseout,' -\.'spe:onmouseover,' -\.'spe:onmouseup,' -\.'spe:onselect,' -\.'spe:password,' -\.'spe:popdown,' -\.'spe:radio,' -\.'spe:readonly,' -\.'spe:tabkey,' -\.'spe:value,' -\.'spe:width' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/ifthen b/dot_vim/ftplugin/latex-suite/packages/ifthen deleted file mode 100644 index 82dbe69..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/ifthen +++ /dev/null @@ -1,21 +0,0 @@ -if exists("ifthen_package_file") - finish -endif -let ifthen_package_file = 1 - -let g:TeX_package_option_ifthen = '' - -let g:TeX_package_ifthen = -\ 'brs:ifthenelse{<++>}{<++>}{<++>},' -\.'brd:equal,' -\.'bra:boolean,' -\.'bra:lengthtest,' -\.'bra:isodd,' -\.'brd:whiledo,' -\.'bra:newboolean,' -\.'brd:setboolean,' -\.'nor:and,' -\.'nor:or,' -\.'nor:not' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/inputenc b/dot_vim/ftplugin/latex-suite/packages/inputenc deleted file mode 100644 index 73abe9a..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/inputenc +++ /dev/null @@ -1,29 +0,0 @@ -if exists("inputenc_package_file") - finish -endif -let inputenc_package_file = 1 - -let g:TeX_package_option_inputenc = -\ 'ascii,' -\.'latin1,' -\.'latin2,' -\.'latin3,' -\.'latin4,' -\.'latin5,' -\.'latin9,' -\.'decmulti,' -\.'cp850,' -\.'cp852,' -\.'cp437,' -\.'cp437de,' -\.'cp865,' -\.'applemac,' -\.'next,' -\.'ansinew,' -\.'cp1250,' -\.'cp1252' - -let g:TeX_package_inputenc = -\ 'bra:inputencoding' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/letterspace b/dot_vim/ftplugin/latex-suite/packages/letterspace deleted file mode 100644 index 9a53eaa..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/letterspace +++ /dev/null @@ -1,10 +0,0 @@ -if exists("letterspace_package_file") - finish -endif -let letterspace_package_file = 1 - -let g:TeX_package_option_letterspace = '' - -let g:TeX_package_letterspace = 'nor:letterspace' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/lineno b/dot_vim/ftplugin/latex-suite/packages/lineno deleted file mode 100644 index 4567602..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/lineno +++ /dev/null @@ -1,60 +0,0 @@ -if exists("lineno_package_file") - finish -endif -let lineno_package_file = 1 - -let g:TeX_package_option_lineno = -\ 'left,' -\.'right,' -\.'switch,' -\.'switch*,' -\.'pagewise,' -\.'running,' -\.'modulo,' -\.'mathlines,' -\.'displaymath,' -\.'hyperref' - -let g:TeX_package_lineno = -\ 'sbr:Environments,' -\.'env:linenumbers,' -\.'env:linenumbers*,' -\.'env:numquote,' -\.'env:numquote*,' -\.'env:numquotation,' -\.'env:numquotation*,' -\.'env:bframe,' -\.'env:linenomath,' -\.'env:linenomath*,' -\.'bra:linelabel,' -\.'sbr:Commands,' -\.'nor:linenumbers,' -\.'nor:linenumbers*,' -\.'noo:linenumbers,' -\.'nor:nolinenumbers,' -\.'nor:runninglinenumbers,' -\.'nor:runninglinenumbers*,' -\.'noo:runninglinenumbers,' -\.'nor:pagewiselinenumbers,' -\.'nor:resetlinenumber,' -\.'noo:resetlinenumber,' -\.'nor:setrunninglinenumbers,' -\.'nor:setpagewiselinenumbers,' -\.'nor:switchlinenumbers,' -\.'nor:switchlinenumbers*,' -\.'nor:leftlinenumbers,' -\.'nor:leftlinenumbers*,' -\.'nor:rightlinenumbers,' -\.'nor:rightlinenumbers*,' -\.'nor:runningpagewiselinenumbers,' -\.'nor:realpagewiselinenumbers,' -\.'nor:modulolinenumbers,' -\.'noo:modulolinenumbers,' -\.'nor:linenumberdisplaymath,' -\.'nor:nolinenumberdisplaymath,' -\.'nor:thelinenumber,' -\.'nob:linerefp,' -\.'nob:linerefr,' -\.'nob:lineref' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/longtable b/dot_vim/ftplugin/latex-suite/packages/longtable deleted file mode 100644 index 6644862..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/longtable +++ /dev/null @@ -1,35 +0,0 @@ -if exists("longtable_package_file") - finish -endif -let longtable_package_file = 1 - -let g:TeX_package_option_longtable = -\ 'errorshow,' -\.'pausing,' -\.'set,' -\.'final' - -let g:TeX_package_longtable = -\ 'sbr:Commands,' -\.'nor:setlongtables,' -\.'bra:LTleft,' -\.'bra:LTright,' -\.'bra:LTpre,' -\.'bra:LTpost,' -\.'bra:LTchunksize,' -\.'bra:LTcapwidth,' -\.'bra:LTcapwidth,' -\.'sbr:Longtable,' -\.'env:longtable,' -\.'sep:lt,' -\.'nor:endhead,' -\.'nor:endfirsthead,' -\.'nor:endfoot,' -\.'nor:endlastfoot,' -\.'nor:kill,' -\.'bra:caption,' -\.'nob:caption,' -\.'bra:caption*,' -\.'nor:newpage' - -" vim:ft=vim:ts=4:sw=4:noet:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/lscape b/dot_vim/ftplugin/latex-suite/packages/lscape deleted file mode 100644 index 33976ea..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/lscape +++ /dev/null @@ -1,10 +0,0 @@ -if exists("lscape_package_file") - finish -endif -let lscape_package_file = 1 - -let g:TeX_package_option_lscape = '' - -let g:TeX_package_lscape = 'env:landscape' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/manyfoot b/dot_vim/ftplugin/latex-suite/packages/manyfoot deleted file mode 100644 index 7cab55f..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/manyfoot +++ /dev/null @@ -1,15 +0,0 @@ -if exists("manyfoot_package_file") - finish -endif -let manyfoot_package_file = 1 - -let g:TeX_package_option_manyfoot = 'para' - -let g:TeX_package_manyfoot = -\ 'bra:newfootnote,bra:newfootnote[para],' -\.'bra:footnoteA,bra:footnoteB,' -\.'bra:FootnoteA,bra:FootnoteB,' -\.'bra:Footnotemark,bra:Footnotetext,' -\.'SplitNote' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/moreverb b/dot_vim/ftplugin/latex-suite/packages/moreverb deleted file mode 100644 index 8614e3b..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/moreverb +++ /dev/null @@ -1,28 +0,0 @@ -if exists("moreverb_package_file") - finish -endif -let moreverb_package_file = 1 - -let g:TeX_package_option_moreverb = '' - -let g:TeX_package_moreverb = -\ 'ens:verbatimwrite:{<++>},' -\.'ens:verbatimtab:[<++>],' -\.'ens:listing:[<+step+>]{<+number+>},' -\.'ens:listing*:[<+step+>]{<+number+>},' -\.'env:boxedverbatim,' -\.'bra:verbatimtabsize,' -\.'bra:listingoffset,' -\.'brs:listinginput[<++>]{<++>}{<++>},' -\.'brs:verbatimtabinput[<++>]{<++>}' - -let g:Tex_completion_explorer = g:Tex_completion_explorer.'verbatimtabinput,' - -syn region texZone start="\\begin{verbatimwrite}" end="\\end{verbatimwrite}\|%stopzone\>" fold -syn region texZone start="\\begin{verbatimtab}" end="\\end{verbatimtab}\|%stopzone\>" fold -syn region texZone start="\\begin{boxedverbatim}" end="\\end{boxedverbatim}\|%stopzone\>" fold -syn region texZone start="\\begin{listing}" end="\\end{listing}\|%stopzone\>" fold -syn region texZone start="\\begin{listing*}" end="\\end{listing*}\|%stopzone\>" fold - - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/multibox b/dot_vim/ftplugin/latex-suite/packages/multibox deleted file mode 100644 index 00bccb2..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/multibox +++ /dev/null @@ -1,10 +0,0 @@ -if exists("multibox_package_file") - finish -endif -let multibox_package_file = 1 - -let g:TeX_package_option_multibox = '' - -let g:TeX_package_multibox = 'multimake,multiframe' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/multicol b/dot_vim/ftplugin/latex-suite/packages/multicol deleted file mode 100644 index ca93189..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/multicol +++ /dev/null @@ -1,21 +0,0 @@ -if exists("multicol_package_file") - finish -endif -let multicol_package_file = 1 - -let g:TeX_package_option_multicol = '' - -let g:TeX_package_multicol = -\ 'ens:multicols:{<+cols+>}[<+text+>][<+sep+>],' -\.'columnbreak,' -\.'premulticols,' -\.'postmulticols,' -\.'multicolsep,' -\.'columnsep,' -\.'linewidth,' -\.'columnseprule,' -\.'flushcolumnt,' -\.'raggedcolumns,' -\.'unbalanced' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/newalg b/dot_vim/ftplugin/latex-suite/packages/newalg deleted file mode 100644 index 1480bb6..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/newalg +++ /dev/null @@ -1,26 +0,0 @@ -if exists("newalg_package_file") - finish -endif -let newalg_package_file = 1 - -let g:TeX_package_option_newalg = '' - -let g:TeX_package_newalg = -\ 'ens:algorithm:{<+name+>}{<++>},' -\.'ens:IF:{<+cond+>},' -\.'ens:FOR:{<+loop+>},' -\.'ens:WHILE:{<+cond+>},' -\.'bra:ERROR,' -\.'nor:ELSE,' -\.'nor:RETURN,' -\.'nor:NIL,' -\.'nor:TO,' -\.'bra:CALL,' -\.'bra:text,' -\.'env:REPEAT,' -\.'env:SWITCH,' -\.'nor:=,' -\.'bra:item,' -\.'nor:algkey' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/ngerman b/dot_vim/ftplugin/latex-suite/packages/ngerman deleted file mode 100644 index 534ac30..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/ngerman +++ /dev/null @@ -1,10 +0,0 @@ -if exists("ngerman_package_file") - finish -endif -let ngerman_package_file = 1 - -" For now just define the smart quotes. -let b:Tex_SmartQuoteOpen = '"`' -let b:Tex_SmartQuoteClose = "\"'" - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/numprint b/dot_vim/ftplugin/latex-suite/packages/numprint deleted file mode 100644 index 4eab5a2..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/numprint +++ /dev/null @@ -1,18 +0,0 @@ -if exists("numprint_package_file") - finish -endif -let numprint_package_file = 1 - -let g:TeX_package_option_numprint = '' - -let g:TeX_package_numprint = -\ 'bra:numprint,' -\.'nob:numprint,' -\.'bra:thousandsep,' -\.'bra:decimalsign,' -\.'bra:productsign,' -\.'bra:unitseparator,' -\.'brd:expnumprint,' -\.'global' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/oldstyle b/dot_vim/ftplugin/latex-suite/packages/oldstyle deleted file mode 100644 index 72b2774..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/oldstyle +++ /dev/null @@ -1,12 +0,0 @@ -if exists("oldstyle_package_file") - finish -endif -let oldstyle_package_file = 1 - -let g:TeX_package_option_oldstyle = '' - -let g:TeX_package_oldstyle = -\ 'bra:textos,' -\.'bra:mathos' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/outliner b/dot_vim/ftplugin/latex-suite/packages/outliner deleted file mode 100644 index ca64322..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/outliner +++ /dev/null @@ -1,19 +0,0 @@ -if exists("outliner_package_file") - finish -endif -let outliner_package_file = 1 - -let g:TeX_package_option_outliner = '' - -let g:TeX_package_outliner = -\ 'env:Outline,' -\.'bra:Level,' -\.'bra:SetBaseLevel,' -\.'sep:preamble,' -\.'bra:OutlinePageBreaks,' -\.'bra:OutlinePageBreaks,' -\.'bra:OutlineLevelStart,' -\.'bra:OutlineLevelCont,' -\.'bra:OutlineLevelEnd' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/overcite b/dot_vim/ftplugin/latex-suite/packages/overcite deleted file mode 100644 index 25bc17d..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/overcite +++ /dev/null @@ -1,34 +0,0 @@ -if exists("overcite_package_file") - finish -endif -let overcite_package_file = 1 - -let g:TeX_package_option_overcite = -\ 'verbose,' -\.'ref,' -\.'nospace,' -\.'space,' -\.'nosort,' -\.'sort,' -\.'nomove,' -\.'noadjust' - -let g:TeX_package_overcite = -\ 'bra:cite,' -\.'bra:citen,' -\.'bra:citenum,' -\.'bra:citeonline,' -\.'bra:nocite,' -\.'sep:redefine,' -\.'bra:citeform,' -\.'bra:citepunct,' -\.'bra:citeleft,' -\.'bra:citeright,' -\.'bra:citemid,' -\.'bra:citedash' - -syn region texRefZone matchgroup=texStatement start="\\citen\([tp]\*\=\)\={" keepend end="}\|%stopzone\>" contains=texComment,texDelimiter -syn region texRefZone matchgroup=texStatement start="\\citenum\([tp]\*\=\)\={" keepend end="}\|%stopzone\>" contains=texComment,texDelimiter -syn region texRefZone matchgroup=texStatement start="\\citeonline\([tp]\*\=\)\={" keepend end="}\|%stopzone\>" contains=texComment,texDelimiter - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/parallel b/dot_vim/ftplugin/latex-suite/packages/parallel deleted file mode 100644 index 19dfe8e..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/parallel +++ /dev/null @@ -1,15 +0,0 @@ -if exists("parallel_package_file") - finish -endif -let parallel_package_file = 1 - -let g:TeX_package_option_parallel = '' - -let g:TeX_package_parallel = -\ 'env:Parallel,' -\.'bra:ParallelLText,' -\.'bra:ParallelRText,' -\.'nor:ParallelPar,' -\.'nor:tolerance' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/plain b/dot_vim/ftplugin/latex-suite/packages/plain deleted file mode 100644 index 6a3d092..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/plain +++ /dev/null @@ -1,10 +0,0 @@ -if exists("plain_package_file") - finish -endif -let plain_package_file = 1 - -let g:TeX_package_option_plain = '' - -let g:TeX_package_plain = 'env:plain' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/plates b/dot_vim/ftplugin/latex-suite/packages/plates deleted file mode 100644 index e22817e..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/plates +++ /dev/null @@ -1,16 +0,0 @@ -if exists("plates_package_file") - finish -endif -let plates_package_file = 1 - -let g:TeX_package_option_plates = 'figures,onefloatperpage,memoir' - -let g:TeX_package_plates = -\ 'env:plate,' -\.'listofplates,' -\.'ProcessPlates,' -\.'bra:setplatename,' -\.'bra:setplatename,' -\.'bra:atBeginPlates' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/polski b/dot_vim/ftplugin/latex-suite/packages/polski deleted file mode 100644 index e2c4efe..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/polski +++ /dev/null @@ -1,165 +0,0 @@ -" Author: Mikolaj Machowski <mikmach@wp.pl> -" (c) Copyright by Mikolaj Machowski 2002-2003 -" License: Vim Charityware -" Version: 1.6 -" -" Plik jest w kodowaniu iso-8859-2. Je¶li chcesz go uzywac w MS-Windows musisz -" go przekonwertowac na cp-1250. -" -" Plik ten jest czê¶ci± vim-latexSuite, ale: -" Nie u¿ywaj±cy vim-latexSuite (http://vim-latex.sourceforge.net) mog± wyci±æ -" oznaczon± czê¶æ. Reszta mo¿e byæ kopiowana jako osobny plik pod warunkiem -" niezmieniania tej notki i informacji o prawach autorskich. -" -" This file is in iso-8859-2 encoding. If you want to use it in MS-Windows you -" have to convert it to cp-1250. -" -" This file is part of vim-latexSuite but: -" Those who do not use vim-latexSuite (http://vim-latex.sourceforge.net) can -" cut off marked part. Rest of the file can be copied as separate file under -" condition of leaving this notice and information about copyrights unchanged. - -if exists("acromake_package_file") - finish -endif -let acromake_package_file = 1 - -" --------8<------------- -" Czesc odpowiedzialna za menu -let g:TeX_package_option_polski = -\'OT1,OT4,T1,QX,plmath,nomathsymbols,MeX,prefixingverb,noprefixingverb' -let g:TeX_package_polski = -\'sbr:Dywiz&Ska,'. -\'nor:dywiz,'. -\'nor:ppauza,'. -\'nor:pauza,'. -\'nor:prefixing,'. -\'nor:nonprefixing,'. -\'nor:PLdateending,'. -\'sbr:Matematyka,'. -\'nor:arccos,'. -\'nor:arcctan,'. -\'nor:arcsin,'. -\'nor:arctan,'. -\'nor:cot,'. -\'nor:ctanh,'. -\'nor:tan,'. -\'nor:tanh,'. -\'bra:arc,'. -\'nor:ctg,'. -\'nor:ctgh,'. -\'nor:tg,'. -\'nor:tgh,'. -\'nor:nwd' - -" To wymaga calego pakietu vim-latexSuite - zakomentuj lub wytnij je¶li nie -" u¿ywasz (albo go ¶ci±gnij z http://vim-latex.sf.net) -function! TPackagePolskiTylda() - call IMAP (" ---", "~---", "tex") -endfunction -call TPackagePolskiTylda() -" --------8<------------- - -" Polskie znaki cudzyslowow -TexLet g:Tex_SmartQuoteOpen = ",," -TexLet g:Tex_SmartQuoteClose = "''" - -" Zmodyfikowana i rozwinieta funkcja Andrzeja Ostruszki -" Z dodatkiem od Benjiego Fishera (sprawdzanie sk³adni) -" -" Spacja -inoremap <buffer> <silent> <Space> <C-R>=<SID>Tex_polish_space()<CR> -inoremap <buffer> <silent> <CR> <C-R>=<SID>Tex_polish_space()<CR><BS><CR> - -" Wymuszenie tyldy -inoremap <buffer> <silent> <S-Space> ~ - -" Wymuszenie zwyklej spacji -inoremap <buffer> <silent> <C-Space> <Space> - -" Latwe przelaczanie sie miedzy magiczna spacja a zwykla -inoremap <buffer> <silent> <F8> <C-R>=<SID>TogglePolishSpace()<CR> - -function! s:TogglePolishSpace() - if !exists("b:polishspace") - iunmap <buffer> <Space> - iunmap <buffer> <CR> - let b:polishspace = 1 - return '' - else - inoremap <buffer> <silent> <Space> <C-R>=<SID>Tex_polish_space()<CR> - inoremap <buffer> <silent> <CR> <C-R>=<SID>Tex_polish_space()<CR><BS><CR> - unlet b:polishspace - return '' - endif -endfunction - - -function! s:Tex_polish_space() - "Nic magicznego w matematyce - if synIDattr(synID(line('.'),col('.')-1,0),"name") =~ '^texMath\|^texZone\^texRefZone' - return ' ' - else - let s:col = col('.') - let s:linelength = strlen(getline('.')) + 1 - " Wstaw tylde po spojnikach - if strpart(getline('.'), col('.') - 3, 2) =~? '^[[:space:]~(\[{]\?[aiouwz]$' - return '~' - " Wstaw tylde po inicjalach - konkretnie po pojedynczych wielkich - " literach i kropce. Obs³uguje poprawnie wiekszosc sytuacji. - elseif strpart(getline('.'), col('.') - 4, 3) =~? '^[[:space:]~(\[{]\?\u\.$' - return '~' - " Wstaw tylde po tytulach, skrotach bibliograficznych, podpisach - elseif strpart(getline('.'), col('.') - 9, 8) =~? '\(\s\|^\|\~\)\(str\.\|ryc\.\|rys\.\|tab\.\|art\.\|vol\.\|nr\|tabl\.\|rozdz\.\|ss\.\|s\.\|t\.\|z\.\|sir\|prof\.\|hab\.\|red\.\|min\.\|gen\.\|kpt\.\|przew\.\|p³k\|mjr\|mgr\|bp\|ks\.\|o\+\.\|¶w\.\|dr\)$' - return '~' - " Wstaw tylde miedzy rokiem, wiekiem, a odpowiednim skrotem - elseif strpart(getline('.'), col('.') - 8, 7) =~? '[0-9IVXLCM]\s\+\(r\|w\)\.[^a-z±æê³ñ󶿼]\{-}$' - s/[0-9IVXLCM]\zs\s\+\ze\(w\|r\)\.[^a-z±æê³ñ󶿼]\{-}\%#/\~/ei - exe 'normal '.s:col.'|' - if s:col == s:linelength - startinsert! - else - startinsert - endif - return ' ' - " Wstaw tylde miedzy liczba a miara, itd. - elseif strpart(getline('.'), col('.') - 10, 9) =~? '\(\d\|mln\|mld\|tys\.\)\s\+\(z³\|gr\|ha\|t\|mies\|godz\|min\|sek\|cm\|km\|mln\|mld\|tys\.\)[^a-z±æê³ñ󶿼]\{-}$' - s/\(\d\|mln\|mld\|tys\.\)\zs\s\+\ze\(z³\|gr\|ha\|m\|t\|mies\|godz\|min\|sek\|cm\|km\|mln\|mld\|tys\.\)[^a-z±æê³ñ󶿼]\{-}\%#/\~/ei - exe 'normal '.s:col.'|' - if s:col == s:linelength - startinsert! - else - startinsert - endif - return ' ' - " Rozwin myslnik w zbitkach w '\dywiz ': - " bialo-czerwony -> bialo\dywiz czerwony - elseif strpart(getline('.'), col('.') - 20, 19) =~? '[a-z±æê³ñ󶿼]-[a-z±æê³ñ󶿼]\{-}[^a-z±æê³ñ󶿼]\{-}$' - s/[a-z±æê³ñ󶿼]\zs-\ze[a-z±æê³ñ󶿼]\{-}[^a-z±æê³ñ󶿼]\{-}\%#/\\dywiz /ei - let colb = s:col + 6 - exe 'normal '.colb.'|' - if s:col == s:linelength - startinsert! - else - startinsert - endif - return ' ' - " Rozwin '--' miedzy liczbami w '\ppauza ': - " 39--45 -> 39\ppauza 45 - elseif strpart(getline('.'), col('.') - 10, 9) =~? '[0-9IVXLCM]--[0-9IVXLCM]\{-}[^0-9IVXLCM]\{-}$' - s/[0-9IVXLCM]\zs--\ze[0-9IVXLCM]\{-}[^0-9IVXLCM]\{-}\%#/\\ppauza /ei - let colb = s:col + 6 - exe 'normal '.colb.'|' - if s:col == s:linelength - startinsert! - else - startinsert - endif - return ' ' - endif - " Tu koncz komentowanie ostatniej sekcji - endif - return " " -endfunction - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/psgo b/dot_vim/ftplugin/latex-suite/packages/psgo deleted file mode 100644 index 1ef852c..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/psgo +++ /dev/null @@ -1,27 +0,0 @@ -if exists("psgo_package_file") - finish -endif -let psgo_package_file = 1 - -let g:TeX_package_option_psgo = '' - -let g:TeX_package_psgo = -\ 'env:psgogoard,' -\.'env:psgoboard*,' -\.'brs:stone{<+color+>}{<+letter+>}{<+number+>},' -\.'brs:stone[<+marker+>]{<+color+>}{<+letter+>}{<+number+>},' -\.'brs:move{<+letter+>}{<+number+>},' -\.'brs:move*{<+letter+>}{<+number+>},' -\.'brs:goline{<+letter1+>}{<+number1+>}{<+letter2+>}{<+number2+>},' -\.'brs:goarrow{<+letter1+>}{<+number1+>}{<+letter2+>}{<+number2+>},' -\.'sbr:Markers,' -\.'brs:markpos{<+marker+>}{<+letter+>}{<+number+>},' -\.'markma,' -\.'marktr,' -\.'markcr,' -\.'marksq,' -\.'bra:marklb,' -\.'marksl,' -\.'markdd' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/schedule b/dot_vim/ftplugin/latex-suite/packages/schedule deleted file mode 100644 index 7d58f6d..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/schedule +++ /dev/null @@ -1,20 +0,0 @@ -if exists("schedule_package_file") - finish -endif -let schedule_package_file = 1 - -let g:TeX_package_option_schedule = '' - -let g:TeX_package_schedule = -\ 'ens:schedule:[<+title+>],' -\.'bra:CellHeight,' -\.'bra:CellWidth,' -\.'bra:TimeRange,' -\.'bra:SubUnits,' -\.'bra:BeginOn,' -\.'bra:TextSize,' -\.'nor:FiveDay,' -\.'nor:SevenDay,' -\.'brs:NewAppointment{<+name+>}{<+bg+>}{<+fg+>}' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/textfit b/dot_vim/ftplugin/latex-suite/packages/textfit deleted file mode 100644 index 4d52785..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/textfit +++ /dev/null @@ -1,12 +0,0 @@ -if exists("textfit_package_file") - finish -endif -let textfit_package_file = 1 - -let g:TeX_package_option_textfit = '' - -let g:TeX_package_textfit = -\ 'brd:scaletowidth,' -\.'brd:scaletoheight' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/times b/dot_vim/ftplugin/latex-suite/packages/times deleted file mode 100644 index 499a13b..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/times +++ /dev/null @@ -1,10 +0,0 @@ -if exists("times_package_file") - finish -endif -let times_package_file = 1 - -let g:TeX_package_option_times = '' - -let g:TeX_package_times = '' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/tipa b/dot_vim/ftplugin/latex-suite/packages/tipa deleted file mode 100644 index c89cc5d..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/tipa +++ /dev/null @@ -1,364 +0,0 @@ -if exists("tipa_package_file") - finish -endif -let tipa_package_file = 1 - -let g:TeX_package_option_tipa = -\ 'T1,' -\.'noenc,' -\.'tone,' -\.'extra,' -\.'safe' - -let g:TeX_package_tipa = -\ 'sbr:Common,' -\.'bra:textipa,' -\.'env:IPA,' -\.'tipaencoding,' -\.'bra:super,' -\.'nor:ipabar,' -\.'brd:tipalowaraccent,' -\.'brd:tipaupperaccent,' -\.'brd:tipaLowaraccent,' -\.'brd:tipaUpperaccent,' -\.'brd:ipaclap,' -\.'sbr:VowelsandConsonants,' -\.'nor:textturna,' -\.'nor:textrhooka,' -\.'nor:textlhookfour,' -\.'nor:textscripta,' -\.'nor:textturnscripta,' -\.'nor:textinvscripta,' -\.'ae,' -\.'nor:textaolig,' -\.'nor:textsca,' -\.'nor:textinvsca,' -\.'nor:textscaolig,' -\.'nor:textturnv,' -\.'nor:textsoftsign,' -\.'nor:texthardsign,' -\.'nor:texthtb,' -\.'nor:textscb,' -\.'nor:textcrb,' -\.'nor:textbarb,' -\.'nor:textbeta,' -\.'nor:textbarc,' -\.'nor:texthtc,' -\.'bra:v,' -\.'bra:c,' -\.'nor:textctc,' -\.'nor:textstretchc,' -\.'nor:textstretchcvar,' -\.'nor:textctstretchc,' -\.'nor:textctstretchcvar,' -\.'nor:textcrd,' -\.'nor:textbard,' -\.'nor:texthtd,' -\.'nor:textrtaild,' -\.'nor:texthtrtaild,' -\.'nor:textctd,' -\.'nor:textfrhookd,' -\.'nor:textfrhookdvar,' -\.'nor:textdblig,' -\.'nor:textdzlig,' -\.'nor:textdctzlig,' -\.'nor:textdyoghlig,' -\.'nor:textctdctzlig,' -\.'nor:textscdelta,' -\.'nor:dh,' -\.'nor:textrhooke,' -\.'nor:textschwa,' -\.'nor:textrhookschwa,' -\.'nor:textreve,' -\.'nor:textsce,' -\.'nor:textepsilon,' -\.'nor:textrhookepsilon,' -\.'nor:textcloseepsilon,' -\.'nor:textrevepsilon,' -\.'nor:textrhookrevepsilon,' -\.'nor:textcloserevepsilon,' -\.'nor:textscf,' -\.'nor:textscriptg,' -\.'nor:textbarg,' -\.'nor:textcrg,' -\.'nor:texthtg,' -\.'nor:textg,' -\.'nor:textscg,' -\.'nor:texthtscg,' -\.'nor:textgamma,' -\.'nor:textgrgamma,' -\.'nor:textfrtailgamma,' -\.'nor:textbktailgamma,' -\.'nor:textbabygamma,' -\.'nor:textramshorns,' -\.'nor:texthvlig,' -\.'nor:textcrh,' -\.'nor:texthth,' -\.'nor:textrtailhth,' -\.'nor:textheng,' -\.'nor:texththeng,' -\.'nor:textturnh,' -\.'nor:textsch,' -\.'nor:i,' -\.'nor:textbari,' -\.'nor:textiota,' -\.'nor:textlhti,' -\.'nor:textlhtlongi,' -\.'nor:textvibyi,' -\.'nor:textraisevibyi,' -\.'nor:textsci,' -\.'nor:j,' -\.'nor:textctj,' -\.'nor:textctjvar,' -\.'nor:textscj,' -\.'bra:v,' -\.'nor:textbardotlessj,' -\.'nor:textObardotlessj,' -\.'nor:texthtbardotlessj,' -\.'nor:texthtbardotlessjvar,' -\.'nor:texthtk,' -\.'nor:textturnk,' -\.'nor:textsck,' -\.'nor:textturnsck,' -\.'nor:textltilde,' -\.'nor:textbarl,' -\.'nor:textbeltl,' -\.'nor:textrtaill,' -\.'nor:textlyoghlig,' -\.'nor:textOlyoghlig,' -\.'nor:textscl,' -\.'nor:textrevscl,' -\.'nor:textlambda,' -\.'nor:textcrlambda,' -\.'nor:textltailm,' -\.'nor:textturnm,' -\.'nor:textturnmrleg,' -\.'nor:texthmlig,' -\.'nor:textscm,' -\.'nor:textnrleg,' -\.'~,' -\.'nor:textltailn,' -\.'nor:textfrbarn,' -\.'nor:ng,' -\.'nor:textrtailn,' -\.'nor:textctn,' -\.'nor:textnrleg,' -\.'nor:textscn,' -\.'nor:textbullseye,' -\.'nor:textObullseye,' -\.'nor:textbaro,' -\.'nor:o,' -\.'nor:textfemale,' -\.'nor:textuncrfemale,' -\.'nor:oe,' -\.'nor:textscoelig,' -\.'nor:textopeno,' -\.'nor:textrhookopeno,' -\.'nor:textturncelig,' -\.'nor:textomega,' -\.'nor:textinvomega,' -\.'nor:textscomega,' -\.'nor:textcloseomega,' -\.'nor:textlhookp,' -\.'nor:textscp,' -\.'nor:textwynn,' -\.'nor:textthorn,' -\.'nor:textthornvari,' -\.'nor:textthornvarii,' -\.'nor:textthornvariii,' -\.'nor:textthornvariv,' -\.'nor:texthtp,' -\.'nor:textphi,' -\.'nor:texthtq,' -\.'nor:textqplig,' -\.'nor:textscq,' -\.'nor:textfishhookr,' -\.'nor:textlonglegr,' -\.'nor:textrtailr,' -\.'nor:textturnr,' -\.'nor:textturnrrtail,' -\.'nor:textturnlonglegr,' -\.'nor:textscr,' -\.'nor:textinvscr,' -\.'nor:textrevscr,' -\.'bra:v,' -\.'nor:textrtails,' -\.'nor:textesh,' -\.'nor:textdoublebaresh,' -\.'nor:textctesh,' -\.'nor:textlooptoprevesh,' -\.'nor:texthtt,' -\.'nor:textlhookt,' -\.'nor:textrtailt,' -\.'nor:textfrhookt,' -\.'nor:textctturnt,' -\.'nor:texttctclig,' -\.'nor:texttslig,' -\.'nor:textteshlig,' -\.'nor:textturnt,' -\.'nor:textctt,' -\.'nor:textcttctclig,' -\.'nor:texttheta,' -\.'nor:textbaru,' -\.'nor:textupsilon,' -\.'nor:textscu,' -\.'nor:textturnscu,' -\.'nor:textscriptv,' -\.'nor:textturnw,' -\.'nor:textchi,' -\.'nor:textturny,' -\.'nor:textscy,' -\.'nor:textlhtlongy,' -\.'nor:textvibyy,' -\.'nor:textcommatailz,' -\.'bra:v,' -\.'nor:textctz,' -\.'nor:textrtailz,' -\.'nor:textcrtwo,' -\.'nor:textturntwo,' -\.'nor:textyogh,' -\.'nor:textbenttailyogh,' -\.'nor:textrevyogh,' -\.'nor:textctyogh,' -\.'nor:textturnthree,' -\.'nor:textglotstop,' -\.'nor:textraiseglotstop,' -\.'nor:textbarglotstop,' -\.'nor:textinvglotstop,' -\.'nor:textcrinvglotstop,' -\.'nor:textctinvglotstop,' -\.'nor:textrevglotstop,' -\.'nor:textturnglotstop,' -\.'nor:textbarrevglotstop,' -\.'nor:textpipe,' -\.'nor:textpipevar,' -\.'nor:textdoublebarpipe,' -\.'nor:textdoublebarpipevar,' -\.'nor:textdoublepipevar,' -\.'nor:textdoublepipe,' -\.'nor:textdoublebarslash,' -\.'sbr:Suprasegmentals,' -\.'nor:textprimstress,' -\.'nor:textsecstress,' -\.'nor:textlengthmark,' -\.'nor:texthalflength,' -\.'nor:textvertline,' -\.'nor:textdoublevertline,' -\.'bra:textbottomtiebar,' -\.'nor:textdownstep,' -\.'nor:textupstep,' -\.'nor:textglobfall,' -\.'nor:textglobrise,' -\.'nor:textspleftarrow,' -\.'nor:textdownfullarrow,' -\.'nor:textupfullarrow,' -\.'nor:textsubrightarrow,' -\.'nor:textsubdoublearrow,' -\.'sbr:AccentsandDiacritics,' -\.'`,' -\."'," -\.'^,' -\.'~,' -\.'",' -\.'bra:H,' -\.'bra:r,' -\.'bra:v,' -\.'bra:u,' -\.'=,' -\.'.,' -\.'bra:c,' -\.'bra:textpolhook,' -\.'nor:textrevpolhook{o,' -\.'bra:textdoublegrave,' -\.'bra:textsubgrave,' -\.'bra:textsubacute,' -\.'bra:textsubcircum,' -\.'bra:textroundcap,' -\.'bra:textacutemacron,' -\.'bra:textgravemacron,' -\.'bra:textvbaraccent,' -\.'bra:textdoublevbaraccent,' -\.'bra:textgravedot,' -\.'bra:textdotacute,' -\.'bra:textcircumdot,' -\.'bra:texttildedot,' -\.'bra:textbrevemacron,' -\.'bra:textringmacron,' -\.'bra:textacutewedge,' -\.'bra:textdotbreve,' -\.'bra:textsubbridge,' -\.'bra:textinvsubbridge,' -\.'sbr:SubscriptSquare,' -\.'bra:textsubrhalfring,' -\.'bra:textsublhalfring,' -\.'bra:textsubw,' -\.'bra:textoverw,' -\.'bra:textseagull,' -\.'bra:textovercross,' -\.'bra:textsubplus,' -\.'bra:textraising,' -\.'bra:textlowering,' -\.'bra:textadvancing,' -\.'bra:textretracting,' -\.'bra:textsubtilde,' -\.'bra:textsubumlaut,' -\.'bra:textsubring,' -\.'bra:textsubwedge,' -\.'bra:textsubbar,' -\.'bra:textsubdot,' -\.'bra:textsubarch,' -\.'bra:textsyllabic,' -\.'bra:textsuperimposetilde,' -\.'nor:textcorner,' -\.'nor:textopencorner,' -\.'nor:textrhoticity,' -\.'nor:textceltpal,' -\.'nor:textlptr,' -\.'nor:textrptr,' -\.'nor:textrectangle,' -\.'nor:textretractingvar,' -\.'bra:texttoptiebar,' -\.'nor:textrevapostrophe,' -\.'nor:texthooktop,' -\.'nor:textrthook,' -\.'nor:textrthooklong,' -\.'nor:textpalhook,' -\.'nor:textpalhooklong,' -\.'nor:textpalhookvar,' -\.'bra:textsuperscript,' -\.'sbr:ToneLetters,' -\.'bra:tone,' -\.'bra:stone,' -\.'bra:rtone,' -\.'nor:tone{55},' -\.'nor:tone{44},' -\.'nor:tone{33},' -\.'nor:tone{22},' -\.'nor:tone{11},' -\.'nor:tone{51},' -\.'nor:tone{15},' -\.'nor:tone{45},' -\.'nor:tone{12},' -\.'nor:tone{454},' -\.'sbr:DiacriticsExtIPA,' -\.'bra:spreadlips,' -\.'bra:overbridge,' -\.'bra:bibridge,' -\.'bra:subdoublebar,' -\.'bra:subdoublevert,' -\.'bra:subcorner,' -\.'bra:whistle,' -\.'bra:sliding,' -\.'bra:crtilde,' -\.'bra:dottedtilde,' -\.'bra:doubletilde,' -\.'bra:partvoiceless,' -\.'bra:inipartvoiceless,' -\.'bra:finpartvoiceless,' -\.'bra:partvoice,' -\.'bra:inipartvoice,' -\.'bra:finpartvoice,' -\.'bra:sublptr,' -\.'bra:subrptr' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/ulem b/dot_vim/ftplugin/latex-suite/packages/ulem deleted file mode 100644 index 9257713..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/ulem +++ /dev/null @@ -1,21 +0,0 @@ -if exists("ulem_package_file") - finish -endif -let ulem_package_file = 1 - -let g:TeX_package_option_ulem = -\ 'normalem,' -\.'ULforem,' -\.'normalbf,' -\.'UWforbf' - -let g:TeX_package_ulem = -\ 'bra:uwave,' -\.'bra:uline,' -\.'bra:uuline,' -\.'bra:sout,' -\.'bra:xout,' -\.'ULthickness,' -\.'ULdepth' - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/url b/dot_vim/ftplugin/latex-suite/packages/url deleted file mode 100644 index 642148a..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/url +++ /dev/null @@ -1,24 +0,0 @@ -if exists("url_package_file") - finish -endif -let url_package_file = 1 - -let g:TeX_package_option_url = -\ 'hyphens,' -\.'obeyspaces,' -\.'spaces,' -\.'T1' - -let g:TeX_package_url = -\ 'bra:urlstyle,' -\.'bra:url,' -\.'bra:path,' -\.'bra:urldef' - -" TODO uncomment if you figure out -" 1. how to get this syn command to work every time instead of only the -" first time this file is sourced. -" syn region texZone start="\\url{" end="}\|%stopzone\>" -" syn region texZone start="\\path{" end="}\|%stopzone\>" - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/verbatim b/dot_vim/ftplugin/latex-suite/packages/verbatim deleted file mode 100644 index f2137ff..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/verbatim +++ /dev/null @@ -1,18 +0,0 @@ -if exists("verbatim_package_file") - finish -endif -let verbatim_package_file = 1 - -let g:TeX_package_option_verbatim = '' - -let g:TeX_package_verbatim = -\ 'env:comment,' -\.'env:verbatim,' -\.'env:verbatim*,' -\.'bra:verbatiminput,' -\.'bra:verbatiminput' - -syn region texZone start="\\begin{comment}" end="\\end{comment}\|%stopzone\>" fold -syn region texZone start="\\begin{verbatim}" end="\\end{verbatim}\|%stopzone\>" fold - -" vim:ft=vim:ff=unix: diff --git a/dot_vim/ftplugin/latex-suite/packages/version b/dot_vim/ftplugin/latex-suite/packages/version deleted file mode 100644 index 4de9da8..0000000 --- a/dot_vim/ftplugin/latex-suite/packages/version +++ /dev/null @@ -1,12 +0,0 @@ -if exists("version_package_file") - finish -endif -let version_package_file = 1 - -let g:TeX_package_option_version = '' - -let g:TeX_package_version = -\ 'bra:includeversion,' -\.'bra:excludeversion' - -" vim:ft=vim:ff=unix: |