diff options
author | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 16:55:42 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 16:58:10 -0500 |
commit | e5dfb045b994e1ab8fef9ef5d3f02ce20ea6b685 (patch) | |
tree | ba74287d80e46c70dab8c4311a1dc933fbfbdea1 /.vim/ftplugin/latex-suite/packages/babel | |
parent | fix pager again (diff) |
many more renames
Diffstat (limited to '.vim/ftplugin/latex-suite/packages/babel')
-rw-r--r-- | .vim/ftplugin/latex-suite/packages/babel | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/.vim/ftplugin/latex-suite/packages/babel b/.vim/ftplugin/latex-suite/packages/babel deleted file mode 100644 index cdb76ec..0000000 --- a/.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: |