From: martin f. krafft Date: Fri, 14 Sep 2007 12:30:36 +0000 (+0200) Subject: initial checkin X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/722c98341ccc6f3b0e0afc2e12c665fafaed32fb?ds=sidebyside initial checkin --- 722c98341ccc6f3b0e0afc2e12c665fafaed32fb diff --git a/.vim/after/ftplugin/automake.vim b/.vim/after/ftplugin/automake.vim new file mode 100644 index 0000000..bbd8967 --- /dev/null +++ b/.vim/after/ftplugin/automake.vim @@ -0,0 +1 @@ +setlocal noexpandtab diff --git a/.vim/after/ftplugin/debchangelog.vim b/.vim/after/ftplugin/debchangelog.vim new file mode 100644 index 0000000..d352495 --- /dev/null +++ b/.vim/after/ftplugin/debchangelog.vim @@ -0,0 +1,3 @@ +setlocal foldclose= +setlocal nofoldenable +setlocal comments+=f:- diff --git a/.vim/after/ftplugin/diff.vim b/.vim/after/ftplugin/diff.vim new file mode 100644 index 0000000..bbd8967 --- /dev/null +++ b/.vim/after/ftplugin/diff.vim @@ -0,0 +1 @@ +setlocal noexpandtab diff --git a/.vim/after/ftplugin/git.vim b/.vim/after/ftplugin/git.vim new file mode 100644 index 0000000..446f25e --- /dev/null +++ b/.vim/after/ftplugin/git.vim @@ -0,0 +1 @@ +setlocal textwidth=72 diff --git a/.vim/after/ftplugin/mail.vim b/.vim/after/ftplugin/mail.vim new file mode 100644 index 0000000..8be9fd2 --- /dev/null +++ b/.vim/after/ftplugin/mail.vim @@ -0,0 +1,6 @@ +setlocal textwidth=68 +setlocal formatoptions-=n +setlocal formatoptions-=o +setlocal formatoptions-=r + +"setlocal spell diff --git a/.vim/after/ftplugin/make.vim b/.vim/after/ftplugin/make.vim new file mode 100644 index 0000000..bbd8967 --- /dev/null +++ b/.vim/after/ftplugin/make.vim @@ -0,0 +1 @@ +setlocal noexpandtab diff --git a/.vim/after/ftplugin/python.vim b/.vim/after/ftplugin/python.vim new file mode 100644 index 0000000..ffd59cf --- /dev/null +++ b/.vim/after/ftplugin/python.vim @@ -0,0 +1,2 @@ +setlocal sw=4 +setlocal sts=4 diff --git a/.vim/after/ftplugin/rst.vim b/.vim/after/ftplugin/rst.vim new file mode 100644 index 0000000..d194443 --- /dev/null +++ b/.vim/after/ftplugin/rst.vim @@ -0,0 +1,4 @@ +"setlocal formatoptions+=a +setlocal formatoptions-=n +setlocal formatoptions-=o +setlocal formatoptions-=r diff --git a/.vim/after/ftplugin/tex.vim b/.vim/after/ftplugin/tex.vim new file mode 100644 index 0000000..c98fee1 --- /dev/null +++ b/.vim/after/ftplugin/tex.vim @@ -0,0 +1,7 @@ +setlocal formatoptions-=r +setlocal formatoptions-=o +setlocal formatoptions-=n + +setlocal iskeyword+=: + +setlocal spell diff --git a/.vim/after/ftplugin/vo_base.vim b/.vim/after/ftplugin/vo_base.vim new file mode 100644 index 0000000..6f5fe3d --- /dev/null +++ b/.vim/after/ftplugin/vo_base.vim @@ -0,0 +1 @@ +setlocal nolist diff --git a/.vim/colors/madduck.vim b/.vim/colors/madduck.vim new file mode 100644 index 0000000..6c59fb8 --- /dev/null +++ b/.vim/colors/madduck.vim @@ -0,0 +1,55 @@ +hi clear +if exists("syntax_on") + syntax reset +endif + +let g:colors_name = "madduck" + +if &background == "dark" + hi Comment ctermfg=DarkGreen ctermbg=none cterm=none term=bold + hi Constant ctermfg=Cyan ctermbg=none cterm=none term=underline + hi Special ctermfg=LightRed ctermbg=none cterm=none term=bold + hi Identifier ctermfg=White ctermbg=none cterm=none term=underline + hi Statement ctermfg=Yellow ctermbg=none cterm=bold term=bold + hi PreProc ctermfg=Cyan ctermbg=none cterm=bold term=underline + hi Type ctermfg=LightGreen ctermbg=none cterm=bold term=underline + hi Ignore ctermfg=Black ctermbg=none cterm=none term=none + + hi mailHeader ctermfg=darkcyan + hi mailSignature ctermfg=darkcyan + hi mailEmail ctermfg=darkcyan + hi mailHeaderKey ctermfg=white + hi mailSubject ctermfg=white + + hi mailQuoted1 ctermfg=darkgreen + hi mailQuoted2 ctermfg=magenta cterm=NONE + hi mailQuoted3 ctermfg=darkcyan + hi mailQuoted4 ctermfg=darkred + hi mailQuoted5 ctermfg=darkgreen + hi mailQuoted6 ctermfg=magenta + +else + hi Comment ctermfg=Black ctermbg=White cterm=none term=bold + hi Constant ctermfg=DarkGray ctermbg=none cterm=none term=underline + hi Special ctermfg=DarkMagenta ctermbg=none cterm=none term=bold + hi Identifier ctermfg=DarkBlue ctermbg=none cterm=none term=underline + hi Statement ctermfg=DarkBlue ctermbg=none cterm=none term=bold + hi PreProc ctermfg=DarkMagenta ctermbg=none cterm=none term=underline + hi Type ctermfg=DarkBlue ctermbg=none cterm=none term=underline + hi Ignore ctermfg=White ctermbg=none cterm=none term=none + + hi mailHeader ctermfg=darkblue cterm=none + hi mailSignature ctermfg=darkblue + hi mailEmail ctermfg=magenta cterm=none + hi mailHeaderKey ctermfg=blue cterm=none + hi mailSubject ctermfg=blue cterm=none + + hi mailQuoted1 ctermfg=darkred + hi mailQuoted2 ctermfg=darkmagenta cterm=none + hi mailQuoted3 ctermfg=darkgreen + hi mailQuoted4 ctermfg=darkred + hi mailQuoted5 ctermfg=darkmagenta + hi mailQuoted6 ctermfg=darkgreen +endif +hi Error ctermfg=White ctermbg=Red cterm=reverse term=reverse +hi Todo ctermfg=Black ctermbg=Yellow cterm=standout term=standout diff --git a/.vim/colors/vo_dark.vim b/.vim/colors/vo_dark.vim new file mode 120000 index 0000000..ea91c89 --- /dev/null +++ b/.vim/colors/vo_dark.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/colors/vo_dark.vim \ No newline at end of file diff --git a/.vim/colors/vo_light.vim b/.vim/colors/vo_light.vim new file mode 120000 index 0000000..8a3dba0 --- /dev/null +++ b/.vim/colors/vo_light.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/colors/vo_light.vim \ No newline at end of file diff --git a/.vim/compiler/tex.vim b/.vim/compiler/tex.vim new file mode 120000 index 0000000..96de836 --- /dev/null +++ b/.vim/compiler/tex.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/compiler/tex.vim \ No newline at end of file diff --git a/.vim/doc/.gitignore b/.vim/doc/.gitignore new file mode 100644 index 0000000..6e92f57 --- /dev/null +++ b/.vim/doc/.gitignore @@ -0,0 +1 @@ +tags diff --git a/.vim/doc/imaps.txt.gz b/.vim/doc/imaps.txt.gz new file mode 120000 index 0000000..cf5808b --- /dev/null +++ b/.vim/doc/imaps.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/imaps.txt.gz \ No newline at end of file diff --git a/.vim/doc/latex-suite-quickstart.txt.gz b/.vim/doc/latex-suite-quickstart.txt.gz new file mode 120000 index 0000000..5ef4db2 --- /dev/null +++ b/.vim/doc/latex-suite-quickstart.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/latex-suite-quickstart.txt.gz \ No newline at end of file diff --git a/.vim/doc/latex-suite.txt.gz b/.vim/doc/latex-suite.txt.gz new file mode 120000 index 0000000..35c3d5a --- /dev/null +++ b/.vim/doc/latex-suite.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/latex-suite.txt.gz \ No newline at end of file diff --git a/.vim/doc/latexhelp.txt.gz b/.vim/doc/latexhelp.txt.gz new file mode 120000 index 0000000..f8197a0 --- /dev/null +++ b/.vim/doc/latexhelp.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/latexhelp.txt.gz \ No newline at end of file diff --git a/.vim/doc/tags b/.vim/doc/tags new file mode 100644 index 0000000..787fa47 --- /dev/null +++ b/.vim/doc/tags @@ -0,0 +1,1029 @@ +Alph latexhelp.txt.gz /*Alph* +Alt-B latex-suite.txt.gz /*Alt-B* +Alt-C latex-suite.txt.gz /*Alt-C* +Alt-I latex-suite.txt.gz /*Alt-I* +Alt-L latex-suite.txt.gz /*Alt-L* +BibTeX latexhelp.txt.gz /*BibTeX* +IMAP_PutTextWithMovement latex-suite.txt.gz /*IMAP_PutTextWithMovement* +Imap_DeleteEmptyPlaceHolders latex-suite.txt.gz /*Imap_DeleteEmptyPlaceHolders* +Imap_FreezeImap latex-suite.txt.gz /*Imap_FreezeImap* +Imap_PlaceHolderEnd latex-suite.txt.gz /*Imap_PlaceHolderEnd* +Imap_PlaceHolderStart latex-suite.txt.gz /*Imap_PlaceHolderStart* +Imap_StickyPlaceHolders latex-suite.txt.gz /*Imap_StickyPlaceHolders* +Imap_UsePlaceHolders latex-suite.txt.gz /*Imap_UsePlaceHolders* +LaTeX latexhelp.txt.gz /*LaTeX* +Plug_IMAP_DeleteAndJumBack latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumBack* +Plug_IMAP_DeleteAndJumpForward latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumpForward* +Plug_IMAP_JumpBack latex-suite.txt.gz /*Plug_IMAP_JumpBack* +Plug_IMAP_JumpForward latex-suite.txt.gz /*Plug_IMAP_JumpForward* +Plug_Tex_InsertItem latex-suite.txt.gz /*Plug_Tex_InsertItem* +Plug_Tex_LeftRight latex-suite.txt.gz /*Plug_Tex_LeftRight* +Plug_Tex_MathBF latex-suite.txt.gz /*Plug_Tex_MathBF* +Plug_Tex_MathCal latex-suite.txt.gz /*Plug_Tex_MathCal* +Roman latexhelp.txt.gz /*Roman* +TClearCiteHist latex-suite.txt.gz /*TClearCiteHist* +TLook latex-suite.txt.gz /*TLook* +TLookAll latex-suite.txt.gz /*TLookAll* +TLookBib latex-suite.txt.gz /*TLookBib* +TMacro latex-suite.txt.gz /*TMacro* +TMacroDelete latex-suite.txt.gz /*TMacroDelete* +TMacroEdit latex-suite.txt.gz /*TMacroEdit* +TMacroNew latex-suite.txt.gz /*TMacroNew* +TPackage latex-suite.txt.gz /*TPackage* +TPackageUpdate latex-suite.txt.gz /*TPackageUpdate* +TPackageUpdateAll latex-suite.txt.gz /*TPackageUpdateAll* +TPartComp latex-suite.txt.gz /*TPartComp* +TPartView latex-suite.txt.gz /*TPartView* +TSection latex-suite.txt.gz /*TSection* +TSectionAdvanced latex-suite.txt.gz /*TSectionAdvanced* +TTemplate latex-suite.txt.gz /*TTemplate* +Tex_AutoFolding latex-suite.txt.gz /*Tex_AutoFolding* +Tex_BIBINPUTS latex-suite.txt.gz /*Tex_BIBINPUTS* +Tex_CatchVisMapErrors latex-suite.txt.gz /*Tex_CatchVisMapErrors* +Tex_Com_name latex-suite.txt.gz /*Tex_Com_name* +Tex_CompileRule_format latex-suite.txt.gz /*Tex_CompileRule_format* +Tex_Debug latex-suite.txt.gz /*Tex_Debug* +Tex_DefaultTargetFormat latex-suite.txt.gz /*Tex_DefaultTargetFormat* +Tex_Diacritics latex-suite.txt.gz /*Tex_Diacritics* +Tex_Env_name latex-suite.txt.gz /*Tex_Env_name* +Tex_EnvironmentMaps latex-suite.txt.gz /*Tex_EnvironmentMaps* +Tex_EnvironmentMenus latex-suite.txt.gz /*Tex_EnvironmentMenus* +Tex_ExplorerHeight latex-suite.txt.gz /*Tex_ExplorerHeight* +Tex_FoldedCommands latex-suite.txt.gz /*Tex_FoldedCommands* +Tex_FoldedEnvironments latex-suite.txt.gz /*Tex_FoldedEnvironments* +Tex_FoldedMisc latex-suite.txt.gz /*Tex_FoldedMisc* +Tex_FoldedSections latex-suite.txt.gz /*Tex_FoldedSections* +Tex_Folding latex-suite.txt.gz /*Tex_Folding* +Tex_FontMaps latex-suite.txt.gz /*Tex_FontMaps* +Tex_FontMenus latex-suite.txt.gz /*Tex_FontMenus* +Tex_GotoError latex-suite.txt.gz /*Tex_GotoError* +Tex_HotKeyMappings latex-suite.txt.gz /*Tex_HotKeyMappings* +Tex_IgnoreLevel latex-suite.txt.gz /*Tex_IgnoreLevel* +Tex_IgnoredWarnings latex-suite.txt.gz /*Tex_IgnoredWarnings* +Tex_ImageDir latex-suite.txt.gz /*Tex_ImageDir* +Tex_ItemStyle_environment latex-suite.txt.gz /*Tex_ItemStyle_environment* +Tex_Leader latex-suite.txt.gz /*Tex_Leader* +Tex_Leader2 latex-suite.txt.gz /*Tex_Leader2* +Tex_MainFileExpression latex-suite.txt.gz /*Tex_MainFileExpression* +Tex_MainMenuLocation latex-suite.txt.gz /*Tex_MainMenuLocation* +Tex_MathMenus latex-suite.txt.gz /*Tex_MathMenus* +Tex_Menus latex-suite.txt.gz /*Tex_Menus* +Tex_MultipleCompileFormats latex-suite.txt.gz /*Tex_MultipleCompileFormats* +Tex_NestElementMenus latex-suite.txt.gz /*Tex_NestElementMenus* +Tex_NestPackagesMenu latex-suite.txt.gz /*Tex_NestPackagesMenu* +Tex_PackagesMenu latex-suite.txt.gz /*Tex_PackagesMenu* +Tex_ProjectSourceFiles latex-suite.txt.gz /*Tex_ProjectSourceFiles* +Tex_PromptedCommands latex-suite.txt.gz /*Tex_PromptedCommands* +Tex_PromptedEnvironments latex-suite.txt.gz /*Tex_PromptedEnvironments* +Tex_RememberCiteSearch latex-suite.txt.gz /*Tex_RememberCiteSearch* +Tex_SectionMaps latex-suite.txt.gz /*Tex_SectionMaps* +Tex_SectionMenus latex-suite.txt.gz /*Tex_SectionMenus* +Tex_SmartKeyBS latex-suite.txt.gz /*Tex_SmartKeyBS* +Tex_SmartKeyQuote latex-suite.txt.gz /*Tex_SmartKeyQuote* +Tex_TEXINPUTS latex-suite.txt.gz /*Tex_TEXINPUTS* +Tex_UseMakefile latex-suite.txt.gz /*Tex_UseMakefile* +Tex_UseMenuWizard latex-suite.txt.gz /*Tex_UseMenuWizard* +Tex_UsePython latex-suite.txt.gz /*Tex_UsePython* +Tex_UseSimpleLabelSearch latex-suite.txt.gz /*Tex_UseSimpleLabelSearch* +Tex_UseUtfMenus latex-suite.txt.gz /*Tex_UseUtfMenus* +Tex_ViewRuleComplete_format latex-suite.txt.gz /*Tex_ViewRuleComplete_format* +Tex_ViewRule_format latex-suite.txt.gz /*Tex_ViewRule_format* +Tex_ViewerCwindowHeight latex-suite.txt.gz /*Tex_ViewerCwindowHeight* +Tex_ViewerPreviewHeight latex-suite.txt.gz /*Tex_ViewerPreviewHeight* +Tshortcuts latex-suite.txt.gz /*Tshortcuts* +\Alph latexhelp.txt.gz /*\\Alph* +\Huge latexhelp.txt.gz /*\\Huge* +\LARGE latexhelp.txt.gz /*\\LARGE* +\Large latexhelp.txt.gz /*\\Large* +\Roman latexhelp.txt.gz /*\\Roman* +\\ latexhelp.txt.gz /*\\\\* +\\\\ latexhelp.txt.gz /*\\\\\\\\* +\addcontentsline latexhelp.txt.gz /*\\addcontentsline* +\address latexhelp.txt.gz /*\\address* +\addtocontents latexhelp.txt.gz /*\\addtocontents* +\addtocounter latexhelp.txt.gz /*\\addtocounter* +\addtolength latexhelp.txt.gz /*\\addtolength* +\addvspace latexhelp.txt.gz /*\\addvspace* +\alph latexhelp.txt.gz /*\\alph* +\and latexhelp.txt.gz /*\\and* +\appendix latexhelp.txt.gz /*\\appendix* +\arabic latexhelp.txt.gz /*\\arabic* +\author latexhelp.txt.gz /*\\author* +\begin latexhelp.txt.gz /*\\begin* +\bfseries latexhelp.txt.gz /*\\bfseries* +\bibitem latexhelp.txt.gz /*\\bibitem* +\bibliography latexhelp.txt.gz /*\\bibliography* +\bibliographystyle latexhelp.txt.gz /*\\bibliographystyle* +\bigskip latexhelp.txt.gz /*\\bigskip* +\cc latexhelp.txt.gz /*\\cc* +\cdots latexhelp.txt.gz /*\\cdots* +\centering latexhelp.txt.gz /*\\centering* +\chapter latexhelp.txt.gz /*\\chapter* +\circle latexhelp.txt.gz /*\\circle* +\cite latexhelp.txt.gz /*\\cite* +\cleardoublepage latexhelp.txt.gz /*\\cleardoublepage* +\clearpage latexhelp.txt.gz /*\\clearpage* +\cline latexhelp.txt.gz /*\\cline* +\closing latexhelp.txt.gz /*\\closing* +\dashbox latexhelp.txt.gz /*\\dashbox* +\date latexhelp.txt.gz /*\\date* +\ddots latexhelp.txt.gz /*\\ddots* +\depth latexhelp.txt.gz /*\\depth* +\documentclass latexhelp.txt.gz /*\\documentclass* +\dotfill latexhelp.txt.gz /*\\dotfill* +\emph latexhelp.txt.gz /*\\emph* +\end latexhelp.txt.gz /*\\end* +\enlargethispage latexhelp.txt.gz /*\\enlargethispage* +\fbox latexhelp.txt.gz /*\\fbox* +\flushbottom latexhelp.txt.gz /*\\flushbottom* +\fnsymbol latexhelp.txt.gz /*\\fnsymbol* +\fontencoding latexhelp.txt.gz /*\\fontencoding* +\fontfamily latexhelp.txt.gz /*\\fontfamily* +\fontseries latexhelp.txt.gz /*\\fontseries* +\fontshape latexhelp.txt.gz /*\\fontshape* +\fontsize latexhelp.txt.gz /*\\fontsize* +\footnote latexhelp.txt.gz /*\\footnote* +\footnotemark latexhelp.txt.gz /*\\footnotemark* +\footnotesize latexhelp.txt.gz /*\\footnotesize* +\footnotetext latexhelp.txt.gz /*\\footnotetext* +\frac latexhelp.txt.gz /*\\frac* +\frame latexhelp.txt.gz /*\\frame* +\framebox latexhelp.txt.gz /*\\framebox* +\fussy latexhelp.txt.gz /*\\fussy* +\height latexhelp.txt.gz /*\\height* +\hfill latexhelp.txt.gz /*\\hfill* +\hline latexhelp.txt.gz /*\\hline* +\hrulefill latexhelp.txt.gz /*\\hrulefill* +\hspace latexhelp.txt.gz /*\\hspace* +\huge latexhelp.txt.gz /*\\huge* +\hyphenation latexhelp.txt.gz /*\\hyphenation* +\include latexhelp.txt.gz /*\\include* +\includeonly latexhelp.txt.gz /*\\includeonly* +\indent latexhelp.txt.gz /*\\indent* +\input latexhelp.txt.gz /*\\input* +\item latexhelp.txt.gz /*\\item* +\itshape latexhelp.txt.gz /*\\itshape* +\kill latexhelp.txt.gz /*\\kill* +\label latexhelp.txt.gz /*\\label* +\large latexhelp.txt.gz /*\\large* +\ldots latexhelp.txt.gz /*\\ldots* +\lefteqn latexhelp.txt.gz /*\\lefteqn* +\letter latexhelp.txt.gz /*\\letter* +\line latexhelp.txt.gz /*\\line* +\linebreak latexhelp.txt.gz /*\\linebreak* +\linethickness latexhelp.txt.gz /*\\linethickness* +\listoffigures latexhelp.txt.gz /*\\listoffigures* +\listoftables latexhelp.txt.gz /*\\listoftables* +\location latexhelp.txt.gz /*\\location* +\lrbox latexhelp.txt.gz /*\\lrbox* +\makebox latexhelp.txt.gz /*\\makebox* +\makelabels latexhelp.txt.gz /*\\makelabels* +\maketitle latexhelp.txt.gz /*\\maketitle* +\marginpar latexhelp.txt.gz /*\\marginpar* +\markboth latexhelp.txt.gz /*\\markboth* +\markright latexhelp.txt.gz /*\\markright* +\mathbf latexhelp.txt.gz /*\\mathbf* +\mathcal latexhelp.txt.gz /*\\mathcal* +\mathit latexhelp.txt.gz /*\\mathit* +\mathnormal latexhelp.txt.gz /*\\mathnormal* +\mathrm latexhelp.txt.gz /*\\mathrm* +\mathsf latexhelp.txt.gz /*\\mathsf* +\mathtt latexhelp.txt.gz /*\\mathtt* +\mathversion latexhelp.txt.gz /*\\mathversion* +\mbox latexhelp.txt.gz /*\\mbox* +\mdseries latexhelp.txt.gz /*\\mdseries* +\medskip latexhelp.txt.gz /*\\medskip* +\multicolumn latexhelp.txt.gz /*\\multicolumn* +\multiput latexhelp.txt.gz /*\\multiput* +\name latexhelp.txt.gz /*\\name* +\newcommand latexhelp.txt.gz /*\\newcommand* +\newcounter latexhelp.txt.gz /*\\newcounter* +\newenvironment latexhelp.txt.gz /*\\newenvironment* +\newfont latexhelp.txt.gz /*\\newfont* +\newlength latexhelp.txt.gz /*\\newlength* +\newline latexhelp.txt.gz /*\\newline* +\newpage latexhelp.txt.gz /*\\newpage* +\newsavebox latexhelp.txt.gz /*\\newsavebox* +\newtheorem latexhelp.txt.gz /*\\newtheorem* +\nocite latexhelp.txt.gz /*\\nocite* +\nofiles latexhelp.txt.gz /*\\nofiles* +\noindent latexhelp.txt.gz /*\\noindent* +\nolinebreak latexhelp.txt.gz /*\\nolinebreak* +\nonumber latexhelp.txt.gz /*\\nonumber* +\nopagebreak latexhelp.txt.gz /*\\nopagebreak* +\normalfont latexhelp.txt.gz /*\\normalfont* +\normalsize latexhelp.txt.gz /*\\normalsize* +\onecolumn latexhelp.txt.gz /*\\onecolumn* +\opening latexhelp.txt.gz /*\\opening* +\oval latexhelp.txt.gz /*\\oval* +\overbrace latexhelp.txt.gz /*\\overbrace* +\overline latexhelp.txt.gz /*\\overline* +\pagebreak latexhelp.txt.gz /*\\pagebreak* +\pagenumbering latexhelp.txt.gz /*\\pagenumbering* +\pageref latexhelp.txt.gz /*\\pageref* +\pagestyle latexhelp.txt.gz /*\\pagestyle* +\par latexhelp.txt.gz /*\\par* +\paragraph latexhelp.txt.gz /*\\paragraph* +\parbox latexhelp.txt.gz /*\\parbox* +\part latexhelp.txt.gz /*\\part* +\picture-framebox latexhelp.txt.gz /*\\picture-framebox* +\ps latexhelp.txt.gz /*\\ps* +\pushtabs latexhelp.txt.gz /*\\pushtabs* +\put latexhelp.txt.gz /*\\put* +\raggedbottom latexhelp.txt.gz /*\\raggedbottom* +\raggedleft latexhelp.txt.gz /*\\raggedleft* +\raggedright latexhelp.txt.gz /*\\raggedright* +\raisebox latexhelp.txt.gz /*\\raisebox* +\ref latexhelp.txt.gz /*\\ref* +\refstepcounter latexhelp.txt.gz /*\\refstepcounter* +\renewcommand latexhelp.txt.gz /*\\renewcommand* +\renewenvironment latexhelp.txt.gz /*\\renewenvironment* +\reversemarginpar latexhelp.txt.gz /*\\reversemarginpar* +\rmfamily latexhelp.txt.gz /*\\rmfamily* +\roman latexhelp.txt.gz /*\\roman* +\rule latexhelp.txt.gz /*\\rule* +\savebox latexhelp.txt.gz /*\\savebox* +\sbox latexhelp.txt.gz /*\\sbox* +\scriptsize latexhelp.txt.gz /*\\scriptsize* +\scshape latexhelp.txt.gz /*\\scshape* +\section latexhelp.txt.gz /*\\section* +\selectfont latexhelp.txt.gz /*\\selectfont* +\setcounter latexhelp.txt.gz /*\\setcounter* +\setlength latexhelp.txt.gz /*\\setlength* +\settodepth latexhelp.txt.gz /*\\settodepth* +\settoheight latexhelp.txt.gz /*\\settoheight* +\settowidth latexhelp.txt.gz /*\\settowidth* +\sffamily latexhelp.txt.gz /*\\sffamily* +\shortstack latexhelp.txt.gz /*\\shortstack* +\signature latexhelp.txt.gz /*\\signature* +\sloppy latexhelp.txt.gz /*\\sloppy* +\slshape latexhelp.txt.gz /*\\slshape* +\small latexhelp.txt.gz /*\\small* +\smallskip latexhelp.txt.gz /*\\smallskip* +\space latexhelp.txt.gz /*\\space* +\sqrt latexhelp.txt.gz /*\\sqrt* +\startbreaks latexhelp.txt.gz /*\\startbreaks* +\stepcounter latexhelp.txt.gz /*\\stepcounter* +\stopbreaks latexhelp.txt.gz /*\\stopbreaks* +\subparagraph latexhelp.txt.gz /*\\subparagraph* +\subsection latexhelp.txt.gz /*\\subsection* +\subsubsection latexhelp.txt.gz /*\\subsubsection* +\symbol latexhelp.txt.gz /*\\symbol* +\table latexhelp.txt.gz /*\\table* +\tableofcontents latexhelp.txt.gz /*\\tableofcontents* +\telephone latexhelp.txt.gz /*\\telephone* +\textbf latexhelp.txt.gz /*\\textbf* +\textit latexhelp.txt.gz /*\\textit* +\textmd latexhelp.txt.gz /*\\textmd* +\textnormal latexhelp.txt.gz /*\\textnormal* +\textrm latexhelp.txt.gz /*\\textrm* +\textsc latexhelp.txt.gz /*\\textsc* +\textsf latexhelp.txt.gz /*\\textsf* +\textsl latexhelp.txt.gz /*\\textsl* +\texttt latexhelp.txt.gz /*\\texttt* +\textup latexhelp.txt.gz /*\\textup* +\thanks latexhelp.txt.gz /*\\thanks* +\thebibliography latexhelp.txt.gz /*\\thebibliography* +\thispagestyle latexhelp.txt.gz /*\\thispagestyle* +\tiny latexhelp.txt.gz /*\\tiny* +\title latexhelp.txt.gz /*\\title* +\totalheight latexhelp.txt.gz /*\\totalheight* +\ttfamily latexhelp.txt.gz /*\\ttfamily* +\twocolumn latexhelp.txt.gz /*\\twocolumn* +\typein latexhelp.txt.gz /*\\typein* +\typeout latexhelp.txt.gz /*\\typeout* +\underbrace latexhelp.txt.gz /*\\underbrace* +\underline latexhelp.txt.gz /*\\underline* +\upshape latexhelp.txt.gz /*\\upshape* +\usebox latexhelp.txt.gz /*\\usebox* +\usecounter latexhelp.txt.gz /*\\usecounter* +\usefont latexhelp.txt.gz /*\\usefont* +\usepackage latexhelp.txt.gz /*\\usepackage* +\value latexhelp.txt.gz /*\\value* +\vdots latexhelp.txt.gz /*\\vdots* +\vector latexhelp.txt.gz /*\\vector* +\verb latexhelp.txt.gz /*\\verb* +\vfill latexhelp.txt.gz /*\\vfill* +\vline latexhelp.txt.gz /*\\vline* +\vspace latexhelp.txt.gz /*\\vspace* +\width latexhelp.txt.gz /*\\width* +adding-bib-options latex-suite.txt.gz /*adding-bib-options* +alph latexhelp.txt.gz /*alph* +altkey-mappings latex-suite.txt.gz /*altkey-mappings* +arabic latexhelp.txt.gz /*arabic* +array latexhelp.txt.gz /*array* +article-class latexhelp.txt.gz /*article-class* +auc-tex-mappings latex-suite.txt.gz /*auc-tex-mappings* +automatic-package-detection latex-suite.txt.gz /*automatic-package-detection* +bibtex latexhelp.txt.gz /*bibtex* +bibtex-bindings latex-suite.txt.gz /*bibtex-bindings* +book-class latexhelp.txt.gz /*book-class* +center latexhelp.txt.gz /*center* +changing-commands latex-suite.txt.gz /*changing-commands* +changing-environments latex-suite.txt.gz /*changing-environments* +cite-search-caching latex-suite.txt.gz /*cite-search-caching* +compiler-dependency latex-suite.txt.gz /*compiler-dependency* +compiler-output-customization latex-suite.txt.gz /*compiler-output-customization* +compiler-rules latex-suite.txt.gz /*compiler-rules* +compiling-multiple latex-suite.txt.gz /*compiling-multiple* +completion-window-preferences latex-suite.txt.gz /*completion-window-preferences* +custom-macros-menu latex-suite.txt.gz /*custom-macros-menu* +custom-packages latex-suite.txt.gz /*custom-packages* +customize-alt-key-maps latex-suite.txt.gz /*customize-alt-key-maps* +customize-imap-maps latex-suite.txt.gz /*customize-imap-maps* +customizing-compiling latex-suite.txt.gz /*customizing-compiling* +customizing-folding latex-suite.txt.gz /*customizing-folding* +customizing-latex-completion latex-suite.txt.gz /*customizing-latex-completion* +customizing-latex-suite latex-suite.txt.gz /*customizing-latex-suite* +customizing-macros latex-suite.txt.gz /*customizing-macros* +customizing-menus latex-suite.txt.gz /*customizing-menus* +customizing-packages latex-suite.txt.gz /*customizing-packages* +customizing-place-holders latex-suite.txt.gz /*customizing-place-holders* +customizing-smart-keys latex-suite.txt.gz /*customizing-smart-keys* +customizing-viewing latex-suite.txt.gz /*customizing-viewing* +customizing-what-to-fold latex-suite.txt.gz /*customizing-what-to-fold* +default-folding latex-suite.txt.gz /*default-folding* +description latexhelp.txt.gz /*description* +diacritic-mappings latex-suite.txt.gz /*diacritic-mappings* +displaymath latexhelp.txt.gz /*displaymath* +draft latexhelp.txt.gz /*draft* +editing-folding latex-suite.txt.gz /*editing-folding* +empty latexhelp.txt.gz /*empty* +enabling-searching latex-suite.txt.gz /*enabling-searching* +enclosing-commands latex-suite.txt.gz /*enclosing-commands* +enclosing-env-f5 latex-suite.txt.gz /*enclosing-env-f5* +enclosing-env-threeletter latex-suite.txt.gz /*enclosing-env-threeletter* +enclosing-environments latex-suite.txt.gz /*enclosing-environments* +enumerate latexhelp.txt.gz /*enumerate* +environment-mappings latex-suite.txt.gz /*environment-mappings* +eqnarray latexhelp.txt.gz /*eqnarray* +equation latexhelp.txt.gz /*equation* +figure latexhelp.txt.gz /*figure* +final latexhelp.txt.gz /*final* +fleqn latexhelp.txt.gz /*fleqn* +flushleft latexhelp.txt.gz /*flushleft* +flushright latexhelp.txt.gz /*flushright* +fold-setting-adding latex-suite.txt.gz /*fold-setting-adding* +fold-setting-advanced latex-suite.txt.gz /*fold-setting-advanced* +font-lowlevelcommands latexhelp.txt.gz /*font-lowlevelcommands* +font-maps latex-suite.txt.gz /*font-maps* +font-size latexhelp.txt.gz /*font-size* +font-styles latexhelp.txt.gz /*font-styles* +forward-searching latex-suite.txt.gz /*forward-searching* +greek-letter-mappings latex-suite.txt.gz /*greek-letter-mappings* +headings latexhelp.txt.gz /*headings* +hyph- latexhelp.txt.gz /*hyph-* +im_1 imaps.txt.gz /*im_1* +imaps-usage imaps.txt.gz /*imaps-usage* +imaps.txt imaps.txt.gz /*imaps.txt* +imaps.txt-toc imaps.txt.gz /*imaps.txt-toc* +inserting-commands latex-suite.txt.gz /*inserting-commands* +inserting-env-f5 latex-suite.txt.gz /*inserting-env-f5* +inserting-env-shift-f1 latex-suite.txt.gz /*inserting-env-shift-f1* +inserting-env-threeletter latex-suite.txt.gz /*inserting-env-threeletter* +inserting-environments latex-suite.txt.gz /*inserting-environments* +inserting-packages latex-suite.txt.gz /*inserting-packages* +inverse-searching latex-suite.txt.gz /*inverse-searching* +itemize latexhelp.txt.gz /*itemize* +landscape latexhelp.txt.gz /*landscape* +latex latexhelp.txt.gz /*latex* +latex-boxes latexhelp.txt.gz /*latex-boxes* +latex-breaking latexhelp.txt.gz /*latex-breaking* +latex-classes latexhelp.txt.gz /*latex-classes* +latex-command-maps latex-suite.txt.gz /*latex-command-maps* +latex-commands latexhelp.txt.gz /*latex-commands* +latex-compiling latex-suite.txt.gz /*latex-compiling* +latex-completion latex-suite.txt.gz /*latex-completion* +latex-completion-cite latex-suite.txt.gz /*latex-completion-cite* +latex-counters latexhelp.txt.gz /*latex-counters* +latex-definitions latexhelp.txt.gz /*latex-definitions* +latex-environments latexhelp.txt.gz /*latex-environments* +latex-folding latex-suite.txt.gz /*latex-folding* +latex-footnotes latexhelp.txt.gz /*latex-footnotes* +latex-hor-space latexhelp.txt.gz /*latex-hor-space* +latex-inputting latexhelp.txt.gz /*latex-inputting* +latex-layout latexhelp.txt.gz /*latex-layout* +latex-lengths latexhelp.txt.gz /*latex-lengths* +latex-letters latexhelp.txt.gz /*latex-letters* +latex-macros latex-suite.txt.gz /*latex-macros* +latex-margin-notes latexhelp.txt.gz /*latex-margin-notes* +latex-master-file latex-suite.txt.gz /*latex-master-file* +latex-master-file-specification latex-suite.txt.gz /*latex-master-file-specification* +latex-math latexhelp.txt.gz /*latex-math* +latex-modes latexhelp.txt.gz /*latex-modes* +latex-package-scanning latex-suite.txt.gz /*latex-package-scanning* +latex-packages latex-suite.txt.gz /*latex-packages* +latex-page-styles latexhelp.txt.gz /*latex-page-styles* +latex-paragraphs latexhelp.txt.gz /*latex-paragraphs* +latex-parameters latexhelp.txt.gz /*latex-parameters* +latex-project latex-suite.txt.gz /*latex-project* +latex-project-example latex-suite.txt.gz /*latex-project-example* +latex-project-settings latex-suite.txt.gz /*latex-project-settings* +latex-references latexhelp.txt.gz /*latex-references* +latex-sectioning latexhelp.txt.gz /*latex-sectioning* +latex-spaces-boxes latexhelp.txt.gz /*latex-spaces-boxes* +latex-special latexhelp.txt.gz /*latex-special* +latex-start-end latexhelp.txt.gz /*latex-start-end* +latex-suite-commands latex-suite.txt.gz /*latex-suite-commands* +latex-suite-commands-maps latex-suite.txt.gz /*latex-suite-commands-maps* +latex-suite-credits latex-suite.txt.gz /*latex-suite-credits* +latex-suite-maintainer latex-suite.txt.gz /*latex-suite-maintainer* +latex-suite-maps latex-suite.txt.gz /*latex-suite-maps* +latex-suite-quickstart.txt latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt* +latex-suite-quickstart.txt-toc latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt-toc* +latex-suite-templates latex-suite.txt.gz /*latex-suite-templates* +latex-suite.txt latex-suite.txt.gz /*latex-suite.txt* +latex-suite.txt-toc latex-suite.txt.gz /*latex-suite.txt-toc* +latex-terminal latexhelp.txt.gz /*latex-terminal* +latex-toc latexhelp.txt.gz /*latex-toc* +latex-typefaces latexhelp.txt.gz /*latex-typefaces* +latex-ver-space latexhelp.txt.gz /*latex-ver-space* +latex-viewing latex-suite.txt.gz /*latex-viewing* +latex-viewing-rules latex-suite.txt.gz /*latex-viewing-rules* +latexhelp.txt latexhelp.txt.gz /*latexhelp.txt* +leqno latexhelp.txt.gz /*leqno* +letter-class latexhelp.txt.gz /*letter-class* +list latexhelp.txt.gz /*list* +lq_1 latex-suite-quickstart.txt.gz /*lq_1* +lq_10 latex-suite-quickstart.txt.gz /*lq_10* +lq_2 latex-suite-quickstart.txt.gz /*lq_2* +lq_3 latex-suite-quickstart.txt.gz /*lq_3* +lq_4 latex-suite-quickstart.txt.gz /*lq_4* +lq_5 latex-suite-quickstart.txt.gz /*lq_5* +lq_6 latex-suite-quickstart.txt.gz /*lq_6* +lq_7 latex-suite-quickstart.txt.gz /*lq_7* +lq_8 latex-suite-quickstart.txt.gz /*lq_8* +lq_8_1 latex-suite-quickstart.txt.gz /*lq_8_1* +lq_9 latex-suite-quickstart.txt.gz /*lq_9* +lq_9_1 latex-suite-quickstart.txt.gz /*lq_9_1* +lq_9_2 latex-suite-quickstart.txt.gz /*lq_9_2* +lq_a_bc latex-suite-quickstart.txt.gz /*lq_a_bc* +lq_a_bd latex-suite-quickstart.txt.gz /*lq_a_bd* +lq_a_be latex-suite-quickstart.txt.gz /*lq_a_be* +lq_a_bf latex-suite-quickstart.txt.gz /*lq_a_bf* +lq_a_bg latex-suite-quickstart.txt.gz /*lq_a_bg* +lq_a_bh latex-suite-quickstart.txt.gz /*lq_a_bh* +lq_a_bi latex-suite-quickstart.txt.gz /*lq_a_bi* +lq_a_bj latex-suite-quickstart.txt.gz /*lq_a_bj* +lq_a_bk latex-suite-quickstart.txt.gz /*lq_a_bk* +lq_a_bl latex-suite-quickstart.txt.gz /*lq_a_bl* +lq_a_bm latex-suite-quickstart.txt.gz /*lq_a_bm* +lq_a_bn latex-suite-quickstart.txt.gz /*lq_a_bn* +lq_a_bo latex-suite-quickstart.txt.gz /*lq_a_bo* +lq_u_1 latex-suite-quickstart.txt.gz /*lq_u_1* +lq_u_2 latex-suite-quickstart.txt.gz /*lq_u_2* +lq_u_3 latex-suite-quickstart.txt.gz /*lq_u_3* +lq_u_4 latex-suite-quickstart.txt.gz /*lq_u_4* +lq_u_5 latex-suite-quickstart.txt.gz /*lq_u_5* +lq_u_6 latex-suite-quickstart.txt.gz /*lq_u_6* +lq_u_7 latex-suite-quickstart.txt.gz /*lq_u_7* +lq_u_8 latex-suite-quickstart.txt.gz /*lq_u_8* +lq_u_9 latex-suite-quickstart.txt.gz /*lq_u_9* +lr-mode latexhelp.txt.gz /*lr-mode* +ls-completion-custom latex-suite.txt.gz /*ls-completion-custom* +ls-completion-ref latex-suite.txt.gz /*ls-completion-ref* +ls-completion-usage latex-suite.txt.gz /*ls-completion-usage* +ls-filename-completion latex-suite.txt.gz /*ls-filename-completion* +ls-general-purpose-settings latex-suite.txt.gz /*ls-general-purpose-settings* +ls-imap-f7 latex-suite.txt.gz /*ls-imap-f7* +ls-imap-s-f7 latex-suite.txt.gz /*ls-imap-s-f7* +ls-imaps-syntax latex-suite.txt.gz /*ls-imaps-syntax* +ls-new-macros latex-suite.txt.gz /*ls-new-macros* +ls-set-grepprg latex-suite.txt.gz /*ls-set-grepprg* +ls-vmap-f7 latex-suite.txt.gz /*ls-vmap-f7* +ls_1 latex-suite.txt.gz /*ls_1* +ls_10 latex-suite.txt.gz /*ls_10* +ls_10_1 latex-suite.txt.gz /*ls_10_1* +ls_10_1_1 latex-suite.txt.gz /*ls_10_1_1* +ls_10_1_2 latex-suite.txt.gz /*ls_10_1_2* +ls_10_2 latex-suite.txt.gz /*ls_10_2* +ls_10_2_1 latex-suite.txt.gz /*ls_10_2_1* +ls_10_2_10 latex-suite.txt.gz /*ls_10_2_10* +ls_10_2_11 latex-suite.txt.gz /*ls_10_2_11* +ls_10_2_12 latex-suite.txt.gz /*ls_10_2_12* +ls_10_2_13 latex-suite.txt.gz /*ls_10_2_13* +ls_10_2_14 latex-suite.txt.gz /*ls_10_2_14* +ls_10_2_15 latex-suite.txt.gz /*ls_10_2_15* +ls_10_2_16 latex-suite.txt.gz /*ls_10_2_16* +ls_10_2_2 latex-suite.txt.gz /*ls_10_2_2* +ls_10_2_3 latex-suite.txt.gz /*ls_10_2_3* +ls_10_2_4 latex-suite.txt.gz /*ls_10_2_4* +ls_10_2_5 latex-suite.txt.gz /*ls_10_2_5* +ls_10_2_6 latex-suite.txt.gz /*ls_10_2_6* +ls_10_2_7 latex-suite.txt.gz /*ls_10_2_7* +ls_10_2_8 latex-suite.txt.gz /*ls_10_2_8* +ls_10_2_9 latex-suite.txt.gz /*ls_10_2_9* +ls_11 latex-suite.txt.gz /*ls_11* +ls_11_1 latex-suite.txt.gz /*ls_11_1* +ls_11_10 latex-suite.txt.gz /*ls_11_10* +ls_11_10_1 latex-suite.txt.gz /*ls_11_10_1* +ls_11_1_1 latex-suite.txt.gz /*ls_11_1_1* +ls_11_1_2 latex-suite.txt.gz /*ls_11_1_2* +ls_11_2 latex-suite.txt.gz /*ls_11_2* +ls_11_2_1 latex-suite.txt.gz /*ls_11_2_1* +ls_11_2_2 latex-suite.txt.gz /*ls_11_2_2* +ls_11_2_3 latex-suite.txt.gz /*ls_11_2_3* +ls_11_2_4 latex-suite.txt.gz /*ls_11_2_4* +ls_11_3 latex-suite.txt.gz /*ls_11_3* +ls_11_3_1 latex-suite.txt.gz /*ls_11_3_1* +ls_11_3_10 latex-suite.txt.gz /*ls_11_3_10* +ls_11_3_11 latex-suite.txt.gz /*ls_11_3_11* +ls_11_3_12 latex-suite.txt.gz /*ls_11_3_12* +ls_11_3_13 latex-suite.txt.gz /*ls_11_3_13* +ls_11_3_2 latex-suite.txt.gz /*ls_11_3_2* +ls_11_3_3 latex-suite.txt.gz /*ls_11_3_3* +ls_11_3_4 latex-suite.txt.gz /*ls_11_3_4* +ls_11_3_5 latex-suite.txt.gz /*ls_11_3_5* +ls_11_3_6 latex-suite.txt.gz /*ls_11_3_6* +ls_11_3_7 latex-suite.txt.gz /*ls_11_3_7* +ls_11_3_8 latex-suite.txt.gz /*ls_11_3_8* +ls_11_3_9 latex-suite.txt.gz /*ls_11_3_9* +ls_11_4 latex-suite.txt.gz /*ls_11_4* +ls_11_4_1 latex-suite.txt.gz /*ls_11_4_1* +ls_11_4_2 latex-suite.txt.gz /*ls_11_4_2* +ls_11_5 latex-suite.txt.gz /*ls_11_5* +ls_11_5_1 latex-suite.txt.gz /*ls_11_5_1* +ls_11_5_2 latex-suite.txt.gz /*ls_11_5_2* +ls_11_5_3 latex-suite.txt.gz /*ls_11_5_3* +ls_11_5_4 latex-suite.txt.gz /*ls_11_5_4* +ls_11_5_5 latex-suite.txt.gz /*ls_11_5_5* +ls_11_6 latex-suite.txt.gz /*ls_11_6* +ls_11_6_1 latex-suite.txt.gz /*ls_11_6_1* +ls_11_6_2 latex-suite.txt.gz /*ls_11_6_2* +ls_11_6_3 latex-suite.txt.gz /*ls_11_6_3* +ls_11_6_4 latex-suite.txt.gz /*ls_11_6_4* +ls_11_6_5 latex-suite.txt.gz /*ls_11_6_5* +ls_11_6_6 latex-suite.txt.gz /*ls_11_6_6* +ls_11_6_7 latex-suite.txt.gz /*ls_11_6_7* +ls_11_6_8 latex-suite.txt.gz /*ls_11_6_8* +ls_11_7 latex-suite.txt.gz /*ls_11_7* +ls_11_7_1 latex-suite.txt.gz /*ls_11_7_1* +ls_11_7_2 latex-suite.txt.gz /*ls_11_7_2* +ls_11_8 latex-suite.txt.gz /*ls_11_8* +ls_11_8_1 latex-suite.txt.gz /*ls_11_8_1* +ls_11_8_2 latex-suite.txt.gz /*ls_11_8_2* +ls_11_8_3 latex-suite.txt.gz /*ls_11_8_3* +ls_11_8_4 latex-suite.txt.gz /*ls_11_8_4* +ls_11_8_5 latex-suite.txt.gz /*ls_11_8_5* +ls_11_8_6 latex-suite.txt.gz /*ls_11_8_6* +ls_11_8_7 latex-suite.txt.gz /*ls_11_8_7* +ls_11_9 latex-suite.txt.gz /*ls_11_9* +ls_11_9_1 latex-suite.txt.gz /*ls_11_9_1* +ls_11_9_2 latex-suite.txt.gz /*ls_11_9_2* +ls_12 latex-suite.txt.gz /*ls_12* +ls_2 latex-suite.txt.gz /*ls_2* +ls_3 latex-suite.txt.gz /*ls_3* +ls_3_1 latex-suite.txt.gz /*ls_3_1* +ls_3_10 latex-suite.txt.gz /*ls_3_10* +ls_3_10_1 latex-suite.txt.gz /*ls_3_10_1* +ls_3_10_2 latex-suite.txt.gz /*ls_3_10_2* +ls_3_10_3 latex-suite.txt.gz /*ls_3_10_3* +ls_3_10_4 latex-suite.txt.gz /*ls_3_10_4* +ls_3_11 latex-suite.txt.gz /*ls_3_11* +ls_3_12 latex-suite.txt.gz /*ls_3_12* +ls_3_12_1 latex-suite.txt.gz /*ls_3_12_1* +ls_3_12_2 latex-suite.txt.gz /*ls_3_12_2* +ls_3_1_1 latex-suite.txt.gz /*ls_3_1_1* +ls_3_1_1_1 latex-suite.txt.gz /*ls_3_1_1_1* +ls_3_1_1_2 latex-suite.txt.gz /*ls_3_1_1_2* +ls_3_1_1_3 latex-suite.txt.gz /*ls_3_1_1_3* +ls_3_1_2 latex-suite.txt.gz /*ls_3_1_2* +ls_3_1_2_1 latex-suite.txt.gz /*ls_3_1_2_1* +ls_3_1_2_2 latex-suite.txt.gz /*ls_3_1_2_2* +ls_3_1_3 latex-suite.txt.gz /*ls_3_1_3* +ls_3_2 latex-suite.txt.gz /*ls_3_2* +ls_3_2_1 latex-suite.txt.gz /*ls_3_2_1* +ls_3_2_2 latex-suite.txt.gz /*ls_3_2_2* +ls_3_2_3 latex-suite.txt.gz /*ls_3_2_3* +ls_3_3 latex-suite.txt.gz /*ls_3_3* +ls_3_4 latex-suite.txt.gz /*ls_3_4* +ls_3_5 latex-suite.txt.gz /*ls_3_5* +ls_3_6 latex-suite.txt.gz /*ls_3_6* +ls_3_7 latex-suite.txt.gz /*ls_3_7* +ls_3_8 latex-suite.txt.gz /*ls_3_8* +ls_3_8_1 latex-suite.txt.gz /*ls_3_8_1* +ls_3_9 latex-suite.txt.gz /*ls_3_9* +ls_4 latex-suite.txt.gz /*ls_4* +ls_4_1 latex-suite.txt.gz /*ls_4_1* +ls_4_2 latex-suite.txt.gz /*ls_4_2* +ls_4_3 latex-suite.txt.gz /*ls_4_3* +ls_4_3_1 latex-suite.txt.gz /*ls_4_3_1* +ls_4_4 latex-suite.txt.gz /*ls_4_4* +ls_4_4_1 latex-suite.txt.gz /*ls_4_4_1* +ls_4_4_2 latex-suite.txt.gz /*ls_4_4_2* +ls_5 latex-suite.txt.gz /*ls_5* +ls_5_1 latex-suite.txt.gz /*ls_5_1* +ls_5_2 latex-suite.txt.gz /*ls_5_2* +ls_5_3 latex-suite.txt.gz /*ls_5_3* +ls_5_3_1 latex-suite.txt.gz /*ls_5_3_1* +ls_5_4 latex-suite.txt.gz /*ls_5_4* +ls_5_5 latex-suite.txt.gz /*ls_5_5* +ls_6 latex-suite.txt.gz /*ls_6* +ls_6_1 latex-suite.txt.gz /*ls_6_1* +ls_6_2 latex-suite.txt.gz /*ls_6_2* +ls_6_3 latex-suite.txt.gz /*ls_6_3* +ls_6_4 latex-suite.txt.gz /*ls_6_4* +ls_6_5 latex-suite.txt.gz /*ls_6_5* +ls_7 latex-suite.txt.gz /*ls_7* +ls_7_1 latex-suite.txt.gz /*ls_7_1* +ls_7_2 latex-suite.txt.gz /*ls_7_2* +ls_7_3 latex-suite.txt.gz /*ls_7_3* +ls_8 latex-suite.txt.gz /*ls_8* +ls_8_1 latex-suite.txt.gz /*ls_8_1* +ls_8_2 latex-suite.txt.gz /*ls_8_2* +ls_8_2_1 latex-suite.txt.gz /*ls_8_2_1* +ls_8_2_2 latex-suite.txt.gz /*ls_8_2_2* +ls_8_2_3 latex-suite.txt.gz /*ls_8_2_3* +ls_8_2_4 latex-suite.txt.gz /*ls_8_2_4* +ls_8_2_5 latex-suite.txt.gz /*ls_8_2_5* +ls_8_3 latex-suite.txt.gz /*ls_8_3* +ls_9 latex-suite.txt.gz /*ls_9* +ls_9_1 latex-suite.txt.gz /*ls_9_1* +ls_9_2 latex-suite.txt.gz /*ls_9_2* +ls_a_bA latex-suite.txt.gz /*ls_a_bA* +ls_a_bB latex-suite.txt.gz /*ls_a_bB* +ls_a_bC latex-suite.txt.gz /*ls_a_bC* +ls_a_bD latex-suite.txt.gz /*ls_a_bD* +ls_a_bE latex-suite.txt.gz /*ls_a_bE* +ls_a_bF latex-suite.txt.gz /*ls_a_bF* +ls_a_bG latex-suite.txt.gz /*ls_a_bG* +ls_a_bH latex-suite.txt.gz /*ls_a_bH* +ls_a_bI latex-suite.txt.gz /*ls_a_bI* +ls_a_bJ latex-suite.txt.gz /*ls_a_bJ* +ls_a_bK latex-suite.txt.gz /*ls_a_bK* +ls_a_bL latex-suite.txt.gz /*ls_a_bL* +ls_a_bM latex-suite.txt.gz /*ls_a_bM* +ls_a_bN latex-suite.txt.gz /*ls_a_bN* +ls_a_bO latex-suite.txt.gz /*ls_a_bO* +ls_a_bP latex-suite.txt.gz /*ls_a_bP* +ls_a_bQ latex-suite.txt.gz /*ls_a_bQ* +ls_a_bR latex-suite.txt.gz /*ls_a_bR* +ls_a_bS latex-suite.txt.gz /*ls_a_bS* +ls_a_bT latex-suite.txt.gz /*ls_a_bT* +ls_a_bU latex-suite.txt.gz /*ls_a_bU* +ls_a_bV latex-suite.txt.gz /*ls_a_bV* +ls_a_bW latex-suite.txt.gz /*ls_a_bW* +ls_a_bX latex-suite.txt.gz /*ls_a_bX* +ls_a_bY latex-suite.txt.gz /*ls_a_bY* +ls_a_bZ latex-suite.txt.gz /*ls_a_bZ* +ls_a_bc latex-suite.txt.gz /*ls_a_bc* +ls_a_bd latex-suite.txt.gz /*ls_a_bd* +ls_a_be latex-suite.txt.gz /*ls_a_be* +ls_a_bf latex-suite.txt.gz /*ls_a_bf* +ls_a_bg latex-suite.txt.gz /*ls_a_bg* +ls_a_bh latex-suite.txt.gz /*ls_a_bh* +ls_a_bi latex-suite.txt.gz /*ls_a_bi* +ls_a_bj latex-suite.txt.gz /*ls_a_bj* +ls_a_bk latex-suite.txt.gz /*ls_a_bk* +ls_a_bl latex-suite.txt.gz /*ls_a_bl* +ls_a_bm latex-suite.txt.gz /*ls_a_bm* +ls_a_bn latex-suite.txt.gz /*ls_a_bn* +ls_a_bo latex-suite.txt.gz /*ls_a_bo* +ls_a_bp latex-suite.txt.gz /*ls_a_bp* +ls_a_bq latex-suite.txt.gz /*ls_a_bq* +ls_a_br latex-suite.txt.gz /*ls_a_br* +ls_a_bs latex-suite.txt.gz /*ls_a_bs* +ls_a_bt latex-suite.txt.gz /*ls_a_bt* +ls_a_bu latex-suite.txt.gz /*ls_a_bu* +ls_a_bv latex-suite.txt.gz /*ls_a_bv* +ls_a_bw latex-suite.txt.gz /*ls_a_bw* +ls_a_bx latex-suite.txt.gz /*ls_a_bx* +ls_a_by latex-suite.txt.gz /*ls_a_by* +ls_a_bz latex-suite.txt.gz /*ls_a_bz* +ls_a_cA latex-suite.txt.gz /*ls_a_cA* +ls_a_cB latex-suite.txt.gz /*ls_a_cB* +ls_a_cC latex-suite.txt.gz /*ls_a_cC* +ls_a_cD latex-suite.txt.gz /*ls_a_cD* +ls_a_cE latex-suite.txt.gz /*ls_a_cE* +ls_a_cF latex-suite.txt.gz /*ls_a_cF* +ls_a_cG latex-suite.txt.gz /*ls_a_cG* +ls_a_cH latex-suite.txt.gz /*ls_a_cH* +ls_a_cI latex-suite.txt.gz /*ls_a_cI* +ls_a_cJ latex-suite.txt.gz /*ls_a_cJ* +ls_a_cK latex-suite.txt.gz /*ls_a_cK* +ls_a_cL latex-suite.txt.gz /*ls_a_cL* +ls_a_cM latex-suite.txt.gz /*ls_a_cM* +ls_a_cN latex-suite.txt.gz /*ls_a_cN* +ls_a_cO latex-suite.txt.gz /*ls_a_cO* +ls_a_cP latex-suite.txt.gz /*ls_a_cP* +ls_a_cQ latex-suite.txt.gz /*ls_a_cQ* +ls_a_cR latex-suite.txt.gz /*ls_a_cR* +ls_a_cS latex-suite.txt.gz /*ls_a_cS* +ls_a_cT latex-suite.txt.gz /*ls_a_cT* +ls_a_cU latex-suite.txt.gz /*ls_a_cU* +ls_a_cV latex-suite.txt.gz /*ls_a_cV* +ls_a_cW latex-suite.txt.gz /*ls_a_cW* +ls_a_cX latex-suite.txt.gz /*ls_a_cX* +ls_a_cY latex-suite.txt.gz /*ls_a_cY* +ls_a_cZ latex-suite.txt.gz /*ls_a_cZ* +ls_a_ca latex-suite.txt.gz /*ls_a_ca* +ls_a_cb latex-suite.txt.gz /*ls_a_cb* +ls_a_cc latex-suite.txt.gz /*ls_a_cc* +ls_a_cd latex-suite.txt.gz /*ls_a_cd* +ls_a_ce latex-suite.txt.gz /*ls_a_ce* +ls_a_cf latex-suite.txt.gz /*ls_a_cf* +ls_a_cg latex-suite.txt.gz /*ls_a_cg* +ls_a_ch latex-suite.txt.gz /*ls_a_ch* +ls_a_ci latex-suite.txt.gz /*ls_a_ci* +ls_a_cj latex-suite.txt.gz /*ls_a_cj* +ls_a_ck latex-suite.txt.gz /*ls_a_ck* +ls_a_cl latex-suite.txt.gz /*ls_a_cl* +ls_a_cm latex-suite.txt.gz /*ls_a_cm* +ls_a_cn latex-suite.txt.gz /*ls_a_cn* +ls_a_co latex-suite.txt.gz /*ls_a_co* +ls_a_cp latex-suite.txt.gz /*ls_a_cp* +ls_a_cq latex-suite.txt.gz /*ls_a_cq* +ls_a_cr latex-suite.txt.gz /*ls_a_cr* +ls_a_cs latex-suite.txt.gz /*ls_a_cs* +ls_a_ct latex-suite.txt.gz /*ls_a_ct* +ls_a_cu latex-suite.txt.gz /*ls_a_cu* +ls_a_cv latex-suite.txt.gz /*ls_a_cv* +ls_a_cw latex-suite.txt.gz /*ls_a_cw* +ls_a_cx latex-suite.txt.gz /*ls_a_cx* +ls_a_cy latex-suite.txt.gz /*ls_a_cy* +ls_a_cz latex-suite.txt.gz /*ls_a_cz* +ls_a_dA latex-suite.txt.gz /*ls_a_dA* +ls_a_dB latex-suite.txt.gz /*ls_a_dB* +ls_a_dC latex-suite.txt.gz /*ls_a_dC* +ls_a_dD latex-suite.txt.gz /*ls_a_dD* +ls_a_dE latex-suite.txt.gz /*ls_a_dE* +ls_a_dF latex-suite.txt.gz /*ls_a_dF* +ls_a_dG latex-suite.txt.gz /*ls_a_dG* +ls_a_dH latex-suite.txt.gz /*ls_a_dH* +ls_a_dI latex-suite.txt.gz /*ls_a_dI* +ls_a_dJ latex-suite.txt.gz /*ls_a_dJ* +ls_a_dK latex-suite.txt.gz /*ls_a_dK* +ls_a_dL latex-suite.txt.gz /*ls_a_dL* +ls_a_dM latex-suite.txt.gz /*ls_a_dM* +ls_a_dN latex-suite.txt.gz /*ls_a_dN* +ls_a_dO latex-suite.txt.gz /*ls_a_dO* +ls_a_dP latex-suite.txt.gz /*ls_a_dP* +ls_a_dQ latex-suite.txt.gz /*ls_a_dQ* +ls_a_dR latex-suite.txt.gz /*ls_a_dR* +ls_a_dS latex-suite.txt.gz /*ls_a_dS* +ls_a_dT latex-suite.txt.gz /*ls_a_dT* +ls_a_dU latex-suite.txt.gz /*ls_a_dU* +ls_a_dV latex-suite.txt.gz /*ls_a_dV* +ls_a_dW latex-suite.txt.gz /*ls_a_dW* +ls_a_dX latex-suite.txt.gz /*ls_a_dX* +ls_a_dY latex-suite.txt.gz /*ls_a_dY* +ls_a_dZ latex-suite.txt.gz /*ls_a_dZ* +ls_a_da latex-suite.txt.gz /*ls_a_da* +ls_a_db latex-suite.txt.gz /*ls_a_db* +ls_a_dc latex-suite.txt.gz /*ls_a_dc* +ls_a_dd latex-suite.txt.gz /*ls_a_dd* +ls_a_de latex-suite.txt.gz /*ls_a_de* +ls_a_df latex-suite.txt.gz /*ls_a_df* +ls_a_dg latex-suite.txt.gz /*ls_a_dg* +ls_a_dh latex-suite.txt.gz /*ls_a_dh* +ls_a_di latex-suite.txt.gz /*ls_a_di* +ls_a_dj latex-suite.txt.gz /*ls_a_dj* +ls_a_dk latex-suite.txt.gz /*ls_a_dk* +ls_a_dl latex-suite.txt.gz /*ls_a_dl* +ls_a_dm latex-suite.txt.gz /*ls_a_dm* +ls_a_dn latex-suite.txt.gz /*ls_a_dn* +ls_a_do latex-suite.txt.gz /*ls_a_do* +ls_a_dp latex-suite.txt.gz /*ls_a_dp* +ls_a_dq latex-suite.txt.gz /*ls_a_dq* +ls_a_dr latex-suite.txt.gz /*ls_a_dr* +ls_a_ds latex-suite.txt.gz /*ls_a_ds* +ls_a_dt latex-suite.txt.gz /*ls_a_dt* +ls_a_du latex-suite.txt.gz /*ls_a_du* +ls_a_dv latex-suite.txt.gz /*ls_a_dv* +ls_a_dw latex-suite.txt.gz /*ls_a_dw* +ls_a_dx latex-suite.txt.gz /*ls_a_dx* +ls_a_dy latex-suite.txt.gz /*ls_a_dy* +ls_a_dz latex-suite.txt.gz /*ls_a_dz* +ls_a_eA latex-suite.txt.gz /*ls_a_eA* +ls_a_eB latex-suite.txt.gz /*ls_a_eB* +ls_a_eC latex-suite.txt.gz /*ls_a_eC* +ls_a_eD latex-suite.txt.gz /*ls_a_eD* +ls_a_eE latex-suite.txt.gz /*ls_a_eE* +ls_a_eF latex-suite.txt.gz /*ls_a_eF* +ls_a_eG latex-suite.txt.gz /*ls_a_eG* +ls_a_ea latex-suite.txt.gz /*ls_a_ea* +ls_a_eb latex-suite.txt.gz /*ls_a_eb* +ls_a_ec latex-suite.txt.gz /*ls_a_ec* +ls_a_ed latex-suite.txt.gz /*ls_a_ed* +ls_a_ee latex-suite.txt.gz /*ls_a_ee* +ls_a_ef latex-suite.txt.gz /*ls_a_ef* +ls_a_eg latex-suite.txt.gz /*ls_a_eg* +ls_a_eh latex-suite.txt.gz /*ls_a_eh* +ls_a_ei latex-suite.txt.gz /*ls_a_ei* +ls_a_ej latex-suite.txt.gz /*ls_a_ej* +ls_a_ek latex-suite.txt.gz /*ls_a_ek* +ls_a_el latex-suite.txt.gz /*ls_a_el* +ls_a_em latex-suite.txt.gz /*ls_a_em* +ls_a_en latex-suite.txt.gz /*ls_a_en* +ls_a_eo latex-suite.txt.gz /*ls_a_eo* +ls_a_ep latex-suite.txt.gz /*ls_a_ep* +ls_a_eq latex-suite.txt.gz /*ls_a_eq* +ls_a_er latex-suite.txt.gz /*ls_a_er* +ls_a_es latex-suite.txt.gz /*ls_a_es* +ls_a_et latex-suite.txt.gz /*ls_a_et* +ls_a_eu latex-suite.txt.gz /*ls_a_eu* +ls_a_ev latex-suite.txt.gz /*ls_a_ev* +ls_a_ew latex-suite.txt.gz /*ls_a_ew* +ls_a_ex latex-suite.txt.gz /*ls_a_ex* +ls_a_ey latex-suite.txt.gz /*ls_a_ey* +ls_a_ez latex-suite.txt.gz /*ls_a_ez* +ls_u_1 latex-suite.txt.gz /*ls_u_1* +ls_u_2 latex-suite.txt.gz /*ls_u_2* +ls_u_3 latex-suite.txt.gz /*ls_u_3* +ls_u_4 latex-suite.txt.gz /*ls_u_4* +lsq-compiling latex-suite-quickstart.txt.gz /*lsq-compiling* +lsq-conclusions latex-suite-quickstart.txt.gz /*lsq-conclusions* +lsq-debugging latex-suite-quickstart.txt.gz /*lsq-debugging* +lsq-folding latex-suite-quickstart.txt.gz /*lsq-folding* +lsq-insert-environment latex-suite-quickstart.txt.gz /*lsq-insert-environment* +lsq-inserting-reference latex-suite-quickstart.txt.gz /*lsq-inserting-reference* +lsq-inserting-template latex-suite-quickstart.txt.gz /*lsq-inserting-template* +lsq-keyboard-shortcuts latex-suite-quickstart.txt.gz /*lsq-keyboard-shortcuts* +lsq-lsq-inserting-package latex-suite-quickstart.txt.gz /*lsq-lsq-inserting-package* +lsq-quick-forward-searching latex-suite-quickstart.txt.gz /*lsq-quick-forward-searching* +lsq-quick-inverse-searching latex-suite-quickstart.txt.gz /*lsq-quick-inverse-searching* +lsq-using-tutorial latex-suite-quickstart.txt.gz /*lsq-using-tutorial* +lsq-viewing-dvi latex-suite-quickstart.txt.gz /*lsq-viewing-dvi* +macro-enabling latex-suite.txt.gz /*macro-enabling* +math, latexhelp.txt.gz /*math,* +math-misc latexhelp.txt.gz /*math-misc* +math-mode latexhelp.txt.gz /*math-mode* +math-spacing latexhelp.txt.gz /*math-spacing* +math-symbols latexhelp.txt.gz /*math-symbols* +math: latexhelp.txt.gz /*math:* +math; latexhelp.txt.gz /*math;* +matn! latexhelp.txt.gz /*matn!* +minipage latexhelp.txt.gz /*minipage* +notitlepage latexhelp.txt.gz /*notitlepage* +onecolumn latexhelp.txt.gz /*onecolumn* +oneside latexhelp.txt.gz /*oneside* +openany latexhelp.txt.gz /*openany* +openbib latexhelp.txt.gz /*openbib* +openright latexhelp.txt.gz /*openright* +otl2html vo_readme.txt.gz /*otl2html* +overriding-macros latex-suite.txt.gz /*overriding-macros* +package-actions latex-suite.txt.gz /*package-actions* +paragraph-mode latexhelp.txt.gz /*paragraph-mode* +part-compiling latex-suite.txt.gz /*part-compiling* +pausing-imaps latex-suite.txt.gz /*pausing-imaps* +picture latexhelp.txt.gz /*picture* +picture-makebox latexhelp.txt.gz /*picture-makebox* +place-holder latex-suite.txt.gz /*place-holder* +place-holders latex-suite.txt.gz /*place-holders* +plain latexhelp.txt.gz /*plain* +pre-lengths latexhelp.txt.gz /*pre-lengths* +quotation latexhelp.txt.gz /*quotation* +quote-l latexhelp.txt.gz /*quote-l* +recommended-settings latex-suite.txt.gz /*recommended-settings* +remapping-latex-suite-keys latex-suite.txt.gz /*remapping-latex-suite-keys* +report-class latexhelp.txt.gz /*report-class* +roman latexhelp.txt.gz /*roman* +rqno latexhelp.txt.gz /*rqno* +section-mappings latex-suite.txt.gz /*section-mappings* +slides-class latexhelp.txt.gz /*slides-class* +smart-backspace latex-suite.txt.gz /*smart-backspace* +smart-keys latex-suite.txt.gz /*smart-keys* +sub-sup latexhelp.txt.gz /*sub-sup* +subscripts latexhelp.txt.gz /*subscripts* +superscripts latexhelp.txt.gz /*superscripts* +supporting-packages latex-suite.txt.gz /*supporting-packages* +tab' latexhelp.txt.gz /*tab'* +tab+ latexhelp.txt.gz /*tab+* +tab- latexhelp.txt.gz /*tab-* +tab< latexhelp.txt.gz /*tab<* +tab= latexhelp.txt.gz /*tab=* +tab> latexhelp.txt.gz /*tab>* +tab` latexhelp.txt.gz /*tab`* +taba latexhelp.txt.gz /*taba* +tabbing latexhelp.txt.gz /*tabbing* +tabular latexhelp.txt.gz /*tabular* +theorem latexhelp.txt.gz /*theorem* +titlepage latexhelp.txt.gz /*titlepage* +twocolumn latexhelp.txt.gz /*twocolumn* +twoside latexhelp.txt.gz /*twoside* +utl utl_usr.txt /*utl* +utl-#idref utl_ref.txt /*utl-#idref* +utl-#line utl_ref.txt /*utl-#line* +utl-#tn utl_ref.txt /*utl-#tn* +utl-#tp utl_ref.txt /*utl-#tp* +utl-:gu utl_ref.txt /*utl-:gu* +utl-absdontcombine utl_usr.txt /*utl-absdontcombine* +utl-changes utl_usr.txt /*utl-changes* +utl-chgadded utl_usr.txt /*utl-chgadded* +utl-chgchanged utl_usr.txt /*utl-chgchanged* +utl-chgincompat utl_usr.txt /*utl-chgincompat* +utl-commands utl_ref.txt /*utl-commands* +utl-commonpitfalls utl_usr.txt /*utl-commonpitfalls* +utl-credits utl_usr.txt /*utl-credits* +utl-customization utl_usr.txt /*utl-customization* +utl-dictlookup utl_usr.txt /*utl-dictlookup* +utl-examples utl_usr.txt /*utl-examples* +utl-exvimhelp utl_usr.txt /*utl-exvimhelp* +utl-exvs utl_usr.txt /*utl-exvs* +utl-fbcallmt utl_usr.txt /*utl-fbcallmt* +utl-fixed utl_usr.txt /*utl-fixed* +utl-fragexpr utl_ref.txt /*utl-fragexpr* +utl-fragmedtyp utl_ref.txt /*utl-fragmedtyp* +utl-gS utl_ref.txt /*utl-gS* +utl-gc utl_ref.txt /*utl-gc* +utl-ge utl_ref.txt /*utl-ge* +utl-gourlcmd utl_ref.txt /*utl-gourlcmd* +utl-gourlundercurs utl_ref.txt /*utl-gourlundercurs* +utl-gourlvis utl_ref.txt /*utl-gourlvis* +utl-gr utl_ref.txt /*utl-gr* +utl-gs utl_ref.txt /*utl-gs* +utl-gu utl_ref.txt /*utl-gu* +utl-gudotdir utl_usr.txt /*utl-gudotdir* +utl-gv utl_ref.txt /*utl-gv* +utl-howrelscombine utl_usr.txt /*utl-howrelscombine* +utl-internals utl_ref.txt /*utl-internals* +utl-intro utl_usr.txt /*utl-intro* +utl-knownbugs utl_usr.txt /*utl-knownbugs* +utl-mappings utl_ref.txt /*utl-mappings* +utl-plugin utl_usr.txt /*utl-plugin* +utl-protvsftype utl_usr.txt /*utl-protvsftype* +utl-reference-manual utl_ref.txt /*utl-reference-manual* +utl-smartexamples utl_usr.txt /*utl-smartexamples* +utl-spellchecker utl_usr.txt /*utl-spellchecker* +utl-start utl_usr.txt /*utl-start* +utl-startprog utl_usr.txt /*utl-startprog* +utl-tdassb utl_usr.txt /*utl-tdassb* +utl-tdassbcachem utl_usr.txt /*utl-tdassbcachem* +utl-tdcachemap utl_usr.txt /*utl-tdcachemap* +utl-tdfileisdef utl_usr.txt /*utl-tdfileisdef* +utl-tdmeddep utl_usr.txt /*utl-tdmeddep* +utl-tdwriteurls utl_usr.txt /*utl-tdwriteurls* +utl-tipsdetails utl_usr.txt /*utl-tipsdetails* +utl-todo utl_usr.txt /*utl-todo* +utl-tutforthback utl_usr.txt /*utl-tutforthback* +utl-tutfrags utl_usr.txt /*utl-tutfrags* +utl-tutmisc utl_usr.txt /*utl-tutmisc* +utl-tutmtypes utl_usr.txt /*utl-tutmtypes* +utl-tutorial utl_usr.txt /*utl-tutorial* +utl-tutothercmds utl_usr.txt /*utl-tutothercmds* +utl-tutrelabs utl_usr.txt /*utl-tutrelabs* +utl-tutsuppscms utl_usr.txt /*utl-tutsuppscms* +utl-tuttypeurl utl_usr.txt /*utl-tuttypeurl* +utl-uri-3letters utl_ref.txt /*utl-uri-3letters* +utl-uri-forbchars utl_ref.txt /*utl-uri-forbchars* +utl-uri-fragids utl_ref.txt /*utl-uri-fragids* +utl-uri-refs utl_ref.txt /*utl-uri-refs* +utl-uri-relabs utl_ref.txt /*utl-uri-relabs* +utl-uri-syntcomp utl_ref.txt /*utl-uri-syntcomp* +utl-uri-uriurl utl_ref.txt /*utl-uri-uriurl* +utl-uriprim utl_ref.txt /*utl-uriprim* +utl-useaddressbook utl_usr.txt /*utl-useaddressbook* +utl-usedesktop utl_usr.txt /*utl-usedesktop* +utl-usefwslashes utl_usr.txt /*utl-usefwslashes* +utl-useindex utl_usr.txt /*utl-useindex* +utl-useinfofile utl_usr.txt /*utl-useinfofile* +utl-userels utl_usr.txt /*utl-userels* +utl-usesourcecode utl_usr.txt /*utl-usesourcecode* +utl-v_ge utl_ref.txt /*utl-v_ge* +utl-v_gr utl_ref.txt /*utl-v_gr* +utl-v_gs utl_ref.txt /*utl-v_gs* +utl-v_gu utl_ref.txt /*utl-v_gu* +utl-v_gv utl_ref.txt /*utl-v_gv* +utl_ref.txt utl_ref.txt /*utl_ref.txt* +utl_usr.txt utl_usr.txt /*utl_usr.txt* +verbatim latexhelp.txt.gz /*verbatim* +verse latexhelp.txt.gz /*verse* +vimoutliner vo_readme.txt.gz /*vimoutliner* +vimplate vimplate.txt /*vimplate* +vimplate-contents vimplate.txt /*vimplate-contents* +vimplate-description vimplate.txt /*vimplate-description* +vimplate-documentation vimplate.txt /*vimplate-documentation* +vimplate-example vimplate.txt /*vimplate-example* +vimplate-installation vimplate.txt /*vimplate-installation* +vimplate-requirements vimplate.txt /*vimplate-requirements* +vimplate-subroutines vimplate.txt /*vimplate-subroutines* +vimplate-usage vimplate.txt /*vimplate-usage* +vo vo_readme.txt.gz /*vo* +vo-activities vo_readme.txt.gz /*vo-activities* +vo-advanced vo_readme.txt.gz /*vo-advanced* +vo-auto-install vo_readme.txt.gz /*vo-auto-install* +vo-cautions vo_readme.txt.gz /*vo-cautions* +vo-checkbox vo_readme.txt.gz /*vo-checkbox* +vo-color vo_readme.txt.gz /*vo-color* +vo-command vo_readme.txt.gz /*vo-command* +vo-executable-lines vo_readme.txt.gz /*vo-executable-lines* +vo-hoisting vo_readme.txt.gz /*vo-hoisting* +vo-install vo_readme.txt.gz /*vo-install* +vo-license vo_readme.txt.gz /*vo-license* +vo-maketags vo_readme.txt.gz /*vo-maketags* +vo-manual-install vo_readme.txt.gz /*vo-manual-install* +vo-menu vo_readme.txt.gz /*vo-menu* +vo-objects vo_readme.txt.gz /*vo-objects* +vo-other-files vo_readme.txt.gz /*vo-other-files* +vo-other-info vo_readme.txt.gz /*vo-other-info* +vo-philosophy vo_readme.txt.gz /*vo-philosophy* +vo-plugins vo_readme.txt.gz /*vo-plugins* +vo-post-processors vo_readme.txt.gz /*vo-post-processors* +vo-running vo_readme.txt.gz /*vo-running* +vo-scripts vo_readme.txt.gz /*vo-scripts* +vo-testing vo_readme.txt.gz /*vo-testing* +vo-troubleshooting vo_readme.txt.gz /*vo-troubleshooting* +vo-updating vo_readme.txt.gz /*vo-updating* +vo-version vo_readme.txt.gz /*vo-version* +vo_readme.txt vo_readme.txt.gz /*vo_readme.txt* +why-IMAP latex-suite.txt.gz /*why-IMAP* diff --git a/.vim/doc/utl_ref.txt b/.vim/doc/utl_ref.txt new file mode 120000 index 0000000..069e0e6 --- /dev/null +++ b/.vim/doc/utl_ref.txt @@ -0,0 +1 @@ +/usr/share/vim-scripts/doc/utl_ref.txt \ No newline at end of file diff --git a/.vim/doc/utl_usr.txt b/.vim/doc/utl_usr.txt new file mode 120000 index 0000000..d588432 --- /dev/null +++ b/.vim/doc/utl_usr.txt @@ -0,0 +1 @@ +/usr/share/vim-scripts/doc/utl_usr.txt \ No newline at end of file diff --git a/.vim/doc/vimplate.txt b/.vim/doc/vimplate.txt new file mode 120000 index 0000000..6877bae --- /dev/null +++ b/.vim/doc/vimplate.txt @@ -0,0 +1 @@ +/usr/share/vim-scripts/doc/vimplate.txt \ No newline at end of file diff --git a/.vim/doc/vo_readme.txt.gz b/.vim/doc/vo_readme.txt.gz new file mode 120000 index 0000000..517f848 --- /dev/null +++ b/.vim/doc/vo_readme.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/vo_readme.txt.gz \ No newline at end of file diff --git a/.vim/ftdetect/vo_base.vim b/.vim/ftdetect/vo_base.vim new file mode 120000 index 0000000..6acbef4 --- /dev/null +++ b/.vim/ftdetect/vo_base.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftdetect/vo_base.vim \ No newline at end of file diff --git a/.vim/ftplugin/bib_latexSuite.vim b/.vim/ftplugin/bib_latexSuite.vim new file mode 120000 index 0000000..8a4a21a --- /dev/null +++ b/.vim/ftplugin/bib_latexSuite.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/bib_latexSuite.vim \ No newline at end of file diff --git a/.vim/ftplugin/git.vim b/.vim/ftplugin/git.vim new file mode 120000 index 0000000..27766e4 --- /dev/null +++ b/.vim/ftplugin/git.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/ftplugin/git.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/bibtex.vim b/.vim/ftplugin/latex-suite/bibtex.vim new file mode 120000 index 0000000..b2187fc --- /dev/null +++ b/.vim/ftplugin/latex-suite/bibtex.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/bibtex.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/bibtools.py b/.vim/ftplugin/latex-suite/bibtools.py new file mode 120000 index 0000000..5246fec --- /dev/null +++ b/.vim/ftplugin/latex-suite/bibtools.py @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/bibtools.py \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/brackets.vim b/.vim/ftplugin/latex-suite/brackets.vim new file mode 120000 index 0000000..db9c202 --- /dev/null +++ b/.vim/ftplugin/latex-suite/brackets.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/brackets.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/compiler.vim b/.vim/ftplugin/latex-suite/compiler.vim new file mode 120000 index 0000000..47f717b --- /dev/null +++ b/.vim/ftplugin/latex-suite/compiler.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/compiler.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/custommacros.vim b/.vim/ftplugin/latex-suite/custommacros.vim new file mode 120000 index 0000000..a92ac9a --- /dev/null +++ b/.vim/ftplugin/latex-suite/custommacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/custommacros.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/diacritics.vim b/.vim/ftplugin/latex-suite/diacritics.vim new file mode 120000 index 0000000..a9ebe2a --- /dev/null +++ b/.vim/ftplugin/latex-suite/diacritics.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/diacritics.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/dictionaries/SIunits b/.vim/ftplugin/latex-suite/dictionaries/SIunits new file mode 120000 index 0000000..8bd69c4 --- /dev/null +++ b/.vim/ftplugin/latex-suite/dictionaries/SIunits @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/SIunits \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/dictionaries/dictionary b/.vim/ftplugin/latex-suite/dictionaries/dictionary new file mode 120000 index 0000000..7e157e2 --- /dev/null +++ b/.vim/ftplugin/latex-suite/dictionaries/dictionary @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/dictionary \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/elementmacros.vim b/.vim/ftplugin/latex-suite/elementmacros.vim new file mode 120000 index 0000000..d803bec --- /dev/null +++ b/.vim/ftplugin/latex-suite/elementmacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/elementmacros.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/envmacros.vim b/.vim/ftplugin/latex-suite/envmacros.vim new file mode 120000 index 0000000..f3de31c --- /dev/null +++ b/.vim/ftplugin/latex-suite/envmacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/envmacros.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/folding.vim b/.vim/ftplugin/latex-suite/folding.vim new file mode 120000 index 0000000..6ea91bf --- /dev/null +++ b/.vim/ftplugin/latex-suite/folding.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/folding.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/macros/example b/.vim/ftplugin/latex-suite/macros/example new file mode 120000 index 0000000..182184b --- /dev/null +++ b/.vim/ftplugin/latex-suite/macros/example @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/macros/example \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/main.vim b/.vim/ftplugin/latex-suite/main.vim new file mode 120000 index 0000000..7756d01 --- /dev/null +++ b/.vim/ftplugin/latex-suite/main.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/main.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/mathmacros-utf.vim b/.vim/ftplugin/latex-suite/mathmacros-utf.vim new file mode 120000 index 0000000..eb27622 --- /dev/null +++ b/.vim/ftplugin/latex-suite/mathmacros-utf.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/mathmacros-utf.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/mathmacros.vim b/.vim/ftplugin/latex-suite/mathmacros.vim new file mode 120000 index 0000000..69ed4ec --- /dev/null +++ b/.vim/ftplugin/latex-suite/mathmacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/mathmacros.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/multicompile.vim b/.vim/ftplugin/latex-suite/multicompile.vim new file mode 120000 index 0000000..9c862b9 --- /dev/null +++ b/.vim/ftplugin/latex-suite/multicompile.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/multicompile.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/outline.py b/.vim/ftplugin/latex-suite/outline.py new file mode 120000 index 0000000..20f9372 --- /dev/null +++ b/.vim/ftplugin/latex-suite/outline.py @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/outline.py \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages.vim b/.vim/ftplugin/latex-suite/packages.vim new file mode 120000 index 0000000..7692662 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/SIunits b/.vim/ftplugin/latex-suite/packages/SIunits new file mode 120000 index 0000000..e91d5cd --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/SIunits @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/SIunits \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/accents b/.vim/ftplugin/latex-suite/packages/accents new file mode 120000 index 0000000..95d9216 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/accents @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/accents \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/acromake b/.vim/ftplugin/latex-suite/packages/acromake new file mode 120000 index 0000000..03af1df --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/acromake @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/acromake \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/afterpage b/.vim/ftplugin/latex-suite/packages/afterpage new file mode 120000 index 0000000..2d5bd1d --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/afterpage @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/afterpage \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/alltt b/.vim/ftplugin/latex-suite/packages/alltt new file mode 120000 index 0000000..4c99323 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/alltt @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/alltt \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/amsmath b/.vim/ftplugin/latex-suite/packages/amsmath new file mode 120000 index 0000000..4e80d7f --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/amsmath @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/amsmath \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/amsthm b/.vim/ftplugin/latex-suite/packages/amsthm new file mode 120000 index 0000000..6a50fa1 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/amsthm @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/amsthm \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/amsxtra b/.vim/ftplugin/latex-suite/packages/amsxtra new file mode 120000 index 0000000..c659cb4 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/amsxtra @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/amsxtra \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/arabic b/.vim/ftplugin/latex-suite/packages/arabic new file mode 120000 index 0000000..82e41b5 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/arabic @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/arabic \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/array b/.vim/ftplugin/latex-suite/packages/array new file mode 120000 index 0000000..88cdc82 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/array @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/array \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/babel b/.vim/ftplugin/latex-suite/packages/babel new file mode 120000 index 0000000..6c48b5d --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/babel @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/babel \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/bar b/.vim/ftplugin/latex-suite/packages/bar new file mode 120000 index 0000000..3e7bc71 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/bar @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/bar \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/bm b/.vim/ftplugin/latex-suite/packages/bm new file mode 120000 index 0000000..8c59b19 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/bm @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/bm \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/bophook b/.vim/ftplugin/latex-suite/packages/bophook new file mode 120000 index 0000000..232241d --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/bophook @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/bophook \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/boxedminipage b/.vim/ftplugin/latex-suite/packages/boxedminipage new file mode 120000 index 0000000..3b3ec81 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/boxedminipage @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/boxedminipage \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/caption2 b/.vim/ftplugin/latex-suite/packages/caption2 new file mode 120000 index 0000000..21652a1 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/caption2 @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/caption2 \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/cases b/.vim/ftplugin/latex-suite/packages/cases new file mode 120000 index 0000000..1128f0d --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/cases @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/cases \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/ccaption b/.vim/ftplugin/latex-suite/packages/ccaption new file mode 120000 index 0000000..2f67d5b --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/ccaption @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ccaption \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/changebar b/.vim/ftplugin/latex-suite/packages/changebar new file mode 120000 index 0000000..435e625 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/changebar @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/changebar \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/chapterbib b/.vim/ftplugin/latex-suite/packages/chapterbib new file mode 120000 index 0000000..b224006 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/chapterbib @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/chapterbib \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/cite b/.vim/ftplugin/latex-suite/packages/cite new file mode 120000 index 0000000..0d1eee7 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/cite @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/cite \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/color b/.vim/ftplugin/latex-suite/packages/color new file mode 120000 index 0000000..1babf39 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/color @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/color \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/comma b/.vim/ftplugin/latex-suite/packages/comma new file mode 120000 index 0000000..ee9cc83 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/comma @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/comma \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/deleq b/.vim/ftplugin/latex-suite/packages/deleq new file mode 120000 index 0000000..0cb7f16 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/deleq @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/deleq \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/drftcite b/.vim/ftplugin/latex-suite/packages/drftcite new file mode 120000 index 0000000..7bcd15e --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/drftcite @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/drftcite \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/dropping b/.vim/ftplugin/latex-suite/packages/dropping new file mode 120000 index 0000000..001c600 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/dropping @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/dropping \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/enumerate b/.vim/ftplugin/latex-suite/packages/enumerate new file mode 120000 index 0000000..59c1cbe --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/enumerate @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/enumerate \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/eqlist b/.vim/ftplugin/latex-suite/packages/eqlist new file mode 120000 index 0000000..b2b3c7d --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/eqlist @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/eqlist \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/eqparbox b/.vim/ftplugin/latex-suite/packages/eqparbox new file mode 120000 index 0000000..9de66ef --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/eqparbox @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/eqparbox \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/everyshi b/.vim/ftplugin/latex-suite/packages/everyshi new file mode 120000 index 0000000..6c746a3 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/everyshi @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/everyshi \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/exmpl b/.vim/ftplugin/latex-suite/packages/exmpl new file mode 120000 index 0000000..6d62c72 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/exmpl @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/exmpl \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/flafter b/.vim/ftplugin/latex-suite/packages/flafter new file mode 120000 index 0000000..f0ca5d3 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/flafter @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/flafter \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/float b/.vim/ftplugin/latex-suite/packages/float new file mode 120000 index 0000000..88947fc --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/float @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/float \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/floatflt b/.vim/ftplugin/latex-suite/packages/floatflt new file mode 120000 index 0000000..54c8545 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/floatflt @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/floatflt \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/fn2end b/.vim/ftplugin/latex-suite/packages/fn2end new file mode 120000 index 0000000..0409cf5 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/fn2end @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/fn2end \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/footmisc b/.vim/ftplugin/latex-suite/packages/footmisc new file mode 120000 index 0000000..e0f7040 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/footmisc @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/footmisc \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/geometry b/.vim/ftplugin/latex-suite/packages/geometry new file mode 120000 index 0000000..9eae177 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/geometry @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/geometry \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/german b/.vim/ftplugin/latex-suite/packages/german new file mode 120000 index 0000000..7255a9d --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/german @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/german \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/graphicx b/.vim/ftplugin/latex-suite/packages/graphicx new file mode 120000 index 0000000..1a9509e --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/graphicx @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/graphicx \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/graphpap b/.vim/ftplugin/latex-suite/packages/graphpap new file mode 120000 index 0000000..d2ea7da --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/graphpap @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/graphpap \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/harpoon b/.vim/ftplugin/latex-suite/packages/harpoon new file mode 120000 index 0000000..b2de7e5 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/harpoon @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/harpoon \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/hhline b/.vim/ftplugin/latex-suite/packages/hhline new file mode 120000 index 0000000..e184977 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/hhline @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/hhline \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/histogram b/.vim/ftplugin/latex-suite/packages/histogram new file mode 120000 index 0000000..5075eef --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/histogram @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/histogram \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/hyperref b/.vim/ftplugin/latex-suite/packages/hyperref new file mode 120000 index 0000000..4f15513 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/hyperref @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/hyperref \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/ifthen b/.vim/ftplugin/latex-suite/packages/ifthen new file mode 120000 index 0000000..78ab498 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/ifthen @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ifthen \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/inputenc b/.vim/ftplugin/latex-suite/packages/inputenc new file mode 120000 index 0000000..06df3af --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/inputenc @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/inputenc \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/letterspace b/.vim/ftplugin/latex-suite/packages/letterspace new file mode 120000 index 0000000..9b1a052 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/letterspace @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/letterspace \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/lineno b/.vim/ftplugin/latex-suite/packages/lineno new file mode 120000 index 0000000..8ff57e8 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/lineno @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/lineno \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/longtable b/.vim/ftplugin/latex-suite/packages/longtable new file mode 120000 index 0000000..449046c --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/longtable @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/longtable \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/lscape b/.vim/ftplugin/latex-suite/packages/lscape new file mode 120000 index 0000000..338090c --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/lscape @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/lscape \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/manyfoot b/.vim/ftplugin/latex-suite/packages/manyfoot new file mode 120000 index 0000000..447a81d --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/manyfoot @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/manyfoot \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/moreverb b/.vim/ftplugin/latex-suite/packages/moreverb new file mode 120000 index 0000000..f53e42a --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/moreverb @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/moreverb \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/multibox b/.vim/ftplugin/latex-suite/packages/multibox new file mode 120000 index 0000000..13eab07 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/multibox @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/multibox \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/multicol b/.vim/ftplugin/latex-suite/packages/multicol new file mode 120000 index 0000000..dffcd66 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/multicol @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/multicol \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/newalg b/.vim/ftplugin/latex-suite/packages/newalg new file mode 120000 index 0000000..eff77ed --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/newalg @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/newalg \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/ngerman b/.vim/ftplugin/latex-suite/packages/ngerman new file mode 120000 index 0000000..45ee1ed --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/ngerman @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ngerman \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/numprint b/.vim/ftplugin/latex-suite/packages/numprint new file mode 120000 index 0000000..39b222f --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/numprint @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/numprint \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/oldstyle b/.vim/ftplugin/latex-suite/packages/oldstyle new file mode 120000 index 0000000..adee066 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/oldstyle @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/oldstyle \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/outliner b/.vim/ftplugin/latex-suite/packages/outliner new file mode 120000 index 0000000..6091b28 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/outliner @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/outliner \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/overcite b/.vim/ftplugin/latex-suite/packages/overcite new file mode 120000 index 0000000..6598d04 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/overcite @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/overcite \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/parallel b/.vim/ftplugin/latex-suite/packages/parallel new file mode 120000 index 0000000..311e7cd --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/parallel @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/parallel \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/plain b/.vim/ftplugin/latex-suite/packages/plain new file mode 120000 index 0000000..4184d23 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/plain @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/plain \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/plates b/.vim/ftplugin/latex-suite/packages/plates new file mode 120000 index 0000000..e8fd326 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/plates @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/plates \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/polski b/.vim/ftplugin/latex-suite/packages/polski new file mode 120000 index 0000000..448a8f1 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/polski @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/polski \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/psgo b/.vim/ftplugin/latex-suite/packages/psgo new file mode 120000 index 0000000..2cede17 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/psgo @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/psgo \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/schedule b/.vim/ftplugin/latex-suite/packages/schedule new file mode 120000 index 0000000..61c1db1 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/schedule @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/schedule \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/textfit b/.vim/ftplugin/latex-suite/packages/textfit new file mode 120000 index 0000000..1d12972 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/textfit @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/textfit \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/times b/.vim/ftplugin/latex-suite/packages/times new file mode 120000 index 0000000..4cbed6c --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/times @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/times \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/tipa b/.vim/ftplugin/latex-suite/packages/tipa new file mode 120000 index 0000000..8bf48c9 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/tipa @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/tipa \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/ulem b/.vim/ftplugin/latex-suite/packages/ulem new file mode 120000 index 0000000..4c343de --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/ulem @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ulem \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/url b/.vim/ftplugin/latex-suite/packages/url new file mode 120000 index 0000000..f4b73c1 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/url @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/url \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/verbatim b/.vim/ftplugin/latex-suite/packages/verbatim new file mode 120000 index 0000000..a1abb9e --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/verbatim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/verbatim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/packages/version b/.vim/ftplugin/latex-suite/packages/version new file mode 120000 index 0000000..8c53044 --- /dev/null +++ b/.vim/ftplugin/latex-suite/packages/version @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/version \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/projecttemplate.vim b/.vim/ftplugin/latex-suite/projecttemplate.vim new file mode 120000 index 0000000..fdb6b82 --- /dev/null +++ b/.vim/ftplugin/latex-suite/projecttemplate.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/projecttemplate.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/pytools.py b/.vim/ftplugin/latex-suite/pytools.py new file mode 120000 index 0000000..5c3d8d8 --- /dev/null +++ b/.vim/ftplugin/latex-suite/pytools.py @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/pytools.py \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/smartspace.vim b/.vim/ftplugin/latex-suite/smartspace.vim new file mode 120000 index 0000000..a772f3e --- /dev/null +++ b/.vim/ftplugin/latex-suite/smartspace.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/smartspace.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/templates.vim b/.vim/ftplugin/latex-suite/templates.vim new file mode 120000 index 0000000..8dcadde --- /dev/null +++ b/.vim/ftplugin/latex-suite/templates.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/templates/IEEEtran.tex b/.vim/ftplugin/latex-suite/templates/IEEEtran.tex new file mode 120000 index 0000000..459ad65 --- /dev/null +++ b/.vim/ftplugin/latex-suite/templates/IEEEtran.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/IEEEtran.tex \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/templates/article.tex b/.vim/ftplugin/latex-suite/templates/article.tex new file mode 120000 index 0000000..adc3398 --- /dev/null +++ b/.vim/ftplugin/latex-suite/templates/article.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/article.tex \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/templates/report.tex b/.vim/ftplugin/latex-suite/templates/report.tex new file mode 120000 index 0000000..980639e --- /dev/null +++ b/.vim/ftplugin/latex-suite/templates/report.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/report.tex \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/templates/report_two_column.tex b/.vim/ftplugin/latex-suite/templates/report_two_column.tex new file mode 120000 index 0000000..e95ddfb --- /dev/null +++ b/.vim/ftplugin/latex-suite/templates/report_two_column.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/report_two_column.tex \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/texmenuconf.vim b/.vim/ftplugin/latex-suite/texmenuconf.vim new file mode 120000 index 0000000..337c158 --- /dev/null +++ b/.vim/ftplugin/latex-suite/texmenuconf.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texmenuconf.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/texproject.vim b/.vim/ftplugin/latex-suite/texproject.vim new file mode 120000 index 0000000..9254715 --- /dev/null +++ b/.vim/ftplugin/latex-suite/texproject.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texproject.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/texrc b/.vim/ftplugin/latex-suite/texrc new file mode 120000 index 0000000..ebf927b --- /dev/null +++ b/.vim/ftplugin/latex-suite/texrc @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texrc \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/texviewer.vim b/.vim/ftplugin/latex-suite/texviewer.vim new file mode 120000 index 0000000..e7c2963 --- /dev/null +++ b/.vim/ftplugin/latex-suite/texviewer.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texviewer.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/version.vim b/.vim/ftplugin/latex-suite/version.vim new file mode 120000 index 0000000..53adfe7 --- /dev/null +++ b/.vim/ftplugin/latex-suite/version.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/version.vim \ No newline at end of file diff --git a/.vim/ftplugin/latex-suite/wizardfuncs.vim b/.vim/ftplugin/latex-suite/wizardfuncs.vim new file mode 120000 index 0000000..f32b74a --- /dev/null +++ b/.vim/ftplugin/latex-suite/wizardfuncs.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/wizardfuncs.vim \ No newline at end of file diff --git a/.vim/ftplugin/mail.vim b/.vim/ftplugin/mail.vim new file mode 100644 index 0000000..468624a --- /dev/null +++ b/.vim/ftplugin/mail.vim @@ -0,0 +1,5 @@ +nmap :w:%!~/.bin/mail/mailplate --keep-unknown official +nmap :w:%!~/.bin/mail/mailplate --keep-unknown private +nmap :w:%!~/.bin/mail/mailplate --keep-unknown debian +nmap :w:%!~/.bin/mail/mailplate --keep-unknown sudetia +nmap :w:%!~/.bin/mail/mailplate --auto --keep-unknown 2>/dev/null diff --git a/.vim/ftplugin/tex_latexSuite.vim b/.vim/ftplugin/tex_latexSuite.vim new file mode 120000 index 0000000..e0a3109 --- /dev/null +++ b/.vim/ftplugin/tex_latexSuite.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/tex_latexSuite.vim \ No newline at end of file diff --git a/.vim/ftplugin/vo_base.vim b/.vim/ftplugin/vo_base.vim new file mode 120000 index 0000000..2f03ef9 --- /dev/null +++ b/.vim/ftplugin/vo_base.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/vo_base.vim \ No newline at end of file diff --git a/.vim/ftplugin/vo_checkbox.vim b/.vim/ftplugin/vo_checkbox.vim new file mode 120000 index 0000000..f0d0712 --- /dev/null +++ b/.vim/ftplugin/vo_checkbox.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/vo_checkbox.vim \ No newline at end of file diff --git a/.vim/ftplugin/vo_hoist.vim b/.vim/ftplugin/vo_hoist.vim new file mode 120000 index 0000000..cbda712 --- /dev/null +++ b/.vim/ftplugin/vo_hoist.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/vo_hoist.vim \ No newline at end of file diff --git a/.vim/indent/tex.vim b/.vim/indent/tex.vim new file mode 120000 index 0000000..551e3a9 --- /dev/null +++ b/.vim/indent/tex.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/indent/tex.vim \ No newline at end of file diff --git a/.vim/macros/closetag.vim b/.vim/macros/closetag.vim new file mode 120000 index 0000000..bcd8d5b --- /dev/null +++ b/.vim/macros/closetag.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/macros/closetag.vim \ No newline at end of file diff --git a/.vim/plugin/SyntaxFolds.vim b/.vim/plugin/SyntaxFolds.vim new file mode 120000 index 0000000..6368bba --- /dev/null +++ b/.vim/plugin/SyntaxFolds.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/SyntaxFolds.vim \ No newline at end of file diff --git a/.vim/plugin/filebrowser.vim b/.vim/plugin/filebrowser.vim new file mode 120000 index 0000000..de8cea6 --- /dev/null +++ b/.vim/plugin/filebrowser.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/filebrowser.vim \ No newline at end of file diff --git a/.vim/plugin/gnupg.vim b/.vim/plugin/gnupg.vim new file mode 120000 index 0000000..eb820e4 --- /dev/null +++ b/.vim/plugin/gnupg.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/plugin/gnupg.vim \ No newline at end of file diff --git a/.vim/plugin/imaps.vim b/.vim/plugin/imaps.vim new file mode 120000 index 0000000..078bfb9 --- /dev/null +++ b/.vim/plugin/imaps.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/imaps.vim \ No newline at end of file diff --git a/.vim/plugin/lbdbq.vim b/.vim/plugin/lbdbq.vim new file mode 100644 index 0000000..a2a5c27 --- /dev/null +++ b/.vim/plugin/lbdbq.vim @@ -0,0 +1,124 @@ +" Name: lbdbq.vim +" Summary: functions and mode mappings for querying lbdb from Vim +" Copyright: Copyright (C) 2007 Stefano Zacchiroli +" License: GNU GPL version 3 or above +" Maintainer: Stefano Zacchiroli +" URL: http://www.vim.org/scripts/script.php?script_id=1757 +" Version: 0.3 + +if exists("loaded_lbdbq") + finish +endif +let loaded_lbdbq = 1 + +" queries lbdb with a query string and return a list of pairs: +" [['full name', 'email'], ['full name', 'email'], ...] +function! LbdbQuery(qstring) + let output = system("lbdbq '" . a:qstring . "'") + let results = [] + for line in split(output, "\n")[1:] " skip first line (lbdbq summary) + let fields = split(line, "\t") + let results += [ [fields[1], fields[0]] ] + endfor + return results +endfunction + +" check if a potential query string has already been expanded in a complete +" recipient. E.g.: 'Stefano Zacchiroli ' is a complete +" recipient, 'stefano zacchiroli' and 'stefano' are not +function! LbdbIsExpanded(qstring) + return (a:qstring =~ '^\S\+@\S\+$\|<\S\+@\S\+>$') +endfunction + +function! LbdbTrim(s) + return substitute(a:s, '^\s*\(.\{-}\)\s*$', '\1', '') +endfunction + +" expand a (short) contact given as a query string, asking interactively if +" disambiguation is needed +" E.g.: 'stefano zacchiroli' -> 'Stefano Zacchiroli ' +function! LbdbExpandContact(qstring) + let qstring = LbdbTrim(a:qstring) + if LbdbIsExpanded(qstring) + return qstring + else " try to expand (short) contact + let contacts = LbdbQuery(qstring) + let contact = [] + if empty(contacts) " no matching (long) contact found + return qstring + elseif len(contacts) > 1 " multiple matches: disambiguate + echo "Choose a recipient for '" . qstring . "':" + let choices = [] + let counter = 0 + for contact in contacts + let choices += [ printf("%2d. %s <%s>", counter, contact[0], contact[1]) ] + let counter += 1 + endfor + let contact = contacts[inputlist(choices)] + else " len(contacts) == 1, i.e. one single match + let contact = contacts[0] + endif + return printf("\"%s\" <%s>", escape(contact[0], '"'), contact[1]) + endif +endfunction + +" as above but support input strings composed by comma separated (short) +" contacts +function! LbdbExpandContacts(raw) + let raw = LbdbTrim(a:raw) + let qstrings = split(raw, '\s*,\s*') + let exp_strings = [] + for qstring in qstrings + let exp_strings += [ LbdbExpandContact(qstring) ] + endfor + return join(exp_strings, ', ') +endfunction + +" expand all (short) contacts on a given recipient line, asking interactively +" if disambiguation is needed. +" E.g.: +" 'To: stefano zacchiroli, bram' +" -> 'To: Stefano Zacchiroli , Bram Moolenaar +function! LbdbExpandRcptLine(recpt_line) + if a:recpt_line =~ '^\w\+:' " line is the *beginning* of a RFC822 field + let raw = substitute(a:recpt_line, '^\w\+:\s*', '', '') + let recpt_kind = substitute(a:recpt_line, '^\(\w\+\):\s*.*$', '\1', '') + let exp_line = recpt_kind . ': ' . LbdbExpandContacts(raw) + elseif a:recpt_line =~ '^\s\+' " line is the *continuation* of a RFC822 field + let raw = substitute(a:recpt_line, '^\s\+', '', '') + let lpadding = substitute(a:recpt_line, '\S.*$', '', '') + let exp_line = lpadding . LbdbExpandContacts(raw) + else + return a:recpt_line + endif + if a:recpt_line =~ ',\s*$' + let exp_line .= ',' + endif + return exp_line +endfunction + +function! LbdbExpandCurLine() + call setline(line('.'), LbdbExpandRcptLine(getline('.'))) +endfunction + +function! LbdbExpandVisual() + if visualmode() ==# 'v' + normal gvy + let raw = getreg('"') + let expanded = '' + if raw =~ "," + let expanded = LbdbExpandContacts(raw) + else + let expanded = LbdbExpandContact(raw) + endif + call setreg('"', expanded) + normal gvP + elseif visualmode() ==# 'V' + call LbdbExpandCurLine() + end +endfunction + +nmap lb :call LbdbExpandCurLine() +vmap lb :call LbdbExpandVisual() +imap lb :call LbdbExpandCurLine()A + diff --git a/.vim/plugin/libList.vim b/.vim/plugin/libList.vim new file mode 120000 index 0000000..b9192da --- /dev/null +++ b/.vim/plugin/libList.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/libList.vim \ No newline at end of file diff --git a/.vim/plugin/remoteOpen.vim b/.vim/plugin/remoteOpen.vim new file mode 120000 index 0000000..3a06168 --- /dev/null +++ b/.vim/plugin/remoteOpen.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/remoteOpen.vim \ No newline at end of file diff --git a/.vim/plugin/utl.vim b/.vim/plugin/utl.vim new file mode 120000 index 0000000..5497273 --- /dev/null +++ b/.vim/plugin/utl.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/plugin/utl.vim \ No newline at end of file diff --git a/.vim/plugin/utl_arr.vim b/.vim/plugin/utl_arr.vim new file mode 120000 index 0000000..92303bc --- /dev/null +++ b/.vim/plugin/utl_arr.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/plugin/utl_arr.vim \ No newline at end of file diff --git a/.vim/plugin/utl_rc.vim b/.vim/plugin/utl_rc.vim new file mode 120000 index 0000000..cc57a4a --- /dev/null +++ b/.vim/plugin/utl_rc.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/plugin/utl_rc.vim \ No newline at end of file diff --git a/.vim/plugin/utl_scm.vim b/.vim/plugin/utl_scm.vim new file mode 120000 index 0000000..074421b --- /dev/null +++ b/.vim/plugin/utl_scm.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/plugin/utl_scm.vim \ No newline at end of file diff --git a/.vim/plugin/utl_uri.vim b/.vim/plugin/utl_uri.vim new file mode 120000 index 0000000..6f7fd97 --- /dev/null +++ b/.vim/plugin/utl_uri.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/plugin/utl_uri.vim \ No newline at end of file diff --git a/.vim/plugin/vimplate.vim b/.vim/plugin/vimplate.vim new file mode 120000 index 0000000..41a361d --- /dev/null +++ b/.vim/plugin/vimplate.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/plugin/vimplate.vim \ No newline at end of file diff --git a/.vim/syntax/git.vim b/.vim/syntax/git.vim new file mode 120000 index 0000000..72c5ea2 --- /dev/null +++ b/.vim/syntax/git.vim @@ -0,0 +1 @@ +/usr/share/vim-scripts/syntax/git.vim \ No newline at end of file diff --git a/.vim/syntax/tex.vim b/.vim/syntax/tex.vim new file mode 100644 index 0000000..72560a1 --- /dev/null +++ b/.vim/syntax/tex.vim @@ -0,0 +1,8 @@ +syntax match TexMySection "^\\section{.*}" +syntax match TexMySubSection "^\\subsection{.*}" +syntax match TexMySubSubSection "^\\subsubsection{.*}" +syntax match TexMyParagraph "^\\paragraph{.*}" +highlight TexMySection ctermbg=black ctermfg=white cterm=bold term=reverse +highlight TexMySubSection ctermbg=blue ctermfg=white cterm=bold term=reverse +highlight TexMySubSubSection ctermbg=cyan ctermfg=black cterm=bold term=reverse +highlight TexMyParagraph ctermbg=none ctermfg=blue cterm=bold term=reverse diff --git a/.vim/syntax/vo_base.vim b/.vim/syntax/vo_base.vim new file mode 120000 index 0000000..1c572e6 --- /dev/null +++ b/.vim/syntax/vo_base.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/syntax/vo_base.vim \ No newline at end of file diff --git a/.vim/vimplaterc b/.vim/vimplaterc new file mode 100644 index 0000000..0af8747 --- /dev/null +++ b/.vim/vimplaterc @@ -0,0 +1,30 @@ +# This is an example configuration. +# please see: http://napali.ch/vimplate + +# you can use $Config::opt instead command options: +# -user= -dir= +$Config::opt = { + dir => '/home/madduck/templates', + user => 'madduck', +}; + +# we need $Config::user with the option -user= +$Config::user = { + madduck => { + firstname => 'Martin', + lastname => 'Krafft', + mail => 'mail@martin-krafft.net', + etc => '...', + }, + otherUser => { + firstname => 'otherFirstname', + lastname => 'otherLastname', + mail => 'otherMail@example.org', + }, +}; + +# use $Config::var for your own variables or subroutines +$Config::var = { + yourArray => [ 'Perl', 'C', 'C++' ], + example => sub{ time }, +}; diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..4e56c98 --- /dev/null +++ b/.vimrc @@ -0,0 +1,1500 @@ +" vim: set ft=vim : +version 7.1 + +" obtained from the output of :options, then postprocessed: +" d2} +" :%s/^ *[[:digit:]]\+/""" +" qa +" ma +" wi\n +" /^\([^[:space:]"].*\)\?$/ +" k +" :'a,.s/^/" / +" /^[^[:space:]"] +" O +" :%s,\n\n\n",\r\r" + +""" important + +" compatible +" behave very Vi compatible (not advisable) +" set cp nocp +set nocp + +" cpoptions +" list of flags to specify Vi compatibility +" set cpo=aABceFs + +" insertmode +" use Insert mode as the default mode +" set noim im + +" paste +" paste mode, insert typed text literally +" set nopaste paste + +" pastetoggle +" key sequence to toggle paste mode +" set pt= +set pt= + +" runtimepath +" list of directories used for runtime files and plugins +" set rtp=/home/madduck/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim71,/usr/share/vim/vimfiles/after,/home/madduck/.vim/after +set rtp-=~/.vim +set rtp-=~/.vim/after +set rtp^=~/.etc/vim +set rtp+=~/.etc/vim/after + +" helpfile +" name of the main help file +" set hf=/usr/share/vim/vim71/doc/help.txt + +""" moving around, searching and patterns + +" whichwrap +" list of flags specifying which commands wrap to another line +" (local to window) +" set ww= +set ww=b,s,[,],~ + +" startofline +" many jump commands move the cursor to the first non-blank +" character of a line +" set sol nosol + +" paragraphs +" nroff macro names that separate paragraphs +" set para=IPLPPPQPP\ LIpplpipbp + +" sections +" nroff macro names that separate sections +" set sect=SHNHH\ HUnhsh + +" path +" list of directory names used for file searching +" (global or local to buffer) +" set pa=.,/usr/include,, + +" cdpath +" list of directory names used for :cd +" set cd=,, + +" wrapscan +" search commands wrap around the end of the buffer +" set ws nows +"set ws + +" incsearch +" show match for partly typed search command +" set nois is +set is + +" magic +" change the way backslashes are used in search patterns +" set magic nomagic + +" ignorecase +" ignore case when using a search pattern +" set noic ic +set ic + +" smartcase +" override 'ignorecase' when pattern has upper case characters +" set noscs scs +set scs + +" casemap +" What method to use for changing case of letters +" set cmp=internal,keepascii + +" maxmempattern +" maximum amount of memory in Kbyte used for pattern matching +" set mmp=1000 + +" define +" pattern for a macro definition line +" (global or local to buffer) +" set def=^\\s*#\\s*define + +" include +" pattern for an include-file line +" (local to buffer) +" set inc=^\\s*#\\s*include + +" includeexpr +" expression used to transform an include line to a file name +" (local to buffer) +" set inex= + +""" tags + +" tagbsearch +" use binary searching in tags files +" set tbs notbs + +" taglength +" number of significant characters in a tag name or zero +" set tl=0 + +" tags +" list of file names to search for tags +" (global or local to buffer) +" set tag=./tags,./TAGS,tags,TAGS + +" tagrelative +" file names in a tags file are relative to the tags file +" set notr tr + +" tagstack +" a :tag command will use the tagstack +" set tgst notgst + +" showfulltag +" when completing tags in Insert mode show more info +" set nosft sft + +" cscopeprg +" command for executing cscope +" set csprg=cscope + +" cscopetag +" use cscope for tag commands +" set nocst cst + +" cscopetagorder +" 0 or 1; the order in which ":cstag" performs a search +" set csto=0 + +" cscopeverbose +" give messages when adding a cscope database +" set nocsverb csverb + +" cscopepathcomp +" how many components of the path to show +" set cspc=0 + +" cscopequickfix +" When to open a quickfix window for cscope +" set csqf= + +""" displaying text + +" scroll +" number of lines to scroll for CTRL-U and CTRL-D +" (local to window) +" set scr=8 + +" scrolloff +" number of screen lines to show around the cursor +" set so=0 +set so=5 + +" wrap +" long lines wrap +" set wrap nowrap +set nowrap + +" linebreak +" wrap long lines at a character in 'breakat' +" (local to window) +" set nolbr lbr +set linebreak + +" breakat +" which characters might cause a line break +" set brk=\ \ !@*-+;:,./? + +" showbreak +" string to put before wrapped screen lines +" set sbr= + +" sidescroll +" minimal number of columns to scroll horizontally +" set ss=0 + +" sidescrolloff +" minimal number of columns to keep left and right of the cursor +" set siso=0 +set siso=0 + +" display +" include "lastline" to show the last line even if it doesn't fit +" include "uhex" to show unprintable characters as a hex number +" set dy= +set dy=lastline,uhex + +" fillchars +" characters to use for the status line, folds and filler lines +" set fcs=vert:\|,fold:- + +" cmdheight +" number of lines used for the command-line +" set ch=1 + +" columns +" width of the display +" set co=80 + +" lines +" number of lines in the display +" set lines=25 + +" lazyredraw +" don't redraw while executing macros +" set nolz lz +set lz + +" writedelay +" delay in msec for each char written to the display +" (for debugging) +" set wd=0 + +" list +" show as ^I and end-of-line as $ +" (local to window) +" set nolist list +set list + +" listchars +" list of strings used for list mode +" set lcs=eol:$ +set lcs=tab:⇝·,trail:· + +" number +" show the line number for each line +" (local to window) +" set nonu nu + +" numberwidth +" number of columns to use for the line number +" (local to window) +" set nuw=8 + +""" syntax, highlighting and spelling + +" background +" "dark" or "light"; the background color brightness +" set bg=light + +" filetype +" type of file; triggers the FileType event when set +" (local to buffer) +" set ft= + +" syntax +" name of syntax highlighting used +" (local to buffer) +" set syn= + +" synmaxcol +" maximum column to look for syntax items +" (local to buffer) +" set smc=3000 + +" highlight +" which highlighting to use for various occasions +" set hl=8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine + +" hlsearch +" highlight all matches for the last used search pattern +" set nohls hls +set hls + +" cursorcolumn +" highlight the screen column of the cursor +" (local to window) +" set nocuc cuc + +" cursorline +" highlight the screen line of the cursor +" (local to window) +" set nocul cul + +" spell +" highlight spelling mistakes +" (local to window) +" set nospell spell + +" spelllang +" list of accepted languages +" (local to buffer) +" set spl=en + +" spellfile +" file that "zg" adds good words to +" (local to buffer) +" set spf= + +" spellcapcheck +" pattern to locate the end of a sentence +" (local to buffer) +" set spc=[.?!]\\_[\\])'\"\ \ ]\\+ +set spc= + +" spellsuggest +" methods used to suggest corrections +" set sps=best + +" mkspellmem +" amount of memory used by :mkspell before compressing +" set msm=460000,2000,500 + +""" multiple windows + +" laststatus +" 0, 1 or 2; when to use a status line for the last window +" set ls=1 + +" statusline +" alternate format to be used for a status line +" set stl= + +" equalalways +" make all windows the same size when adding/removing windows +" set ea noea + +" eadirection +" in which direction 'equalalways' works: "ver", "hor" or "both" +" set ead=both + +" winheight +" minimal number of lines used for the current window +" set wh=1 + +" winminheight +" minimal number of lines used for any window +" set wmh=1 + +" winfixheight +" keep the height of the window +" (local to window) +" set nowfh wfh + +" winfixwidth +" keep the width of the window +" (local to window) +" set nowfw wfw + +" winwidth +" minimal number of columns used for the current window +" set wiw=20 + +" winminwidth +" minimal number of columns used for any window +" set wmw=1 + +" helpheight +" initial height of the help window +" set hh=20 + +" previewheight +" default height for the preview window +" set pvh=12 + +" previewwindow +" identifies the preview window +" (local to window) +" set nopvw pvw + +" hidden +" don't unload a buffer when no longer shown in a window +" set nohid hid + +" switchbuf +" "useopen" and/or "split"; which window to use when jumping +" to a buffer +" set swb= + +" splitbelow +" a new window is put below the current one +" set nosb sb + +" splitright +" a new window is put right of the current one +" set nospr spr + +" scrollbind +" this window scrolls together with other bound windows +" (local to window) +" set noscb scb + +" scrollopt +" "ver", "hor" and/or "jump"; list of options for 'scrollbind' +" set sbo=ver,jump + +""" multiple tab pages + +" showtabline +" 0, 1 or 2; when to use a tab pages line +" set stal=1 + +" tabpagemax +" maximum number of tab pages to open for -p and "tab all" +" set tpm=10 + +" tabline +" custom tab pages line +" set tal= + +""" terminal + +" term +" name of the used terminal +" set term=rxvt-unicode + +" ttytype +" alias for 'term' +" set tty=rxvt-unicode + +" ttybuiltin +" check built-in termcaps first +" set tbi notbi + +" ttyfast +" terminal connection is fast +" set tf notf + +" weirdinvert +" terminal that requires extra redrawing +" set nowiv wiv + +" esckeys +" recognize keys that start with in Insert mode +" set noek ek + +" scrolljump +" minimal number of lines to scroll at a time +" set sj=1 + +" ttyscroll +" maximum number of lines to use scrolling instead of redrawing +" set tsl=999 + +" title +" show info in the window title +" set notitle title +set notitle + +" titlelen +" percentage of 'columns' used for the window title +" set titlelen=85 + +" titlestring +" when not empty, string to be used for the window title +" set titlestring= + +" titleold +" string to restore the title to when exiting Vim +" set titleold=Thanks\ for\ flying\ Vim + +" icon +" set the text of the icon for this window +" set noicon icon + +" iconstring +" when not empty, text for the icon of this window +" set iconstring= + +""" using the mouse + +" mouse +" list of flags for using the mouse +" set mouse= + +" mousemodel +" "extend", "popup" or "popup_setpos"; what the right +" mouse button is used for +" set mousem=extend + +" mousetime +" maximum time in msec to recognize a double-click +" set mouset=500 + +" ttymouse +" "xterm", "xterm2", "dec" or "netterm"; type of mouse +" set ttym=xterm + +""" printing + +" printoptions +" list of items that control the format of :hardcopy output +" set popt= + +" printdevice +" name of the printer to be used for :hardcopy +" set pdev= + +" printexpr +" expression used to print the PostScript file for :hardcopy +" set pexpr=system('lpr'\ .\ (&printdevice\ ==\ ''\ ?\ ''\ :\ '\ -P'\ .\ &printdevice)\ .\ '\ '\ .\ v:fname_in)\ .\ delete(v:fname_in)\ +\ v:shell_error +set pexpr=system('lp'\ .\ (&printdevice\ ==\ ''\ ?\ ''\ :\ '\ -d'\ .\ &printdevice)\ .\ '\ '\ .\ v:fname_in)\ .\ delete(v:fname_in)\ +\ v:shell_error + +" printfont +" name of the font to be used for :hardcopy +" set pfn=courier + +" printheader +" format of the header used for :hardcopy +" set pheader=%<%f%h%m%=Page\ %N + +" printencoding +" encoding used to print the PostScript file for :hardcopy +" set penc= + +" printmbcharset +" the CJK character set to be used for CJK output from :hardcopy +" set pmbcs= + +" printmbfont +" list of font names to be used for CJK output from :hardcopy +" set pmbfn= + +""" messages and info + +" terse +" add 's' flag in 'shortmess' (don't show search message) +" set noterse terse + +" shortmess +" list of flags to make messages shorter +" set shm= +set shortmess=atTWoOI + +" showcmd +" show (partial) command keys in the status line +" set nosc sc + +" showmode +" display the current mode in the status line +" set nosmd smd + +" ruler +" show cursor position below each window +" set noru ru +set ruler + +" rulerformat +" alternate format to be used for the ruler +" set ruf=%20(%=%-14(%l,%c%V%)\ %P%) + +" report +" threshold for reporting number of changed lines +" set report=2 + +" verbose +" the higher the more messages are given +" set vbs=0 + +" verbosefile +" file to write messages in +" set vfile= + +" more +" pause listings when the screen is full +" set nomore more + +" confirm +" start a dialog when a command fails +" set nocf cf + +" errorbells +" ring the bell for error messages +" set noeb eb + +" visualbell +" use a visual bell instead of beeping +" set novb vb + +" helplang +" list of preferred languages for finding help +" set hlg=en + +""" selecting text + +" selection +" "old", "inclusive" or "exclusive"; how selecting text behaves +" set sel=inclusive + +" selectmode +" "mouse", "key" and/or "cmd"; when to start Select mode +" instead of Visual mode +" set slm= + +" keymodel +" "startsel" and/or "stopsel"; what special keys can do +" set km= + +""" editing text + +" undolevels +" maximum number of changes that can be undone +" set ul=1000 + +" modified +" changes have been made and not written to a file +" (local to buffer) +" set nomod mod + +" readonly +" buffer is not to be written +" (local to buffer) +" set noro ro + +" modifiable +" changes to the text are not possible +" (local to buffer) +" set ma noma + +" textwidth +" line length above which to break a line +" (local to buffer) +" set tw=0 +set tw=78 + +" wrapmargin +" margin from the right in which to break a line +" (local to buffer) +" set wm=0 + +" backspace +" specifies what , CTRL-W, etc. can do in Insert mode +" set bs= +set bs=indent,eol,start + +" comments +" definition of what comment lines look like +" (local to buffer) +" set com=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:- + +" formatoptions +" list of flags that tell how automatic formatting works +" (local to buffer) +" set fo=vt +set fo=tcroqn1l + +" formatlistpat +" pattern to recognize a numbered list +" (local to buffer) +" set flp=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s* + +" formatexpr +" expression used for "gq" to format lines +" (local to buffer) +" set fex= + +" complete +" specifies how Insert mode completion works for CTRL-N and CTRL-P +" (local to buffer) +" set cpt=.,w,b,u,t,i + +" completeopt +" whether to use a popup menu for Insert mode completion +" set cot=menu,preview + +" pumheight +" maximum height of the popup menu +" set ph=0 + +" completefunc +" user defined function for Insert mode completion +" (local to buffer) +" set cfu= + +" omnifunc +" function for filetype-specific Insert mode completion +" (local to buffer) +" set ofu= + +" dictionary +" list of dictionary files for keyword completion +" (global or local to buffer) +" set dict= + +" thesaurus +" list of thesaurus files for keyword completion +" (global or local to buffer) +" set tsr= + +" infercase +" adjust case of a keyword completion match +" (local to buffer) +" set noinf inf +set inf + +" digraph +" enable entering digraps with c1 c2 +" set nodg dg +"set dg + +" tildeop +" the "~" command behaves like an operator +" set notop top +"set tildeop + +" operatorfunc +" function called for the"g@" operator +" set opfunc= + +" showmatch +" When inserting a bracket, briefly jump to its match +" set nosm sm + +" matchtime +" tenth of a second to show a match for 'showmatch' +" set mat=5 + +" matchpairs +" list of pairs that match for the "%" command +" (local to buffer) +" set mps=(:),{:},[:] + +" joinspaces +" use two spaces after '.' when joining a line +" set js nojs +set nojs + +" nrformats +" "alpha", "octal" and/or "hex"; number formats recognized for +" CTRL-A and CTRL-X commands +" (local to buffer) +" set nf=octal,hex + +""" tabs and indenting + +" tabstop +" number of spaces a in the text stands for +" (local to buffer) +" set ts=8 +" +" You could set the 'tabstop' option to 2. However, if you edit the file +" another time, with 'tabstop' set to the default value of 8, it will look +" wrong. In other programs and when printing the indent will also be +" wrong. Therefore it is recommended to keep 'tabstop' at eight all the +" time. That's the standard value everywhere. +" +"set ts=2 + +" shiftwidth +" number of spaces used for each step of (auto)indent +" (local to buffer) +" set sw=8 +set sw=2 + +" smarttab +" a in an indent inserts 'shiftwidth' spaces +" set nosta sta +set sta + +" softtabstop +" if non-zero, number of spaces to insert for a +" (local to buffer) +" set sts=0 +set sts=2 + +" shiftround +" round to 'shiftwidth' for "<<" and ">>" +" set nosr sr +set sr + +" expandtab +" expand to spaces in Insert mode +" (local to buffer) +" set noet et +set et + +" autoindent +" automatically set the indent of a new line +" (local to buffer) +" set noai ai +set ai + +" smartindent +" do clever autoindenting +" (local to buffer) +" set nosi si + +" cindent +" enable specific indenting for C code +" (local to buffer) +" set nocin cin + +" cinoptions +" options for C-indenting +" (local to buffer) +" set cino= + +" cinkeys +" keys that trigger C-indenting in Insert mode +" (local to buffer) +" set cink=0{,0},0),:,0#,!^F,o,O,e + +" cinwords +" list of words that cause more C-indent +" (local to buffer) +" set cinw=if,else,while,do,for,switch + +" indentexpr +" expression used to obtain the indent of a line +" (local to buffer) +" set inde= + +" indentkeys +" keys that trigger indenting with 'indentexpr' in Insert mode +" (local to buffer) +" set indk=0{,0},:,0#,!^F,o,O,e + +" copyindent +" Copy whitespace for indenting from previous line +" (local to buffer) +" set noci ci +set ci + +" preserveindent +" Preserve kind of whitespace when changing indent +" (local to buffer) +" set nopi pi +set pi + +" lisp +" enable lisp mode +" (local to buffer) +" set nolisp lisp + +" lispwords +" words that change how lisp indenting works +" set lw=defun,define,defmacro,set!,lambda,if,case,let,flet,let*,letrec,do,do*,define-syntax,let-syntax,letrec-syntax,destructuring-bind,defpackage,defparameter,defstruct,deftype,defvar,do-all-symbols,do-external-symbols,do-symbols,dolist,dotimes,ecase,etypecase,eval-when,labels,macrolet,multiple-value-bind,multiple-value-call,multiple-value-prog1,multiple-value-setq,prog1,progv,typecase,unless,unwind-protect,when,with-input-from-string,with-open-file,with-open-stream,with-output-to-string,with-package-iterator,define-condition,handler-bind,handler-case,restart-bind,restart-case,with-simple-restart,store-value,use-value,muffle-warning,abort,continue,with-slots,with-slots*,with-accessors,with-accessors*,defclass,defmethod,print-unreadable-object + +""" folding + +" foldenable +" set to display all folds open +" (local to window) +" set fen nofen + +" foldlevel +" folds with a level higher than this number will be closed +" (local to window) +" set fdl=0 + +" foldlevelstart +" value for 'foldlevel' when starting to edit a file +" set fdls=-1 +set fdls=1 + +" foldcolumn +" width of the column used to indicate folds +" (local to window) +" set fdc=0 + +" foldtext +" expression used to display the text of a closed fold +" (local to window) +" set fdt=foldtext() + +" foldclose +" set to "all" to close a fold when the cursor leaves it +" set fcl= + +" foldopen +" specifies for which commands a fold will be opened +" set fdo=block,hor,mark,percent,quickfix,search,tag,undo + +" foldminlines +" minimum number of screen lines for a fold to be closed +" (local to window) +" set fml=1 + +" commentstring +" template for comments; used to put the marker in +" set cms=/*%s*/ + +" foldmethod +" folding type: "manual", "indent", "expr", "marker" or "syntax" +" (local to window) +" set fdm=manual + +" foldexpr +" expression used when 'foldmethod' is "expr" +" (local to window) +" set fde=0 + +" foldignore +" used to ignore lines when 'foldmethod' is "indent" +" (local to window) +" set fdi=# + +" foldmarker +" markers used when 'foldmethod' is "marker" +" (local to window) +" set fmr={{{,}}} + +" foldnestmax +" maximum fold depth for when 'foldmethod is "indent" or "syntax" +" (local to window) +" set fdn=20 + +""" diff mode + +" diff +" use diff mode for the current window +" (local to window) +" set nodiff diff + +" diffopt +" options for using diff mode +" set dip=filler + +" diffexpr +" expression used to obtain a diff file +" set dex= + +" patchexpr +" expression used to patch a file +" set pex= + +""" mapping + +" maxmapdepth +" maximum depth of mapping +" set mmd=1000 + +" remap +" recognize mappings in mapped keys +" set remap noremap + +" timeout +" allow timing out halfway into a mapping +" set to noto + +" ttimeout +" allow timing out halfway into a key code +" set nottimeout ttimeout + +" timeoutlen +" time in msec for 'timeout' +" set tm=1000 + +" ttimeoutlen +" time in msec for 'ttimeout' +" set ttm=-1 + +""" reading and writing files + +" modeline +" enable using settings from modelines when reading a file +" (local to buffer) +" set noml ml +set ml + +" modelines +" number of lines to check for modelines +" set mls=5 + +" binary +" binary file editing +" (local to buffer) +" set nobin bin + +" endofline +" last line in the file has an end-of-line +" (local to buffer) +" set eol noeol + +" bomb +" Prepend a Byte Order Mark to the file +" (local to buffer) +" set nobomb bomb + +" fileformat +" end-of-line format: "dos", "unix" or "mac" +" (local to buffer) +" set ff=unix + +" fileformats +" list of file formats to look for when editing a file +" set ffs= + +" textmode +" obsolete, use 'fileformat' +" (local to buffer) +" set notx tx + +" textauto +" obsolete, use 'fileformats' +" set nota ta + +" write +" writing files is allowed +" set write nowrite + +" writebackup +" write a backup file before overwriting a file +" set wb nowb + +" backup +" keep a backup after overwriting a file +" set nobk bk + +" backupskip +" patterns that specify for which files a backup is not made +" set bsk=/tmp/* + +" backupcopy +" whether to make the backup as a copy or rename the existing file +" set bkc=yes + +" backupdir +" list of directories to put backup files in +" set bdir=.,/home/madduck/tmp,/home/madduck/ + +" backupext +" file name extension for the backup file +" set bex=~ + +" autowrite +" automatically write a file when leaving a modified buffer +" set noaw aw +set aw + +" autowriteall +" as 'autowrite', but works with more commands +" set noawa awa +set awa + +" writeany +" always write without asking for confirmation +" set nowa wa + +" autoread +" automatically read a file when it was modified outside of Vim +" (global or local to buffer) +" set noar ar +set ar + +" patchmode +" keep oldest version of a file; specifies file name extension +" set pm= + +" fsync +" forcibly sync the file to disk after writing it +" set fs nofs + +" shortname +" use 8.3 file names +" (local to buffer) +" set nosn sn + +""" the swap file + +" directory +" list of directories for the swap file +" set dir=.,/home/madduck/tmp,/var/tmp,/tmp +set dir=.,~/tmp//,/var/tmp//,/tmp// + +" swapfile +" use a swap file for this buffer +" (local to buffer) +" set swf noswf + +" swapsync +" "sync", "fsync" or empty; how to flush a swap file to disk +" set sws=fsync + +" updatecount +" number of characters typed to cause a swap file update +" set uc=200 + +" updatetime +" time in msec after which the swap file will be updated +" set ut=4000 + +" maxmem +" maximum amount of memory in Kbyte used for one buffer +" set mm=1030480 + +" maxmemtot +" maximum amount of memory in Kbyte used for all buffers +" set mmt=1030480 + +""" command line editing + +" history +" how many command lines are remembered +" set hi=0 +set hi=100 + +" wildchar +" key that triggers command-line expansion +" set wc=5 + +" wildcharm +" like 'wildchar' but can also be used in a mapping +" set wcm=0 + +" wildmode +" specifies how command line completion works +" set wim=full +set wim=list + +" suffixes +" list of file name extensions that have a lower priority +" set su=.bak,~,.o,.h,.info,.swp,.obj + +" suffixesadd +" list of file name extensions added when searching for a file +" (local to buffer) +" set sua= + +" wildignore +" list of patterns to ignore files for file name completion +" set wig= +set wig=*.o,*.pyc,*.pyo,*~,*.bk,*.bak + +" wildmenu +" command-line completion shows a list of matches +" set nowmnu wmnu + +" cedit +" key used to open the command-line window +" set cedit= + +" cmdwinheight +" height of the command-line window +" set cwh=7 + +""" executing external commands + +" shell +" name of the shell program used for external commands +" set sh=/bin/zsh + +" shellquote +" character(s) to enclose a shell command in +" set shq= + +" shellxquote +" like 'shellquote' but include the redirection +" set sxq= + +" shellcmdflag +" argument for 'shell' to execute a command +" set shcf=-c + +" shellredir +" used to redirect command output to a file +" set srr=>%s\ 2>&1 + +" shelltemp +" use a temp file for shell commands instead of using a pipe +" set nostmp stmp + +" equalprg +" program used for "=" command +" (global or local to buffer) +" set ep= + +" formatprg +" program used to format lines with "gq" command +" set fp= + +" keywordprg +" program used for the "K" command +" set kp=man + +" warn +" warn when using a shell command and a buffer has changes +" set warn nowarn +set warn + +""" running make and jumping to errors + +" errorfile +" name of the file that contains error messages +" set ef=errors.err + +" errorformat +" list of formats for error messages +" (global or local to buffer) +" set efm=%*[^\"]\"%f\"%*\\D%l:\ %m,\"%f\"%*\\D%l:\ %m,%-G%f:%l:\ (Each\ undeclared\ identifier\ is\ reported\ only\ once,%-G%f:%l:\ for\ each\ function\ it\ appears\ in.),%f:%l:%c:%m,%f(%l):%m,%f:%l:%m,\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m,%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',%D%*\\a:\ Entering\ directory\ `%f',%X%*\\a:\ Leaving\ directory\ `%f',%DMaking\ %*\\a\ in\ %f,%f\|%l\|\ %m + +" makeprg +" program used for the ":make" command +" (global or local to buffer) +" set mp=make + +" shellpipe +" string used to put the output of ":make" in the error file +" set sp=2>&1\|\ tee + +" makeef +" name of the errorfile for the 'makeprg' command +" set mef= + +" grepprg +" program used for the ":grep" command +" (global or local to buffer) +" set gp=grep\ -n\ $*\ /dev/null + +" grepformat +" list of formats for output of 'grepprg' +" set gfm=%f:%l:%m,%f:%l%m,%f\ \ %l%m + +""" language specific + +" isfname +" specifies the characters in a file name +" set isf=@,48-57,/,.,-,_,+,,,#,$,%,~,= + +" isident +" specifies the characters in an identifier +" set isi=@,48-57,_,192-255 + +" iskeyword +" specifies the characters in a keyword +" (local to buffer) +" set isk=@,48-57,_ + +" isprint +" specifies printable characters +" set isp=@,161-255 + +" quoteescape +" specifies escape characters in a string +" (local to buffer) +" set qe=\\ + +" rightleft +" display the buffer right-to-left +" (local to window) +" set norl rl + +" rightleftcmd +" When to edit the command-line right-to-left +" (local to window) +" set rlc=search + +" revins +" Insert characters backwards +" set nori ri + +" allowrevins +" Allow CTRL-_ in Insert and Command-line mode to toggle 'revins' +" set noari ari + +" aleph +" the ASCII code for the first letter of the Hebrew alphabet +" set al=224 + +" hkmap +" use Hebrew keyboard mapping +" set nohk hk + +" hkmapp +" use phonetic Hebrew keyboard mapping +" set nohkp hkp + +" altkeymap +" use Farsi as the second language when 'revins' is set +" set noakm akm + +" fkmap +" use Farsi keyboard mapping +" set nofk fk + +" arabic +" Prepare for editing Arabic text +" (local to window) +" set noarab arab + +" arabicshape +" Perform shaping of Arabic characters +" set noarshape noarshape + +" termbidi +" Terminal will perform bidi handling +" set notbidi tbidi + +" keymap +" name of a keyboard mappping +" set kmp= + +" langmap +" translate characters for Normal mode +" set lmap= + +" iminsert +" in Insert mode: 1: use :lmap; 2: use IM; 0: neither +" (local to window) +" set imi=0 + +" imsearch +" entering a search pattern: 1: use :lmap; 2: use IM; 0: neither +" (local to window) +" set ims=0 + +""" multi-byte characters + +" encoding +" character encoding used in Vim: "latin1", "utf-8" +" "euc-jp", "big5", etc. +" set enc=utf-8 + +" fileencoding +" character encoding for the current file +" (local to buffer) +" set fenc=utf-8 + +" fileencodings +" automatically detected character encodings +" set fencs=ucs-bom,utf-8,default,latin1 + +" termencoding +" character encoding used by the terminal +" set tenc= + +" charconvert expression +" used for character encoding conversion +" set ccv= + +" delcombine +" Delete combining (composing) characters on their own +" set nodeco deco + +" maxcombine +" Maximum number of combining (composing) characters displayed +" set mco=2 + +" ambiwidth +" Width of ambiguous width characters +" set ambw=single + +""" various + +" virtualedit +" when to use virtual editing: "block", "insert" and/or "all" +" set ve= + +" eventignore +" list of autocommand events which are to be ignored +" set ei= + +" loadplugins +" load plugin scripts when starting up +" set nolpl lpl +set lpl + +" exrc +" enable reading .vimrc/.exrc/.gvimrc in the current directory +" set noex ex + +" secure +" safer working with script files in the current directory +" set nosecure secure +set secure + +" gdefault +" use the 'g' flag for ":substitute" +" set nogd gd + +" edcompatible +" 'g' and 'c' flags of ":substitute" toggle +" set noed ed + +" maxfuncdepth +" maximum depth of function calls +" set mfd=100 + +" sessionoptions +" list of words that specifies what to put in a session file +" set ssop=blank,buffers,curdir,folds,help,options,tabpages,winsize + +" viewoptions +" list of words that specifies what to save for :mkview +" set vop=folds,options,cursor + +" viewdir +" directory where to store files with :mkview +" set vdir=/home/madduck/.vim/view +set vdir=$VAR/vim/view + +" viminfo +" list that specifies what to write in the viminfo file +" set vi= +set vi='1000,f1,\"1000,:20,/20,%,!,h,n$VAR/vim/viminfo + +" bufhidden +" what happens with a buffer when it's no longer in a window +" (local to buffer) +" set bh= + +" buftype +" "", "nofile", "nowrite" or "quickfix": type of buffer +" (local to buffer) +" set bt= + +" buflisted +" whether the buffer shows up in the buffer list +" (local to buffer) +" set bl nobl + +" debug +" set to "msg" to see all error messages +" set debug= + +filetype plugin indent on +syntax on +colorscheme madduck + +autocmd BufNewFile,BufRead /etc/logcheck/*.d*/* set tw=0 +autocmd BufNewFile,BufRead /home/madduck/debian/pkg/logcheck/*/rulefiles/linux/*.d*/* set tw=0 + +" jump to last known position in file (:he last-position-jump) +autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"zz" | endif + +" disable list mode when inserting stuff, otherwise keep it enabled, it's +" useful +augroup listinsert + autocmd InsertEnter * set nolist + autocmd InsertLeave * set list +augroup end + +if &cp | set nocp | endif +let s:cpo_save=&cpo +set cpo&vim + +" treat wrapped lines normally +map k gk +map gk +map j gj +map gj + +" this isn't windows, screw the F1->help key +"map +"imap +"vmap + +" ignore Q -- Ex mode +map Q + +imap -- – +imap --- — +imap ... … + +iab sgf Sehr geehrte Frau +iab sgh Sehr geehrter Herr +iab lf Liebe Frau +iab lh Lieber Herr +iab sgdh Sehr geehrte Damen und Herren +iab twimc To Whom It May Concern +iab lg liebe Grüsse +iab Lg Liebe Grüsse +iab fg Freundliche Grüsse +iab mfg Mit freundlichen Grüssen +iab mbbg Mit bundesbrüderlichen Grüßen +iab mvbg Mit verbandsbrüderlichen Grüßen +iab vd Vielen Dank +iab vld Vielen lieben Dank + +let &cpo=s:cpo_save +unlet s:cpo_save