⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 texinfo.vim

📁 MSYS在windows下模拟了一个类unix的终端
💻 VIM
📖 第 1 页 / 共 2 页
字号:
" Vim syntax file" Language:	Texinfo (macro package for TeX)" Maintainer:	Sandor Kopanyi <sandor.kopanyi@mailbox.hu>" URL:		<->" Last Change:	2001 Apr 30"" the file follows the Texinfo manual structure; this file is based" on manual for Texinfo version 4.0, 28 September 1999" since @ can have special meanings, everything is 'match'-ed and 'region'-ed" (including @ in 'iskeyword' option has unexpected effects)" Remove any old syntax stuff hanging around, if neededif version < 600  syn clearelseif exists("b:current_syntax")  finishendifif !exists("main_syntax")  let main_syntax = 'texinfo'endif"in Texinfo can be real big things, like tables; sync for thatsyn sync lines=200"some general stuff"syn match texinfoError     "\S" contained TODOsyn match texinfoIdent	    "\k\+"		  contained "IDENTifiersyn match texinfoAssignment "\k\+\s*=\s*\k\+\s*$" contained "assigment statement ( var = val )syn match texinfoSinglePar  "\k\+\s*$"		  contained "single parameter (used for several @-commands)syn match texinfoIndexPar   "\k\k\s*$"		  contained "param. used for different *index commands (+ @documentlanguage command)"marking words and phrases (chap. 9 in Texinfo manual)"(almost) everything appears as 'contained' too; is for tables (@table)"this chapter is at the beginning of this file to avoid overwritingssyn match texinfoSpecialChar                                "@acronym"          containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@acronym{" end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@b"                containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@b{"       end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@cite"             containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@cite{"    end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@code"             containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@code{"    end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@command"          containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@command{" end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@dfn"              containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@dfn{"     end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@email"            containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@email{"   end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@emph"             containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@emph{"    end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@env"              containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@env{"     end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@file"             containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@file{"    end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@i"                containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@i{"       end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@kbd"              containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@kbd{"     end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@key"              containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@key{"     end="}" contains=texinfoSpecialCharsyn match texinfoSpecialChar                                "@option"           containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@option{"  end="}" contains=texinfoSpecialCharsyn match texinfoSpecialChar                                "@r"                containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@r{"       end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@samp"             containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@samp{"    end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@sc"               containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@sc{"      end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@strong"           containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@strong{"  end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@t"                containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@t{"       end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@url"              containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@url{"     end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoSpecialChar                                "@var"              containedsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@var{"     end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn match texinfoAtCmd "^@kbdinputstyle" nextgroup=texinfoSinglePar skipwhite"overview of Texinfo (chap. 1 in Texinfo manual)syn match texinfoComment  "@c .*"syn match texinfoComment  "@c$"syn match texinfoComment  "@comment .*"syn region texinfoMltlnAtCmd matchgroup=texinfoComment start="^@ignore\s*$" end="^@end ignore\s*$" contains=ALL"beginning a Texinfo file (chap. 3 in Texinfo manual)syn region texinfoPrmAtCmd     matchgroup=texinfoAtCmd start="@center "          skip="\\$" end="$"                    contains=texinfoSpecialChar,texinfoBrcPrmAtCmd onelinesyn region texinfoMltlnDMAtCmd matchgroup=texinfoAtCmd start="^@detailmenu\s*$"             end="^@end detailmenu\s*$" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn region texinfoPrmAtCmd     matchgroup=texinfoAtCmd start="^@setfilename "    skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd     matchgroup=texinfoAtCmd start="^@settitle "       skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd     matchgroup=texinfoAtCmd start="^@shorttitlepage " skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd     matchgroup=texinfoAtCmd start="^@title "          skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoBrcPrmAtCmd  matchgroup=texinfoAtCmd start="@titlefont{"                  end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn region texinfoMltlnAtCmd   matchgroup=texinfoAtCmd start="^@titlepage\s*$"              end="^@end titlepage\s*$" contains=texinfoSpecialChar,texinfoBrcPrmAtCmd,texinfoMltlnDMAtCmd,texinfoAtCmd,texinfoPrmAtCmd,texinfoMltlnAtCmdsyn region texinfoPrmAtCmd     matchgroup=texinfoAtCmd start="^@vskip "          skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn match texinfoAtCmd "^@exampleindent"     nextgroup=texinfoSinglePar skipwhitesyn match texinfoAtCmd "^@headings"          nextgroup=texinfoSinglePar skipwhitesyn match texinfoAtCmd "^\\input"            nextgroup=texinfoSinglePar skipwhitesyn match texinfoAtCmd "^@paragraphindent"   nextgroup=texinfoSinglePar skipwhitesyn match texinfoAtCmd "^@setchapternewpage" nextgroup=texinfoSinglePar skipwhite"ending a Texinfo file (chap. 4 in Texinfo manual)syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="@author " skip="\\$" end="$" contains=texinfoSpecialChar oneline"all below @bye should be comment TODOsyn match texinfoAtCmd "^@bye\s*$"syn match texinfoAtCmd "^@contents\s*$"syn match texinfoAtCmd "^@printindex" nextgroup=texinfoIndexPar skipwhitesyn match texinfoAtCmd "^@setcontentsaftertitlepage\s*$"syn match texinfoAtCmd "^@setshortcontentsaftertitlepage\s*$"syn match texinfoAtCmd "^@shortcontents\s*$"syn match texinfoAtCmd "^@summarycontents\s*$""chapter structuring (chap. 5 in Texinfo manual)syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@appendix"            skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@appendixsec"         skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@appendixsection"     skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@appendixsubsec"      skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@appendixsubsubsec"   skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@centerchap"          skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@chapheading"         skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@chapter"             skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@heading"             skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@majorheading"        skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@section"             skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@subheading "         skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@subsection"          skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@subsubheading"       skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@subsubsection"       skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@subtitle"            skip="\\$" end="$" contains=texinfoSpecialChar,texinfoBrcPrmAtCmd onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@unnumbered"          skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@unnumberedsec"       skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@unnumberedsubsec"    skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@unnumberedsubsubsec" skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn match  texinfoAtCmd "^@lowersections\s*$"syn match  texinfoAtCmd "^@raisesections\s*$""nodes (chap. 6 in Texinfo manual)syn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@anchor{"            end="}"syn region texinfoPrmAtCmd    matchgroup=texinfoAtCmd start="^@top"    skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd    matchgroup=texinfoAtCmd start="^@node"   skip="\\$" end="$" contains=texinfoSpecialChar oneline"menus (chap. 7 in Texinfo manual)syn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@menu\s*$" end="^@end menu\s*$" contains=texinfoSpecialChar,texinfoBrcPrmAtCmd,texinfoMltlnDMAtCmd"cross references (chap. 8 in Texinfo manual)syn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@inforef{" end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@pxref{"   end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@ref{"     end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@uref{"    end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmdsyn region texinfoBrcPrmAtCmd matchgroup=texinfoAtCmd start="@xref{"    end="}" contains=texinfoSpecialChar,texinfoBrcPrmAtCmd"marking words and phrases (chap. 9 in Texinfo manual)"(almost) everything appears as 'contained' too; is for tables (@table)"this chapter is at the beginning of this file to avoid overwritings"quotations and examples (chap. 10 in Texinfo manual)syn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@cartouche\s*$"        end="^@end cartouche\s*$"       contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@display\s*$"          end="^@end display\s*$"         contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@example\s*$"          end="^@end example\s*$"         contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@flushleft\s*$"        end="^@end flushleft\s*$"       contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@flushright\s*$"       end="^@end flushright\s*$"      contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@format\s*$"           end="^@end format\s*$"          contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@lisp\s*$"             end="^@end lisp\s*$"            contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@quotation\s*$"        end="^@end quotation\s*$"       contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@smalldisplay\s*$"     end="^@end smalldisplay\s*$"    contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@smallexample\s*$"     end="^@end smallexample\s*$"    contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@smallformat\s*$"      end="^@end smallformat\s*$"     contains=ALLsyn region texinfoMltlnAtCmd matchgroup=texinfoAtCmd start="^@smalllisp\s*$"        end="^@end smalllisp\s*$"       contains=ALLsyn region texinfoPrmAtCmd   matchgroup=texinfoAtCmd start="^@exdent"    skip="\\$" end="$"                         contains=texinfoSpecialChar onelinesyn match texinfoAtCmd "^@noindent\s*$"syn match texinfoAtCmd "^@smallbook\s*$""lists and tables (chap. 11 in Texinfo manual)syn match texinfoAtCmd "@asis"             containedsyn match texinfoAtCmd "@columnfractions"  containedsyn match texinfoAtCmd "@item"             containedsyn match texinfoAtCmd "@itemx"            containedsyn match texinfoAtCmd "@tab"              containedsyn region texinfoMltlnAtCmd  matchgroup=texinfoAtCmd start="^@enumerate"  end="^@end enumerate\s*$"  contains=ALLsyn region texinfoMltlnAtCmd  matchgroup=texinfoAtCmd start="^@ftable"     end="^@end ftable\s*$"     contains=ALLsyn region texinfoMltlnNAtCmd matchgroup=texinfoAtCmd start="^@itemize"    end="^@end itemize\s*$"    contains=ALLsyn region texinfoMltlnNAtCmd matchgroup=texinfoAtCmd start="^@multitable" end="^@end multitable\s*$" contains=ALLsyn region texinfoMltlnNAtCmd matchgroup=texinfoAtCmd start="^@table"      end="^@end table\s*$"      contains=ALLsyn region texinfoMltlnAtCmd  matchgroup=texinfoAtCmd start="^@vtable"     end="^@end vtable\s*$"     contains=ALL"indices (chap. 12 in Texinfo manual)syn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@\(c\|f\|k\|p\|t\|v\)index"   skip="\\$" end="$" contains=texinfoSpecialChar onelinesyn region texinfoPrmAtCmd matchgroup=texinfoAtCmd start="^@..index"                     skip="\\$" end="$" contains=texinfoSpecialChar oneline"@defcodeindex and @defindex is defined after chap. 15's @def* commands (otherwise those ones will overwrite these ones)syn match texinfoSIPar "\k\k\s*\k\k\s*$" contained

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -