syntax.txt 212 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484
  1. *syntax.txt* Nvim
  2. VIM REFERENCE MANUAL by Bram Moolenaar
  3. Syntax highlighting *syntax* *syntax-highlighting* *coloring*
  4. Syntax highlighting enables Vim to show parts of the text in another font or
  5. color. Those parts can be specific keywords or text matching a pattern. Vim
  6. doesn't parse the whole file (to keep it fast), so the highlighting has its
  7. limitations. Lexical highlighting might be a better name, but since everybody
  8. calls it syntax highlighting we'll stick with that.
  9. Vim supports syntax highlighting on all terminals. But since most ordinary
  10. terminals have very limited highlighting possibilities, it works best in the
  11. GUI version, gvim.
  12. In the User Manual:
  13. |usr_06.txt| introduces syntax highlighting.
  14. |usr_44.txt| introduces writing a syntax file.
  15. Type |gO| to see the table of contents.
  16. ==============================================================================
  17. 1. Quick start *:syn-qstart*
  18. *:syn-enable* *:syntax-enable* *:syn-on* *:syntax-on*
  19. This command switches on syntax highlighting: >
  20. :syntax enable
  21. Alternatively: >
  22. :syntax on
  23. What this command actually does is to execute the command >
  24. :source $VIMRUNTIME/syntax/syntax.vim
  25. If the VIM environment variable is not set, Vim will try to find
  26. the path in another way (see |$VIMRUNTIME|). Usually this works just
  27. fine. If it doesn't, try setting the VIM environment variable to the
  28. directory where the Vim stuff is located. For example, if your syntax files
  29. are in the "/usr/vim/vim82/syntax" directory, set $VIMRUNTIME to
  30. "/usr/vim/vim82". You must do this in the shell, before starting Vim.
  31. This command also sources the |menu.vim| script when the GUI is running or
  32. will start soon. See |'go-M'| about avoiding that.
  33. *:hi-normal* *:highlight-normal*
  34. If you are running in the GUI, you can get white text on a black background
  35. with: >
  36. :highlight Normal guibg=Black guifg=White
  37. For a color terminal see |:hi-normal-cterm|.
  38. NOTE: The syntax files on MS-Windows have lines that end in <CR><NL>.
  39. The files for Unix end in <NL>. This means you should use the right type of
  40. file for your system. Although on MS-Windows the right format is
  41. automatically selected if the 'fileformats' option is not empty.
  42. NOTE: When using reverse video ("gvim -fg white -bg black"), the default value
  43. of 'background' will not be set until the GUI window is opened, which is after
  44. reading the |gvimrc|. This will cause the wrong default highlighting to be
  45. used. To set the default value of 'background' before switching on
  46. highlighting, include the ":gui" command in the |gvimrc|: >
  47. :gui " open window and set default for 'background'
  48. :syntax on " start highlighting, use 'background' to set colors
  49. NOTE: Using ":gui" in the |gvimrc| means that "gvim -f" won't start in the
  50. foreground! Use ":gui -f" then.
  51. *g:syntax_on*
  52. You can toggle the syntax on/off with this command: >
  53. :if exists("g:syntax_on") | syntax off | else | syntax enable | endif
  54. To put this into a mapping, you can use: >
  55. :map <F7> :if exists("g:syntax_on") <Bar>
  56. \ syntax off <Bar>
  57. \ else <Bar>
  58. \ syntax enable <Bar>
  59. \ endif <CR>
  60. [using the |<>| notation, type this literally]
  61. Details:
  62. The ":syntax" commands are implemented by sourcing a file. To see exactly how
  63. this works, look in the file:
  64. command file ~
  65. :syntax enable $VIMRUNTIME/syntax/syntax.vim
  66. :syntax on $VIMRUNTIME/syntax/syntax.vim
  67. :syntax manual $VIMRUNTIME/syntax/manual.vim
  68. :syntax off $VIMRUNTIME/syntax/nosyntax.vim
  69. Also see |syntax-loading|.
  70. NOTE: If displaying long lines is slow and switching off syntax highlighting
  71. makes it fast, consider setting the 'synmaxcol' option to a lower value.
  72. ==============================================================================
  73. 2. Syntax files *:syn-files*
  74. The syntax and highlighting commands for one language are normally stored in
  75. a syntax file. The name convention is: "{name}.vim". Where {name} is the
  76. name of the language, or an abbreviation (to fit the name in 8.3 characters,
  77. a requirement in case the file is used on a DOS filesystem).
  78. Examples:
  79. c.vim perl.vim java.vim html.vim
  80. cpp.vim sh.vim csh.vim
  81. The syntax file can contain any Ex commands, just like a vimrc file. But
  82. the idea is that only commands for a specific language are included. When a
  83. language is a superset of another language, it may include the other one,
  84. for example, the cpp.vim file could include the c.vim file: >
  85. :so $VIMRUNTIME/syntax/c.vim
  86. The .vim files are normally loaded with an autocommand. For example: >
  87. :au Syntax c runtime! syntax/c.vim
  88. :au Syntax cpp runtime! syntax/cpp.vim
  89. These commands are normally in the file $VIMRUNTIME/syntax/synload.vim.
  90. MAKING YOUR OWN SYNTAX FILES *mysyntaxfile*
  91. When you create your own syntax files, and you want to have Vim use these
  92. automatically with ":syntax enable", do this:
  93. 1. Create your user runtime directory. You would normally use the first item
  94. of the 'runtimepath' option. Example for Unix: >
  95. mkdir ~/.config/nvim
  96. 2. Create a directory in there called "syntax". For Unix: >
  97. mkdir ~/.config/nvim/syntax
  98. 3. Write the Vim syntax file. Or download one from the internet. Then write
  99. it in your syntax directory. For example, for the "mine" syntax: >
  100. :w ~/.config/nvim/syntax/mine.vim
  101. Now you can start using your syntax file manually: >
  102. :set syntax=mine
  103. You don't have to exit Vim to use this.
  104. If you also want Vim to detect the type of file, see |new-filetype|.
  105. If you are setting up a system with many users and you don't want each user
  106. to add the same syntax file, you can use another directory from 'runtimepath'.
  107. ADDING TO AN EXISTING SYNTAX FILE *mysyntaxfile-add*
  108. If you are mostly satisfied with an existing syntax file, but would like to
  109. add a few items or change the highlighting, follow these steps:
  110. 1. Create your user directory from 'runtimepath', see above.
  111. 2. Create a directory in there called "after/syntax". For Unix: >
  112. mkdir ~/.config/nvim/after
  113. mkdir ~/.config/nvim/after/syntax
  114. 3. Write a Vim script that contains the commands you want to use. For
  115. example, to change the colors for the C syntax: >
  116. highlight cComment ctermfg=Green guifg=Green
  117. 4. Write that file in the "after/syntax" directory. Use the name of the
  118. syntax, with ".vim" added. For our C syntax: >
  119. :w ~/.config/nvim/after/syntax/c.vim
  120. That's it. The next time you edit a C file the Comment color will be
  121. different. You don't even have to restart Vim.
  122. If you have multiple files, you can use the filetype as the directory name.
  123. All the "*.vim" files in this directory will be used, for example:
  124. ~/.config/nvim/after/syntax/c/one.vim
  125. ~/.config/nvim/after/syntax/c/two.vim
  126. REPLACING AN EXISTING SYNTAX FILE *mysyntaxfile-replace*
  127. If you don't like a distributed syntax file, or you have downloaded a new
  128. version, follow the same steps as for |mysyntaxfile| above. Just make sure
  129. that you write the syntax file in a directory that is early in 'runtimepath'.
  130. Vim will only load the first syntax file found, assuming that it sets
  131. b:current_syntax.
  132. NAMING CONVENTIONS *group-name* *{group-name}* *E669* *W18*
  133. A syntax group name is to be used for syntax items that match the same kind of
  134. thing. These are then linked to a highlight group that specifies the color.
  135. A syntax group name doesn't specify any color or attributes itself.
  136. The name for a highlight or syntax group must consist of ASCII letters, digits
  137. and the underscore. As a regexp: "[a-zA-Z0-9_]*". However, Vim does not give
  138. an error when using other characters. The maxium length of a group name is
  139. about 200 bytes. *E1249*
  140. To be able to allow each user to pick their favorite set of colors, there must
  141. be preferred names for highlight groups that are common for many languages.
  142. These are the suggested group names (if syntax highlighting works properly
  143. you can see the actual color, except for "Ignore"):
  144. *Comment any comment
  145. *Constant any constant
  146. String a string constant: "this is a string"
  147. Character a character constant: 'c', '\n'
  148. Number a number constant: 234, 0xff
  149. Boolean a boolean constant: TRUE, false
  150. Float a floating point constant: 2.3e10
  151. *Identifier any variable name
  152. Function function name (also: methods for classes)
  153. *Statement any statement
  154. Conditional if, then, else, endif, switch, etc.
  155. Repeat for, do, while, etc.
  156. Label case, default, etc.
  157. Operator "sizeof", "+", "*", etc.
  158. Keyword any other keyword
  159. Exception try, catch, throw
  160. *PreProc generic Preprocessor
  161. Include preprocessor #include
  162. Define preprocessor #define
  163. Macro same as Define
  164. PreCondit preprocessor #if, #else, #endif, etc.
  165. *Type int, long, char, etc.
  166. StorageClass static, register, volatile, etc.
  167. Structure struct, union, enum, etc.
  168. Typedef A typedef
  169. *Special any special symbol
  170. SpecialChar special character in a constant
  171. Tag you can use CTRL-] on this
  172. Delimiter character that needs attention
  173. SpecialComment special things inside a comment
  174. Debug debugging statements
  175. *Underlined text that stands out, HTML links
  176. *Ignore left blank, hidden |hl-Ignore|
  177. *Error any erroneous construct
  178. *Todo anything that needs extra attention; mostly the
  179. keywords TODO FIXME and XXX
  180. The names marked with * are the preferred groups; the others are minor groups.
  181. For the preferred groups, the "syntax.vim" file contains default highlighting.
  182. The minor groups are linked to the preferred groups, so they get the same
  183. highlighting. You can override these defaults by using ":highlight" commands
  184. after sourcing the "syntax.vim" file.
  185. Note that highlight group names are not case sensitive. "String" and "string"
  186. can be used for the same group.
  187. The following names are reserved and cannot be used as a group name:
  188. NONE ALL ALLBUT contains contained
  189. *hl-Ignore*
  190. When using the Ignore group, you may also consider using the conceal
  191. mechanism. See |conceal|.
  192. ==============================================================================
  193. 3. Syntax loading procedure *syntax-loading*
  194. This explains the details that happen when the command ":syntax enable" is
  195. issued. When Vim initializes itself, it finds out where the runtime files are
  196. located. This is used here as the variable |$VIMRUNTIME|.
  197. ":syntax enable" and ":syntax on" do the following:
  198. Source $VIMRUNTIME/syntax/syntax.vim
  199. |
  200. +- Clear out any old syntax by sourcing $VIMRUNTIME/syntax/nosyntax.vim
  201. |
  202. +- Source first syntax/synload.vim in 'runtimepath'
  203. | |
  204. | +- Set up syntax autocmds to load the appropriate syntax file when
  205. | | the 'syntax' option is set. *synload-1*
  206. | |
  207. | +- Source the user's optional file, from the |mysyntaxfile| variable.
  208. | This is for backwards compatibility with Vim 5.x only. *synload-2*
  209. |
  210. +- Do ":filetype on", which does ":runtime! filetype.vim". It loads any
  211. | filetype.vim files found. It should always Source
  212. | $VIMRUNTIME/filetype.vim, which does the following.
  213. | |
  214. | +- Install autocmds based on suffix to set the 'filetype' option
  215. | | This is where the connection between file name and file type is
  216. | | made for known file types. *synload-3*
  217. | |
  218. | +- Source the user's optional file, from the *myfiletypefile*
  219. | | variable. This is for backwards compatibility with Vim 5.x only.
  220. | | *synload-4*
  221. | |
  222. | +- Install one autocommand which sources scripts.vim when no file
  223. | | type was detected yet. *synload-5*
  224. | |
  225. | +- Source $VIMRUNTIME/menu.vim, to setup the Syntax menu. |menu.vim|
  226. |
  227. +- Install a FileType autocommand to set the 'syntax' option when a file
  228. | type has been detected. *synload-6*
  229. |
  230. +- Execute syntax autocommands to start syntax highlighting for each
  231. already loaded buffer.
  232. Upon loading a file, Vim finds the relevant syntax file as follows:
  233. Loading the file triggers the BufReadPost autocommands.
  234. |
  235. +- If there is a match with one of the autocommands from |synload-3|
  236. | (known file types) or |synload-4| (user's file types), the 'filetype'
  237. | option is set to the file type.
  238. |
  239. +- The autocommand at |synload-5| is triggered. If the file type was not
  240. | found yet, then scripts.vim is searched for in 'runtimepath'. This
  241. | should always load $VIMRUNTIME/scripts.vim, which does the following.
  242. | |
  243. | +- Source the user's optional file, from the *myscriptsfile*
  244. | | variable. This is for backwards compatibility with Vim 5.x only.
  245. | |
  246. | +- If the file type is still unknown, check the contents of the file,
  247. | again with checks like "getline(1) =~ pattern" as to whether the
  248. | file type can be recognized, and set 'filetype'.
  249. |
  250. +- When the file type was determined and 'filetype' was set, this
  251. | triggers the FileType autocommand |synload-6| above. It sets
  252. | 'syntax' to the determined file type.
  253. |
  254. +- When the 'syntax' option was set above, this triggers an autocommand
  255. | from |synload-1| (and |synload-2|). This find the main syntax file in
  256. | 'runtimepath', with this command:
  257. | runtime! syntax/<name>.vim
  258. |
  259. +- Any other user installed FileType or Syntax autocommands are
  260. triggered. This can be used to change the highlighting for a specific
  261. syntax.
  262. ==============================================================================
  263. 4. Conversion to HTML *2html.vim* *convert-to-HTML*
  264. 2html is not a syntax file itself, but a script that converts the current
  265. window into HTML. Vim opens a new window in which it builds the HTML file.
  266. After you save the resulting file, you can view it with any browser. The
  267. colors should be exactly the same as you see them in Vim. With
  268. |g:html_line_ids| you can jump to specific lines by adding (for example) #L123
  269. or #123 to the end of the URL in your browser's address bar. And with
  270. |g:html_dynamic_folds| enabled, you can show or hide the text that is folded
  271. in Vim.
  272. You are not supposed to set the 'filetype' or 'syntax' option to "2html"!
  273. Source the script to convert the current file: >
  274. :runtime! syntax/2html.vim
  275. <
  276. Many variables affect the output of 2html.vim; see below. Any of the on/off
  277. options listed below can be enabled or disabled by setting them explicitly to
  278. the desired value, or restored to their default by removing the variable using
  279. |:unlet|.
  280. Remarks:
  281. - Some truly ancient browsers may not show the background colors.
  282. - From most browsers you can also print the file (in color)!
  283. Here is an example how to run the script over all .c and .h files from a
  284. Unix shell: >
  285. for f in *.[ch]; do gvim -f +"syn on" +"run! syntax/2html.vim" +"wq" +"q" $f; done
  286. <
  287. *g:html_start_line* *g:html_end_line*
  288. To restrict the conversion to a range of lines, use a range with the |:TOhtml|
  289. command below, or set "g:html_start_line" and "g:html_end_line" to the first
  290. and last line to be converted. Example, using the last set Visual area: >
  291. :let g:html_start_line = line("'<")
  292. :let g:html_end_line = line("'>")
  293. :runtime! syntax/2html.vim
  294. <
  295. *:TOhtml*
  296. :[range]TOhtml The ":TOhtml" command is defined in a standard plugin.
  297. This command will source |2html.vim| for you. When a
  298. range is given, this command sets |g:html_start_line|
  299. and |g:html_end_line| to the start and end of the
  300. range, respectively. Default range is the entire
  301. buffer.
  302. If the current window is part of a |diff|, unless
  303. |g:html_diff_one_file| is set, :TOhtml will convert
  304. all windows which are part of the diff in the current
  305. tab and place them side-by-side in a <table> element
  306. in the generated HTML. With |g:html_line_ids| you can
  307. jump to lines in specific windows with (for example)
  308. #W1L42 for line 42 in the first diffed window, or
  309. #W3L87 for line 87 in the third.
  310. Examples: >
  311. :10,40TOhtml " convert lines 10-40 to html
  312. :'<,'>TOhtml " convert current/last visual selection
  313. :TOhtml " convert entire buffer
  314. <
  315. *g:html_diff_one_file*
  316. Default: 0.
  317. When 0, and using |:TOhtml| all windows involved in a |diff| in the current tab
  318. page are converted to HTML and placed side-by-side in a <table> element. When
  319. 1, only the current buffer is converted.
  320. Example: >
  321. let g:html_diff_one_file = 1
  322. <
  323. *g:html_whole_filler*
  324. Default: 0.
  325. When 0, if |g:html_diff_one_file| is 1, a sequence of more than 3 filler lines
  326. is displayed as three lines with the middle line mentioning the total number
  327. of inserted lines.
  328. When 1, always display all inserted lines as if |g:html_diff_one_file| were
  329. not set.
  330. >
  331. :let g:html_whole_filler = 1
  332. <
  333. *TOhtml-performance* *g:html_no_progress*
  334. Default: 0.
  335. When 0, display a progress bar in the statusline for each major step in the
  336. 2html.vim conversion process.
  337. When 1, do not display the progress bar. This offers a minor speed improvement
  338. but you won't have any idea how much longer the conversion might take; for big
  339. files it can take a long time!
  340. Example: >
  341. let g:html_no_progress = 1
  342. <
  343. You can obtain better performance improvements by also instructing Vim to not
  344. run interactively, so that too much time is not taken to redraw as the script
  345. moves through the buffer, switches windows, and the like: >
  346. vim -E -s -c "let g:html_no_progress=1" -c "syntax on" -c "set ft=c" -c "runtime syntax/2html.vim" -cwqa myfile.c
  347. <
  348. Note that the -s flag prevents loading your vimrc and any plugins, so you
  349. need to explicitly source/enable anything that will affect the HTML
  350. conversion. See |-E| and |-s-ex| for details. It is probably best to create a
  351. script to replace all the -c commands and use it with the -u flag instead of
  352. specifying each command separately.
  353. *hl-TOhtmlProgress* *TOhtml-progress-color*
  354. When displayed, the progress bar will show colored boxes along the statusline
  355. as the HTML conversion proceeds. By default, the background color as the
  356. current "DiffDelete" highlight group is used. If "DiffDelete" and "StatusLine"
  357. have the same background color, TOhtml will automatically adjust the color to
  358. differ. If you do not like the automatically selected colors, you can define
  359. your own highlight colors for the progress bar. Example: >
  360. hi TOhtmlProgress guifg=#c0ffee ctermbg=7
  361. <
  362. *g:html_number_lines*
  363. Default: current 'number' setting.
  364. When 0, buffer text is displayed in the generated HTML without line numbering.
  365. When 1, a column of line numbers is added to the generated HTML with the same
  366. highlighting as the line number column in Vim (|hl-LineNr|).
  367. Force line numbers even if 'number' is not set: >
  368. :let g:html_number_lines = 1
  369. Force to omit the line numbers: >
  370. :let g:html_number_lines = 0
  371. Go back to the default to use 'number' by deleting the variable: >
  372. :unlet g:html_number_lines
  373. <
  374. *g:html_line_ids*
  375. Default: 1 if |g:html_number_lines| is set, 0 otherwise.
  376. When 1, adds an HTML id attribute to each line number, or to an empty <span>
  377. inserted for that purpose if no line numbers are shown. This ID attribute
  378. takes the form of L123 for single-buffer HTML pages, or W2L123 for diff-view
  379. pages, and is used to jump to a specific line (in a specific window of a diff
  380. view). Javascript is inserted to open any closed dynamic folds
  381. (|g:html_dynamic_folds|) containing the specified line before jumping. The
  382. javascript also allows omitting the window ID in the url, and the leading L.
  383. For example: >
  384. page.html#L123 jumps to line 123 in a single-buffer file
  385. page.html#123 does the same
  386. diff.html#W1L42 jumps to line 42 in the first window in a diff
  387. diff.html#42 does the same
  388. <
  389. *g:html_use_css*
  390. Default: 1.
  391. When 1, generate valid HTML 5 markup with CSS styling, supported in all modern
  392. browsers and many old browsers.
  393. When 0, generate <font> tags and similar outdated markup. This is not
  394. recommended but it may work better in really old browsers, email clients,
  395. forum posts, and similar situations where basic CSS support is unavailable.
  396. Example: >
  397. :let g:html_use_css = 0
  398. <
  399. *g:html_ignore_conceal*
  400. Default: 0.
  401. When 0, concealed text is removed from the HTML and replaced with a character
  402. from |:syn-cchar| or 'listchars' as appropriate, depending on the current
  403. value of 'conceallevel'.
  404. When 1, include all text from the buffer in the generated HTML, even if it is
  405. |conceal|ed.
  406. Either of the following commands will ensure that all text in the buffer is
  407. included in the generated HTML (unless it is folded): >
  408. :let g:html_ignore_conceal = 1
  409. :setl conceallevel=0
  410. <
  411. *g:html_ignore_folding*
  412. Default: 0.
  413. When 0, text in a closed fold is replaced by the text shown for the fold in
  414. Vim (|fold-foldtext|). See |g:html_dynamic_folds| if you also want to allow
  415. the user to expand the fold as in Vim to see the text inside.
  416. When 1, include all text from the buffer in the generated HTML; whether the
  417. text is in a fold has no impact at all. |g:html_dynamic_folds| has no effect.
  418. Either of these commands will ensure that all text in the buffer is included
  419. in the generated HTML (unless it is concealed): >
  420. zR
  421. :let g:html_ignore_folding = 1
  422. <
  423. *g:html_dynamic_folds*
  424. Default: 0.
  425. When 0, text in a closed fold is not included at all in the generated HTML.
  426. When 1, generate javascript to open a fold and show the text within, just like
  427. in Vim.
  428. Setting this variable to 1 causes 2html.vim to always use CSS for styling,
  429. regardless of what |g:html_use_css| is set to.
  430. This variable is ignored when |g:html_ignore_folding| is set.
  431. >
  432. :let g:html_dynamic_folds = 1
  433. <
  434. *g:html_no_foldcolumn*
  435. Default: 0.
  436. When 0, if |g:html_dynamic_folds| is 1, generate a column of text similar to
  437. Vim's foldcolumn (|fold-foldcolumn|) the user can click on to toggle folds
  438. open or closed. The minimum width of the generated text column is the current
  439. 'foldcolumn' setting.
  440. When 1, do not generate this column; instead, hovering the mouse cursor over
  441. folded text will open the fold as if |g:html_hover_unfold| were set.
  442. >
  443. :let g:html_no_foldcolumn = 1
  444. <
  445. *TOhtml-uncopyable-text* *g:html_prevent_copy*
  446. Default: empty string.
  447. This option prevents certain regions of the generated HTML from being copied,
  448. when you select all text in document rendered in a browser and copy it. Useful
  449. for allowing users to copy-paste only the source text even if a fold column or
  450. line numbers are shown in the generated content. Specify regions to be
  451. affected in this way as follows:
  452. f: fold column
  453. n: line numbers (also within fold text)
  454. t: fold text
  455. d: diff filler
  456. Example, to make the fold column and line numbers uncopyable: >
  457. :let g:html_prevent_copy = "fn"
  458. <
  459. The method used to prevent copying in the generated page depends on the value
  460. of |g:html_use_input_for_pc|.
  461. *g:html_use_input_for_pc*
  462. Default: "fallback"
  463. If |g:html_prevent_copy| is non-empty, then:
  464. When "all", read-only <input> elements are used in place of normal text for
  465. uncopyable regions. In some browsers, especially older browsers, after
  466. selecting an entire page and copying the selection, the <input> tags are not
  467. pasted with the page text. If |g:html_no_invalid| is 0, the <input> tags have
  468. invalid type; this works in more browsers, but the page will not validate.
  469. Note: this method does NOT work in recent versions of Chrome and equivalent
  470. browsers; the <input> tags get pasted with the text.
  471. When "fallback" (default value), the same <input> elements are generated for
  472. older browsers, but newer browsers (detected by CSS feature query) hide the
  473. <input> elements and instead use generated content in an ::before pseudoelement
  474. to display the uncopyable text. This method should work with the largest
  475. number of browsers, both old and new.
  476. When "none", the <input> elements are not generated at all. Only the
  477. generated-content method is used. This means that old browsers, notably
  478. Internet Explorer, will either copy the text intended not to be copyable, or
  479. the non-copyable text may not appear at all. However, this is the most
  480. standards-based method, and there will be much less markup.
  481. *g:html_no_invalid*
  482. Default: 0.
  483. When 0, if |g:html_prevent_copy| is non-empty and |g:html_use_input_for_pc| is
  484. not "none", an invalid attribute is intentionally inserted into the <input>
  485. element for the uncopyable areas. This prevents pasting the <input> elements
  486. in some applications. Specifically, some versions of Microsoft Word will not
  487. paste the <input> elements if they contain this invalid attribute. When 1, no
  488. invalid markup is inserted, and the generated page should validate. However,
  489. <input> elements may be pasted into some applications and can be difficult to
  490. remove afterward.
  491. *g:html_hover_unfold*
  492. Default: 0.
  493. When 0, the only way to open a fold generated by 2html.vim with
  494. |g:html_dynamic_folds| set, is to click on the generated fold column.
  495. When 1, use CSS 2.0 to allow the user to open a fold by moving the mouse
  496. cursor over the displayed fold text. This is useful to allow users with
  497. disabled javascript to view the folded text.
  498. Note that old browsers (notably Internet Explorer 6) will not support this
  499. feature. Browser-specific markup for IE6 is included to fall back to the
  500. normal CSS1 styling so that the folds show up correctly for this browser, but
  501. they will not be openable without a foldcolumn.
  502. >
  503. :let g:html_hover_unfold = 1
  504. <
  505. *g:html_id_expr*
  506. Default: ""
  507. Dynamic folding and jumping to line IDs rely on unique IDs within the document
  508. to work. If generated HTML is copied into a larger document, these IDs are no
  509. longer guaranteed to be unique. Set g:html_id_expr to an expression Vim can
  510. evaluate to get a unique string to append to each ID used in a given document,
  511. so that the full IDs will be unique even when combined with other content in a
  512. larger HTML document. Example, to append _ and the buffer number to each ID: >
  513. :let g:html_id_expr = '"_" .. bufnr("%")'
  514. <
  515. To append a string "_mystring" to the end of each ID: >
  516. :let g:html_id_expr = '"_mystring"'
  517. <
  518. Note, when converting a diff view to HTML, the expression will only be
  519. evaluated for the first window in the diff, and the result used for all the
  520. windows.
  521. *TOhtml-wrap-text* *g:html_pre_wrap*
  522. Default: current 'wrap' setting.
  523. When 0, if |g:html_no_pre| is 0 or unset, the text in the generated HTML does
  524. not wrap at the edge of the browser window.
  525. When 1, if |g:html_use_css| is 1, the CSS 2.0 "white-space:pre-wrap" value is
  526. used, causing the text to wrap at whitespace at the edge of the browser
  527. window.
  528. Explicitly enable text wrapping: >
  529. :let g:html_pre_wrap = 1
  530. Explicitly disable wrapping: >
  531. :let g:html_pre_wrap = 0
  532. Go back to default, determine wrapping from 'wrap' setting: >
  533. :unlet g:html_pre_wrap
  534. <
  535. *g:html_no_pre*
  536. Default: 0.
  537. When 0, buffer text in the generated HTML is surrounded by <pre>...</pre>
  538. tags. Series of whitespace is shown as in Vim without special markup, and tab
  539. characters can be included literally (see |g:html_expand_tabs|).
  540. When 1 (not recommended), the <pre> tags are omitted, and a plain <div> is
  541. used instead. Whitespace is replaced by a series of &nbsp; character
  542. references, and <br> is used to end each line. This is another way to allow
  543. text in the generated HTML is wrap (see |g:html_pre_wrap|) which also works in
  544. old browsers, but may cause noticeable differences between Vim's display and
  545. the rendered page generated by 2html.vim.
  546. >
  547. :let g:html_no_pre = 1
  548. <
  549. *g:html_expand_tabs*
  550. Default: 0 if 'tabstop' is 8, 'expandtab' is 0, 'vartabstop' is not in use,
  551. and no fold column or line numbers occur in the generated HTML;
  552. 1 otherwise.
  553. When 1, <Tab> characters in the buffer text are replaced with an appropriate
  554. number of space characters, or &nbsp; references if |g:html_no_pre| is 1.
  555. When 0, if |g:html_no_pre| is 0 or unset, <Tab> characters in the buffer text
  556. are included as-is in the generated HTML. This is useful for when you want to
  557. allow copy and paste from a browser without losing the actual whitespace in
  558. the source document. Note that this can easily break text alignment and
  559. indentation in the HTML, unless set by default.
  560. Force |2html.vim| to keep <Tab> characters: >
  561. :let g:html_expand_tabs = 0
  562. <
  563. Force tabs to be expanded: >
  564. :let g:html_expand_tabs = 1
  565. <
  566. *TOhtml-encoding-detect* *TOhtml-encoding*
  567. It is highly recommended to set your desired encoding with
  568. |g:html_use_encoding| for any content which will be placed on a web server.
  569. If you do not specify an encoding, |2html.vim| uses the preferred IANA name
  570. for the current value of 'fileencoding' if set, or 'encoding' if not.
  571. 'encoding' is always used for certain 'buftype' values. 'fileencoding' will be
  572. set to match the chosen document encoding.
  573. Automatic detection works for the encodings mentioned specifically by name in
  574. |encoding-names|, but TOhtml will only automatically use those encodings with
  575. wide browser support. However, you can override this to support specific
  576. encodings that may not be automatically detected by default (see options
  577. below). See http://www.iana.org/assignments/character-sets for the IANA names.
  578. Note, by default all Unicode encodings are converted to UTF-8 with no BOM in
  579. the generated HTML, as recommended by W3C:
  580. http://www.w3.org/International/questions/qa-choosing-encodings
  581. http://www.w3.org/International/questions/qa-byte-order-mark
  582. *g:html_use_encoding*
  583. Default: none, uses IANA name for current 'fileencoding' as above.
  584. To overrule all automatic charset detection, set g:html_use_encoding to the
  585. name of the charset to be used. It is recommended to set this variable to
  586. something widely supported, like UTF-8, for anything you will be hosting on a
  587. webserver: >
  588. :let g:html_use_encoding = "UTF-8"
  589. You can also use this option to omit the line that specifies the charset
  590. entirely, by setting g:html_use_encoding to an empty string (NOT recommended): >
  591. :let g:html_use_encoding = ""
  592. To go back to the automatic mechanism, delete the |g:html_use_encoding|
  593. variable: >
  594. :unlet g:html_use_encoding
  595. <
  596. *g:html_encoding_override*
  597. Default: none, autoload/tohtml.vim contains default conversions for encodings
  598. mentioned by name at |encoding-names|.
  599. This option allows |2html.vim| to detect the correct 'fileencoding' when you
  600. specify an encoding with |g:html_use_encoding| which is not in the default
  601. list of conversions.
  602. This is a dictionary of charset-encoding pairs that will replace existing
  603. pairs automatically detected by TOhtml, or supplement with new pairs.
  604. Detect the HTML charset "windows-1252" as the encoding "8bit-cp1252": >
  605. :let g:html_encoding_override = {'windows-1252': '8bit-cp1252'}
  606. <
  607. *g:html_charset_override*
  608. Default: none, autoload/tohtml.vim contains default conversions for encodings
  609. mentioned by name at |encoding-names| and which have wide
  610. browser support.
  611. This option allows |2html.vim| to detect the HTML charset for any
  612. 'fileencoding' or 'encoding' which is not detected automatically. You can also
  613. use it to override specific existing encoding-charset pairs. For example,
  614. TOhtml will by default use UTF-8 for all Unicode/UCS encodings. To use UTF-16
  615. and UTF-32 instead, use: >
  616. :let g:html_charset_override = {'ucs-4': 'UTF-32', 'utf-16': 'UTF-16'}
  617. Note that documents encoded in either UTF-32 or UTF-16 have known
  618. compatibility problems with some major browsers.
  619. *g:html_font*
  620. Default: "monospace"
  621. You can specify the font or fonts used in the converted document using
  622. g:html_font. If this option is set to a string, then the value will be
  623. surrounded with single quotes. If this option is set to a list then each list
  624. item is surrounded by single quotes and the list is joined with commas. Either
  625. way, "monospace" is added as the fallback generic family name and the entire
  626. result used as the font family (using CSS) or font face (if not using CSS).
  627. Examples: >
  628. " font-family: 'Consolas', monospace;
  629. :let g:html_font = "Consolas"
  630. " font-family: 'DejaVu Sans Mono', 'Consolas', monospace;
  631. :let g:html_font = ["DejaVu Sans Mono", "Consolas"]
  632. <
  633. *convert-to-XML* *convert-to-XHTML* *g:html_use_xhtml*
  634. Default: 0.
  635. When 0, generate standard HTML 4.01 (strict when possible).
  636. When 1, generate XHTML 1.0 instead (XML compliant HTML).
  637. >
  638. :let g:html_use_xhtml = 1
  639. <
  640. ==============================================================================
  641. 5. Syntax file remarks *:syn-file-remarks*
  642. *b:current_syntax-variable*
  643. Vim stores the name of the syntax that has been loaded in the
  644. "b:current_syntax" variable. You can use this if you want to load other
  645. settings, depending on which syntax is active. Example: >
  646. :au BufReadPost * if b:current_syntax == "csh"
  647. :au BufReadPost * do-some-things
  648. :au BufReadPost * endif
  649. ABEL *abel.vim* *ft-abel-syntax*
  650. ABEL highlighting provides some user-defined options. To enable them, assign
  651. any value to the respective variable. Example: >
  652. :let abel_obsolete_ok=1
  653. To disable them use ":unlet". Example: >
  654. :unlet abel_obsolete_ok
  655. Variable Highlight ~
  656. abel_obsolete_ok obsolete keywords are statements, not errors
  657. abel_cpp_comments_illegal do not interpret '//' as inline comment leader
  658. ADA
  659. See |ft-ada-syntax|
  660. ANT *ant.vim* *ft-ant-syntax*
  661. The ant syntax file provides syntax highlighting for javascript and python
  662. by default. Syntax highlighting for other script languages can be installed
  663. by the function AntSyntaxScript(), which takes the tag name as first argument
  664. and the script syntax file name as second argument. Example: >
  665. :call AntSyntaxScript('perl', 'perl.vim')
  666. will install syntax perl highlighting for the following ant code >
  667. <script language = 'perl'><![CDATA[
  668. # everything inside is highlighted as perl
  669. ]]></script>
  670. See |mysyntaxfile-add| for installing script languages permanently.
  671. APACHE *apache.vim* *ft-apache-syntax*
  672. The apache syntax file provides syntax highlighting for Apache HTTP server
  673. version 2.2.3.
  674. *asm.vim* *asmh8300.vim* *nasm.vim* *masm.vim* *asm68k*
  675. ASSEMBLY *ft-asm-syntax* *ft-asmh8300-syntax* *ft-nasm-syntax*
  676. *ft-masm-syntax* *ft-asm68k-syntax* *fasm.vim*
  677. Files matching "*.i" could be Progress or Assembly. If the automatic detection
  678. doesn't work for you, or you don't edit Progress at all, use this in your
  679. startup vimrc: >
  680. :let filetype_i = "asm"
  681. Replace "asm" with the type of assembly you use.
  682. There are many types of assembly languages that all use the same file name
  683. extensions. Therefore you will have to select the type yourself, or add a
  684. line in the assembly file that Vim will recognize. Currently these syntax
  685. files are included:
  686. asm GNU assembly (the default)
  687. asm68k Motorola 680x0 assembly
  688. asmh8300 Hitachi H-8300 version of GNU assembly
  689. ia64 Intel Itanium 64
  690. fasm Flat assembly (http://flatassembler.net)
  691. masm Microsoft assembly (probably works for any 80x86)
  692. nasm Netwide assembly
  693. tasm Turbo Assembly (with opcodes 80x86 up to Pentium, and
  694. MMX)
  695. pic PIC assembly (currently for PIC16F84)
  696. The most flexible is to add a line in your assembly file containing: >
  697. asmsyntax=nasm
  698. Replace "nasm" with the name of the real assembly syntax. This line must be
  699. one of the first five lines in the file. No non-white text must be
  700. immediately before or after this text. Note that specifying asmsyntax=foo is
  701. equivalent to setting ft=foo in a |modeline|, and that in case of a conflict
  702. between the two settings the one from the modeline will take precedence (in
  703. particular, if you have ft=asm in the modeline, you will get the GNU syntax
  704. highlighting regardless of what is specified as asmsyntax).
  705. The syntax type can always be overruled for a specific buffer by setting the
  706. b:asmsyntax variable: >
  707. :let b:asmsyntax = "nasm"
  708. If b:asmsyntax is not set, either automatically or by hand, then the value of
  709. the global variable asmsyntax is used. This can be seen as a default assembly
  710. language: >
  711. :let asmsyntax = "nasm"
  712. As a last resort, if nothing is defined, the "asm" syntax is used.
  713. Netwide assembler (nasm.vim) optional highlighting ~
  714. To enable a feature: >
  715. :let {variable}=1|set syntax=nasm
  716. To disable a feature: >
  717. :unlet {variable} |set syntax=nasm
  718. Variable Highlight ~
  719. nasm_loose_syntax unofficial parser allowed syntax not as Error
  720. (parser dependent; not recommended)
  721. nasm_ctx_outside_macro contexts outside macro not as Error
  722. nasm_no_warn potentially risky syntax not as ToDo
  723. ASPPERL and ASPVBS *ft-aspperl-syntax* *ft-aspvbs-syntax*
  724. *.asp and *.asa files could be either Perl or Visual Basic script. Since it's
  725. hard to detect this you can set two global variables to tell Vim what you are
  726. using. For Perl script use: >
  727. :let g:filetype_asa = "aspperl"
  728. :let g:filetype_asp = "aspperl"
  729. For Visual Basic use: >
  730. :let g:filetype_asa = "aspvbs"
  731. :let g:filetype_asp = "aspvbs"
  732. BAAN *baan.vim* *baan-syntax*
  733. The baan.vim gives syntax support for BaanC of release BaanIV up to SSA ERP LN
  734. for both 3 GL and 4 GL programming. Large number of standard defines/constants
  735. are supported.
  736. Some special violation of coding standards will be signalled when one specify
  737. in ones |init.vim|: >
  738. let baan_code_stds=1
  739. *baan-folding*
  740. Syntax folding can be enabled at various levels through the variables
  741. mentioned below (Set those in your |init.vim|). The more complex folding on
  742. source blocks and SQL can be CPU intensive.
  743. To allow any folding and enable folding at function level use: >
  744. let baan_fold=1
  745. Folding can be enabled at source block level as if, while, for ,... The
  746. indentation preceding the begin/end keywords has to match (spaces are not
  747. considered equal to a tab). >
  748. let baan_fold_block=1
  749. Folding can be enabled for embedded SQL blocks as SELECT, SELECTDO,
  750. SELECTEMPTY, ... The indentation preceding the begin/end keywords has to
  751. match (spaces are not considered equal to a tab). >
  752. let baan_fold_sql=1
  753. Note: Block folding can result in many small folds. It is suggested to |:set|
  754. the options 'foldminlines' and 'foldnestmax' in |init.vim| or use |:setlocal|
  755. in .../after/syntax/baan.vim (see |after-directory|). Eg: >
  756. set foldminlines=5
  757. set foldnestmax=6
  758. BASIC *basic.vim* *vb.vim* *ft-basic-syntax* *ft-vb-syntax*
  759. Both Visual Basic and "normal" BASIC use the extension ".bas". To detect
  760. which one should be used, Vim checks for the string "VB_Name" in the first
  761. five lines of the file. If it is not found, filetype will be "basic",
  762. otherwise "vb". Files with the ".frm" extension will always be seen as Visual
  763. Basic.
  764. If the automatic detection doesn't work for you or you only edit, for
  765. example, FreeBASIC files, use this in your startup vimrc: >
  766. :let filetype_bas = "freebasic"
  767. C *c.vim* *ft-c-syntax*
  768. A few things in C highlighting are optional. To enable them assign any value
  769. (including zero) to the respective variable. Example: >
  770. :let c_comment_strings = 1
  771. :let c_no_bracket_error = 0
  772. To disable them use `:unlet`. Example: >
  773. :unlet c_comment_strings
  774. Setting the value to zero doesn't work!
  775. An alternative is to switch to the C++ highlighting: >
  776. :set filetype=cpp
  777. Variable Highlight ~
  778. *c_gnu* GNU gcc specific items
  779. *c_comment_strings* strings and numbers inside a comment
  780. *c_space_errors* trailing white space and spaces before a <Tab>
  781. *c_no_trail_space_error* ... but no trailing spaces
  782. *c_no_tab_space_error* ... but no spaces before a <Tab>
  783. *c_no_bracket_error* don't highlight {}; inside [] as errors
  784. *c_no_curly_error* don't highlight {}; inside [] and () as errors;
  785. except { and } in first column
  786. Default is to highlight them, otherwise you
  787. can't spot a missing ")".
  788. *c_curly_error* highlight a missing } by finding all pairs; this
  789. forces syncing from the start of the file, can be slow
  790. *c_no_ansi* don't do standard ANSI types and constants
  791. *c_ansi_typedefs* ... but do standard ANSI types
  792. *c_ansi_constants* ... but do standard ANSI constants
  793. *c_no_utf* don't highlight \u and \U in strings
  794. *c_syntax_for_h* for *.h files use C syntax instead of C++ and use objc
  795. syntax instead of objcpp
  796. *c_no_if0* don't highlight "#if 0" blocks as comments
  797. *c_no_cformat* don't highlight %-formats in strings
  798. *c_no_c99* don't highlight C99 standard items
  799. *c_no_c11* don't highlight C11 standard items
  800. *c_no_bsd* don't highlight BSD specific types
  801. When 'foldmethod' is set to "syntax" then /* */ comments and { } blocks will
  802. become a fold. If you don't want comments to become a fold use: >
  803. :let c_no_comment_fold = 1
  804. "#if 0" blocks are also folded, unless: >
  805. :let c_no_if0_fold = 1
  806. If you notice highlighting errors while scrolling backwards, which are fixed
  807. when redrawing with CTRL-L, try setting the "c_minlines" internal variable
  808. to a larger number: >
  809. :let c_minlines = 100
  810. This will make the syntax synchronization start 100 lines before the first
  811. displayed line. The default value is 50 (15 when c_no_if0 is set). The
  812. disadvantage of using a larger number is that redrawing can become slow.
  813. When using the "#if 0" / "#endif" comment highlighting, notice that this only
  814. works when the "#if 0" is within "c_minlines" from the top of the window. If
  815. you have a long "#if 0" construct it will not be highlighted correctly.
  816. To match extra items in comments, use the cCommentGroup cluster.
  817. Example: >
  818. :au Syntax c call MyCadd()
  819. :function MyCadd()
  820. : syn keyword cMyItem contained Ni
  821. : syn cluster cCommentGroup add=cMyItem
  822. : hi link cMyItem Title
  823. :endfun
  824. ANSI constants will be highlighted with the "cConstant" group. This includes
  825. "NULL", "SIG_IGN" and others. But not "TRUE", for example, because this is
  826. not in the ANSI standard. If you find this confusing, remove the cConstant
  827. highlighting: >
  828. :hi link cConstant NONE
  829. If you see '{' and '}' highlighted as an error where they are OK, reset the
  830. highlighting for cErrInParen and cErrInBracket.
  831. If you want to use folding in your C files, you can add these lines in a file
  832. in the "after" directory in 'runtimepath'. For Unix this would be
  833. ~/.config/nvim/after/syntax/c.vim. >
  834. syn sync fromstart
  835. set foldmethod=syntax
  836. CH *ch.vim* *ft-ch-syntax*
  837. C/C++ interpreter. Ch has similar syntax highlighting to C and builds upon
  838. the C syntax file. See |c.vim| for all the settings that are available for C.
  839. By setting a variable you can tell Vim to use Ch syntax for *.h files, instead
  840. of C or C++: >
  841. :let ch_syntax_for_h = 1
  842. CHILL *chill.vim* *ft-chill-syntax*
  843. Chill syntax highlighting is similar to C. See |c.vim| for all the settings
  844. that are available. Additionally there is:
  845. chill_space_errors like c_space_errors
  846. chill_comment_string like c_comment_strings
  847. chill_minlines like c_minlines
  848. CHANGELOG *changelog.vim* *ft-changelog-syntax*
  849. ChangeLog supports highlighting spaces at the start of a line.
  850. If you do not like this, add following line to your vimrc: >
  851. let g:changelog_spacing_errors = 0
  852. This works the next time you edit a changelog file. You can also use
  853. "b:changelog_spacing_errors" to set this per buffer (before loading the syntax
  854. file).
  855. You can change the highlighting used, e.g., to flag the spaces as an error: >
  856. :hi link ChangelogError Error
  857. Or to avoid the highlighting: >
  858. :hi link ChangelogError NONE
  859. This works immediately.
  860. CLOJURE *ft-clojure-syntax*
  861. *g:clojure_syntax_keywords*
  862. Syntax highlighting of public vars in "clojure.core" is provided by default,
  863. but additional symbols can be highlighted by adding them to the
  864. |g:clojure_syntax_keywords| variable. The value should be a |Dictionary| of
  865. syntax group names, each containing a |List| of identifiers.
  866. >
  867. let g:clojure_syntax_keywords = {
  868. \ 'clojureMacro': ["defproject", "defcustom"],
  869. \ 'clojureFunc': ["string/join", "string/replace"]
  870. \ }
  871. <
  872. Refer to the Clojure syntax script for valid syntax group names.
  873. There is also *b:clojure_syntax_keywords* which is a buffer-local variant of
  874. this variable intended for use by plugin authors to highlight symbols
  875. dynamically.
  876. By setting the *b:clojure_syntax_without_core_keywords* variable, vars from
  877. "clojure.core" will not be highlighted by default. This is useful for
  878. namespaces that have set `(:refer-clojure :only [])`
  879. *g:clojure_fold*
  880. Setting |g:clojure_fold| to `1` will enable the folding of Clojure code. Any
  881. list, vector or map that extends over more than one line can be folded using
  882. the standard Vim |fold-commands|.
  883. *g:clojure_discard_macro*
  884. Set this variable to `1` to enable basic highlighting of Clojure's "discard
  885. reader macro".
  886. >
  887. #_(defn foo [x]
  888. (println x))
  889. <
  890. Note that this option will not correctly highlight stacked discard macros
  891. (e.g. `#_#_`).
  892. COBOL *cobol.vim* *ft-cobol-syntax*
  893. COBOL highlighting has different needs for legacy code than it does for fresh
  894. development. This is due to differences in what is being done (maintenance
  895. versus development) and other factors. To enable legacy code highlighting,
  896. add this line to your vimrc: >
  897. :let cobol_legacy_code = 1
  898. To disable it again, use this: >
  899. :unlet cobol_legacy_code
  900. COLD FUSION *coldfusion.vim* *ft-coldfusion-syntax*
  901. The ColdFusion has its own version of HTML comments. To turn on ColdFusion
  902. comment highlighting, add the following line to your startup file: >
  903. :let html_wrong_comments = 1
  904. The ColdFusion syntax file is based on the HTML syntax file.
  905. CPP *cpp.vim* *ft-cpp-syntax*
  906. Most things are the same as |ft-c-syntax|.
  907. Variable Highlight ~
  908. cpp_no_cpp11 don't highlight C++11 standard items
  909. cpp_no_cpp14 don't highlight C++14 standard items
  910. cpp_no_cpp17 don't highlight C++17 standard items
  911. cpp_no_cpp20 don't highlight C++20 standard items
  912. CSH *csh.vim* *ft-csh-syntax*
  913. This covers the shell named "csh". Note that on some systems tcsh is actually
  914. used.
  915. Detecting whether a file is csh or tcsh is notoriously hard. Some systems
  916. symlink /bin/csh to /bin/tcsh, making it almost impossible to distinguish
  917. between csh and tcsh. In case VIM guesses wrong you can set the
  918. "filetype_csh" variable. For using csh: *g:filetype_csh*
  919. >
  920. :let g:filetype_csh = "csh"
  921. For using tcsh: >
  922. :let g:filetype_csh = "tcsh"
  923. Any script with a tcsh extension or a standard tcsh filename (.tcshrc,
  924. tcsh.tcshrc, tcsh.login) will have filetype tcsh. All other tcsh/csh scripts
  925. will be classified as tcsh, UNLESS the "filetype_csh" variable exists. If the
  926. "filetype_csh" variable exists, the filetype will be set to the value of the
  927. variable.
  928. CYNLIB *cynlib.vim* *ft-cynlib-syntax*
  929. Cynlib files are C++ files that use the Cynlib class library to enable
  930. hardware modelling and simulation using C++. Typically Cynlib files have a .cc
  931. or a .cpp extension, which makes it very difficult to distinguish them from a
  932. normal C++ file. Thus, to enable Cynlib highlighting for .cc files, add this
  933. line to your vimrc file: >
  934. :let cynlib_cyntax_for_cc=1
  935. Similarly for cpp files (this extension is only usually used in Windows) >
  936. :let cynlib_cyntax_for_cpp=1
  937. To disable these again, use this: >
  938. :unlet cynlib_cyntax_for_cc
  939. :unlet cynlib_cyntax_for_cpp
  940. <
  941. CWEB *cweb.vim* *ft-cweb-syntax*
  942. Files matching "*.w" could be Progress or cweb. If the automatic detection
  943. doesn't work for you, or you don't edit Progress at all, use this in your
  944. startup vimrc: >
  945. :let filetype_w = "cweb"
  946. DART *dart.vim* *ft-dart-syntax*
  947. Dart is an object-oriented, typed, class defined, garbage collected language
  948. used for developing mobile, desktop, web, and back-end applications. Dart uses
  949. a C-like syntax derived from C, Java, and JavaScript, with features adopted
  950. from Smalltalk, Python, Ruby, and others.
  951. More information about the language and its development environment at the
  952. official Dart language website at https://dart.dev
  953. dart.vim syntax detects and highlights Dart statements, reserved words,
  954. type declarations, storage classes, conditionals, loops, interpolated values,
  955. and comments. There is no support idioms from Flutter or any other Dart
  956. framework.
  957. Changes, fixes? Submit an issue or pull request via:
  958. https://github.com/pr3d4t0r/dart-vim-syntax/
  959. DESKTOP *desktop.vim* *ft-desktop-syntax*
  960. Primary goal of this syntax file is to highlight .desktop and .directory files
  961. according to freedesktop.org standard:
  962. https://specifications.freedesktop.org/desktop-entry-spec/latest/
  963. To highlight nonstandard extensions that does not begin with X-, set >
  964. let g:desktop_enable_nonstd = 1
  965. Note that this may cause wrong highlight.
  966. To highlight KDE-reserved features, set >
  967. let g:desktop_enable_kde = 1
  968. g:desktop_enable_kde follows g:desktop_enable_nonstd if not supplied
  969. DIFF *diff.vim*
  970. The diff highlighting normally finds translated headers. This can be slow if
  971. there are very long lines in the file. To disable translations: >
  972. :let diff_translations = 0
  973. Also see |diff-slow|.
  974. DIRCOLORS *dircolors.vim* *ft-dircolors-syntax*
  975. The dircolors utility highlighting definition has one option. It exists to
  976. provide compatibility with the Slackware GNU/Linux distributions version of
  977. the command. It adds a few keywords that are generally ignored by most
  978. versions. On Slackware systems, however, the utility accepts the keywords and
  979. uses them for processing. To enable the Slackware keywords add the following
  980. line to your startup file: >
  981. let dircolors_is_slackware = 1
  982. DOCBOOK *docbk.vim* *ft-docbk-syntax* *docbook*
  983. DOCBOOK XML *docbkxml.vim* *ft-docbkxml-syntax*
  984. DOCBOOK SGML *docbksgml.vim* *ft-docbksgml-syntax*
  985. There are two types of DocBook files: SGML and XML. To specify what type you
  986. are using the "b:docbk_type" variable should be set. Vim does this for you
  987. automatically if it can recognize the type. When Vim can't guess it the type
  988. defaults to XML.
  989. You can set the type manually: >
  990. :let docbk_type = "sgml"
  991. or: >
  992. :let docbk_type = "xml"
  993. You need to do this before loading the syntax file, which is complicated.
  994. Simpler is setting the filetype to "docbkxml" or "docbksgml": >
  995. :set filetype=docbksgml
  996. or: >
  997. :set filetype=docbkxml
  998. You can specify the DocBook version: >
  999. :let docbk_ver = 3
  1000. When not set 4 is used.
  1001. DOSBATCH *dosbatch.vim* *ft-dosbatch-syntax*
  1002. There is one option with highlighting DOS batch files. This covers new
  1003. extensions to the Command Interpreter introduced with Windows 2000 and
  1004. is controlled by the variable dosbatch_cmdextversion. For Windows NT
  1005. this should have the value 1, and for Windows 2000 it should be 2.
  1006. Select the version you want with the following line: >
  1007. :let dosbatch_cmdextversion = 1
  1008. If this variable is not defined it defaults to a value of 2 to support
  1009. Windows 2000.
  1010. A second option covers whether *.btm files should be detected as type
  1011. "dosbatch" (MS-DOS batch files) or type "btm" (4DOS batch files). The latter
  1012. is used by default. You may select the former with the following line: >
  1013. :let g:dosbatch_syntax_for_btm = 1
  1014. If this variable is undefined or zero, btm syntax is selected.
  1015. DOXYGEN *doxygen.vim* *doxygen-syntax*
  1016. Doxygen generates code documentation using a special documentation format
  1017. (similar to Javadoc). This syntax script adds doxygen highlighting to c, cpp,
  1018. idl and php files, and should also work with java.
  1019. There are a few of ways to turn on doxygen formatting. It can be done
  1020. explicitly or in a modeline by appending '.doxygen' to the syntax of the file.
  1021. Example: >
  1022. :set syntax=c.doxygen
  1023. or >
  1024. // vim:syntax=c.doxygen
  1025. It can also be done automatically for C, C++, C#, IDL and PHP files by setting
  1026. the global or buffer-local variable load_doxygen_syntax. This is done by
  1027. adding the following to your vimrc. >
  1028. :let g:load_doxygen_syntax=1
  1029. There are a couple of variables that have an effect on syntax highlighting, and
  1030. are to do with non-standard highlighting options.
  1031. Variable Default Effect ~
  1032. g:doxygen_enhanced_color
  1033. g:doxygen_enhanced_colour 0 Use non-standard highlighting for
  1034. doxygen comments.
  1035. doxygen_my_rendering 0 Disable rendering of HTML bold, italic
  1036. and html_my_rendering underline.
  1037. doxygen_javadoc_autobrief 1 Set to 0 to disable javadoc autobrief
  1038. colour highlighting.
  1039. doxygen_end_punctuation '[.]' Set to regexp match for the ending
  1040. punctuation of brief
  1041. There are also some highlight groups worth mentioning as they can be useful in
  1042. configuration.
  1043. Highlight Effect ~
  1044. doxygenErrorComment The colour of an end-comment when missing
  1045. punctuation in a code, verbatim or dot section
  1046. doxygenLinkError The colour of an end-comment when missing the
  1047. \endlink from a \link section.
  1048. DTD *dtd.vim* *ft-dtd-syntax*
  1049. The DTD syntax highlighting is case sensitive by default. To disable
  1050. case-sensitive highlighting, add the following line to your startup file: >
  1051. :let dtd_ignore_case=1
  1052. The DTD syntax file will highlight unknown tags as errors. If
  1053. this is annoying, it can be turned off by setting: >
  1054. :let dtd_no_tag_errors=1
  1055. before sourcing the dtd.vim syntax file.
  1056. Parameter entity names are highlighted in the definition using the
  1057. 'Type' highlighting group and 'Comment' for punctuation and '%'.
  1058. Parameter entity instances are highlighted using the 'Constant'
  1059. highlighting group and the 'Type' highlighting group for the
  1060. delimiters % and ;. This can be turned off by setting: >
  1061. :let dtd_no_param_entities=1
  1062. The DTD syntax file is also included by xml.vim to highlight included dtd's.
  1063. EIFFEL *eiffel.vim* *ft-eiffel-syntax*
  1064. While Eiffel is not case-sensitive, its style guidelines are, and the
  1065. syntax highlighting file encourages their use. This also allows to
  1066. highlight class names differently. If you want to disable case-sensitive
  1067. highlighting, add the following line to your startup file: >
  1068. :let eiffel_ignore_case=1
  1069. Case still matters for class names and TODO marks in comments.
  1070. Conversely, for even stricter checks, add one of the following lines: >
  1071. :let eiffel_strict=1
  1072. :let eiffel_pedantic=1
  1073. Setting eiffel_strict will only catch improper capitalization for the
  1074. five predefined words "Current", "Void", "Result", "Precursor", and
  1075. "NONE", to warn against their accidental use as feature or class names.
  1076. Setting eiffel_pedantic will enforce adherence to the Eiffel style
  1077. guidelines fairly rigorously (like arbitrary mixes of upper- and
  1078. lowercase letters as well as outdated ways to capitalize keywords).
  1079. If you want to use the lower-case version of "Current", "Void",
  1080. "Result", and "Precursor", you can use >
  1081. :let eiffel_lower_case_predef=1
  1082. instead of completely turning case-sensitive highlighting off.
  1083. Support for ISE's proposed new creation syntax that is already
  1084. experimentally handled by some compilers can be enabled by: >
  1085. :let eiffel_ise=1
  1086. Finally, some vendors support hexadecimal constants. To handle them, add >
  1087. :let eiffel_hex_constants=1
  1088. to your startup file.
  1089. EUPHORIA *euphoria3.vim* *euphoria4.vim* *ft-euphoria-syntax*
  1090. Two syntax highlighting files exist for Euphoria. One for Euphoria
  1091. version 3.1.1, which is the default syntax highlighting file, and one for
  1092. Euphoria version 4.0.5 or later.
  1093. Euphoria version 3.1.1 (http://www.rapideuphoria.com/) is still necessary
  1094. for developing applications for the DOS platform, which Euphoria version 4
  1095. (http://www.openeuphoria.org/) does not support.
  1096. The following file extensions are auto-detected as Euphoria file type:
  1097. *.e, *.eu, *.ew, *.ex, *.exu, *.exw
  1098. *.E, *.EU, *.EW, *.EX, *.EXU, *.EXW
  1099. To select syntax highlighting file for Euphoria, as well as for
  1100. auto-detecting the *.e and *.E file extensions as Euphoria file type,
  1101. add the following line to your startup file: >
  1102. :let g:filetype_euphoria = "euphoria3"
  1103. < or >
  1104. :let g:filetype_euphoria = "euphoria4"
  1105. Elixir and Euphoria share the *.ex file extension. If the filetype is
  1106. specifically set as Euphoria with the g:filetype_euphoria variable, or the
  1107. file is determined to be Euphoria based on keywords in the file, then the
  1108. filetype will be set as Euphoria. Otherwise, the filetype will default to
  1109. Elixir.
  1110. ERLANG *erlang.vim* *ft-erlang-syntax*
  1111. Erlang is a functional programming language developed by Ericsson. Files with
  1112. the following extensions are recognized as Erlang files: erl, hrl, yaws.
  1113. The BIFs (built-in functions) are highlighted by default. To disable this,
  1114. put the following line in your vimrc: >
  1115. :let g:erlang_highlight_bifs = 0
  1116. To enable highlighting some special atoms, put this in your vimrc: >
  1117. :let g:erlang_highlight_special_atoms = 1
  1118. ELIXIR *elixir.vim* *ft-elixir-syntax*
  1119. Elixir is a dynamic, functional language for building scalable and maintainable
  1120. applications.
  1121. The following file extensions are auto-detected as Elixir file types:
  1122. *.ex, *.exs, *.eex, *.leex, *.lock
  1123. Elixir and Euphoria share the *.ex file extension. If the filetype is
  1124. specifically set as Euphoria with the g:filetype_euphoria variable, or the
  1125. file is determined to be Euphoria based on keywords in the file, then the
  1126. filetype will be set as Euphoria. Otherwise, the filetype will default to
  1127. Elixir.
  1128. FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax*
  1129. FlexWiki is an ASP.NET-based wiki package available at http://www.flexwiki.com
  1130. NOTE: this site currently doesn't work, on Wikipedia is mentioned that
  1131. development stopped in 2009.
  1132. Syntax highlighting is available for the most common elements of FlexWiki
  1133. syntax. The associated ftplugin script sets some buffer-local options to make
  1134. editing FlexWiki pages more convenient. FlexWiki considers a newline as the
  1135. start of a new paragraph, so the ftplugin sets 'tw'=0 (unlimited line length),
  1136. 'wrap' (wrap long lines instead of using horizontal scrolling), 'linebreak'
  1137. (to wrap at a character in 'breakat' instead of at the last char on screen),
  1138. and so on. It also includes some keymaps that are disabled by default.
  1139. If you want to enable the keymaps that make "j" and "k" and the cursor keys
  1140. move up and down by display lines, add this to your vimrc: >
  1141. :let flexwiki_maps = 1
  1142. FORM *form.vim* *ft-form-syntax*
  1143. The coloring scheme for syntax elements in the FORM file uses the default
  1144. modes Conditional, Number, Statement, Comment, PreProc, Type, and String,
  1145. following the language specifications in 'Symbolic Manipulation with FORM' by
  1146. J.A.M. Vermaseren, CAN, Netherlands, 1991.
  1147. If you want include your own changes to the default colors, you have to
  1148. redefine the following syntax groups:
  1149. - formConditional
  1150. - formNumber
  1151. - formStatement
  1152. - formHeaderStatement
  1153. - formComment
  1154. - formPreProc
  1155. - formDirective
  1156. - formType
  1157. - formString
  1158. Note that the form.vim syntax file implements FORM preprocessor commands and
  1159. directives per default in the same syntax group.
  1160. A predefined enhanced color mode for FORM is available to distinguish between
  1161. header statements and statements in the body of a FORM program. To activate
  1162. this mode define the following variable in your vimrc file >
  1163. :let form_enhanced_color=1
  1164. The enhanced mode also takes advantage of additional color features for a dark
  1165. gvim display. Here, statements are colored LightYellow instead of Yellow, and
  1166. conditionals are LightBlue for better distinction.
  1167. Both Visual Basic and FORM use the extension ".frm". To detect which one
  1168. should be used, Vim checks for the string "VB_Name" in the first five lines of
  1169. the file. If it is found, filetype will be "vb", otherwise "form".
  1170. If the automatic detection doesn't work for you or you only edit, for
  1171. example, FORM files, use this in your startup vimrc: >
  1172. :let filetype_frm = "form"
  1173. FORTH *forth.vim* *ft-forth-syntax*
  1174. Files matching "*.fs" could be F# or Forth. If the automatic detection
  1175. doesn't work for you, or you don't edit F# at all, use this in your
  1176. startup vimrc: >
  1177. :let filetype_fs = "forth"
  1178. FORTRAN *fortran.vim* *ft-fortran-syntax*
  1179. Default highlighting and dialect ~
  1180. Highlighting appropriate for Fortran 2008 is used by default. This choice
  1181. should be appropriate for most users most of the time because Fortran 2008 is
  1182. almost a superset of previous versions (Fortran 2003, 95, 90, and 77).
  1183. Fortran source code form ~
  1184. Fortran code can be in either fixed or free source form. Note that the
  1185. syntax highlighting will not be correct if the form is incorrectly set.
  1186. When you create a new fortran file, the syntax script assumes fixed source
  1187. form. If you always use free source form, then >
  1188. :let fortran_free_source=1
  1189. in your vimrc prior to the :syntax on command. If you always use fixed source
  1190. form, then >
  1191. :let fortran_fixed_source=1
  1192. in your vimrc prior to the :syntax on command.
  1193. If the form of the source code depends, in a non-standard way, upon the file
  1194. extension, then it is most convenient to set fortran_free_source in a ftplugin
  1195. file. For more information on ftplugin files, see |ftplugin|. Note that this
  1196. will work only if the "filetype plugin indent on" command precedes the "syntax
  1197. on" command in your .vimrc file.
  1198. When you edit an existing fortran file, the syntax script will assume free
  1199. source form if the fortran_free_source variable has been set, and assumes
  1200. fixed source form if the fortran_fixed_source variable has been set. If
  1201. neither of these variables have been set, the syntax script attempts to
  1202. determine which source form has been used by examining the file extension
  1203. using conventions common to the ifort, gfortran, Cray, NAG, and PathScale
  1204. compilers (.f, .for, .f77 for fixed-source, .f90, .f95, .f03, .f08 for
  1205. free-source). If none of this works, then the script examines the first five
  1206. columns of the first 500 lines of your file. If no signs of free source form
  1207. are detected, then the file is assumed to be in fixed source form. The
  1208. algorithm should work in the vast majority of cases. In some cases, such as a
  1209. file that begins with 500 or more full-line comments, the script may
  1210. incorrectly decide that the fortran code is in fixed form. If that happens,
  1211. just add a non-comment statement beginning anywhere in the first five columns
  1212. of the first twenty-five lines, save (:w) and then reload (:e!) the file.
  1213. Tabs in fortran files ~
  1214. Tabs are not recognized by the Fortran standards. Tabs are not a good idea in
  1215. fixed format fortran source code which requires fixed column boundaries.
  1216. Therefore, tabs are marked as errors. Nevertheless, some programmers like
  1217. using tabs. If your fortran files contain tabs, then you should set the
  1218. variable fortran_have_tabs in your vimrc with a command such as >
  1219. :let fortran_have_tabs=1
  1220. placed prior to the :syntax on command. Unfortunately, the use of tabs will
  1221. mean that the syntax file will not be able to detect incorrect margins.
  1222. Syntax folding of fortran files ~
  1223. If you wish to use foldmethod=syntax, then you must first set the variable
  1224. fortran_fold with a command such as >
  1225. :let fortran_fold=1
  1226. to instruct the syntax script to define fold regions for program units, that
  1227. is main programs starting with a program statement, subroutines, function
  1228. subprograms, block data subprograms, interface blocks, and modules. If you
  1229. also set the variable fortran_fold_conditionals with a command such as >
  1230. :let fortran_fold_conditionals=1
  1231. then fold regions will also be defined for do loops, if blocks, and select
  1232. case constructs. If you also set the variable
  1233. fortran_fold_multilinecomments with a command such as >
  1234. :let fortran_fold_multilinecomments=1
  1235. then fold regions will also be defined for three or more consecutive comment
  1236. lines. Note that defining fold regions can be slow for large files.
  1237. If fortran_fold, and possibly fortran_fold_conditionals and/or
  1238. fortran_fold_multilinecomments, have been set, then vim will fold your file if
  1239. you set foldmethod=syntax. Comments or blank lines placed between two program
  1240. units are not folded because they are seen as not belonging to any program
  1241. unit.
  1242. More precise fortran syntax ~
  1243. If you set the variable fortran_more_precise with a command such as >
  1244. :let fortran_more_precise=1
  1245. then the syntax coloring will be more precise but slower. In particular,
  1246. statement labels used in do, goto and arithmetic if statements will be
  1247. recognized, as will construct names at the end of a do, if, select or forall
  1248. construct.
  1249. Non-default fortran dialects ~
  1250. The syntax script supports two Fortran dialects: f08 and F. You will probably
  1251. find the default highlighting (f08) satisfactory. A few legacy constructs
  1252. deleted or declared obsolescent in the 2008 standard are highlighted as todo
  1253. items.
  1254. If you use F, the advantage of setting the dialect appropriately is that
  1255. other legacy features excluded from F will be highlighted as todo items and
  1256. that free source form will be assumed.
  1257. The dialect can be selected in various ways. If all your fortran files use
  1258. the same dialect, set the global variable fortran_dialect in your vimrc prior
  1259. to your syntax on statement. The case-sensitive, permissible values of
  1260. fortran_dialect are "f08" or "F". Invalid values of fortran_dialect are
  1261. ignored.
  1262. If the dialect depends upon the file extension, then it is most convenient to
  1263. set a buffer-local variable in a ftplugin file. For more information on
  1264. ftplugin files, see |ftplugin|. For example, if all your fortran files with
  1265. an .f90 extension are written in the F subset, your ftplugin file should
  1266. contain the code >
  1267. let s:extfname = expand("%:e")
  1268. if s:extfname ==? "f90"
  1269. let b:fortran_dialect="F"
  1270. else
  1271. unlet! b:fortran_dialect
  1272. endif
  1273. Note that this will work only if the "filetype plugin indent on" command
  1274. precedes the "syntax on" command in your vimrc file.
  1275. Finer control is necessary if the file extension does not uniquely identify
  1276. the dialect. You can override the default dialect, on a file-by-file basis,
  1277. by including a comment with the directive "fortran_dialect=xx" (where xx=F or
  1278. f08) in one of the first three lines in your file. For example, your older .f
  1279. files may be legacy code but your newer ones may be F codes, and you would
  1280. identify the latter by including in the first three lines of those files a
  1281. Fortran comment of the form >
  1282. ! fortran_dialect=F
  1283. For previous versions of the syntax, you may have set fortran_dialect to the
  1284. now-obsolete values "f77", "f90", "f95", or "elf". Such settings will be
  1285. silently handled as "f08". Users of "elf" may wish to experiment with "F"
  1286. instead.
  1287. The syntax/fortran.vim script contains embedded comments that tell you how to
  1288. comment and/or uncomment some lines to (a) activate recognition of some
  1289. non-standard, vendor-supplied intrinsics and (b) to prevent features deleted
  1290. or declared obsolescent in the 2008 standard from being highlighted as todo
  1291. items.
  1292. Limitations ~
  1293. Parenthesis checking does not catch too few closing parentheses. Hollerith
  1294. strings are not recognized. Some keywords may be highlighted incorrectly
  1295. because Fortran90 has no reserved words.
  1296. For further information related to fortran, see |ft-fortran-indent| and
  1297. |ft-fortran-plugin|.
  1298. FVWM CONFIGURATION FILES *fvwm.vim* *ft-fvwm-syntax*
  1299. In order for Vim to recognize Fvwm configuration files that do not match
  1300. the patterns *fvwmrc* or *fvwm2rc* , you must put additional patterns
  1301. appropriate to your system in your myfiletypes.vim file. For these
  1302. patterns, you must set the variable "b:fvwm_version" to the major version
  1303. number of Fvwm, and the 'filetype' option to fvwm.
  1304. For example, to make Vim identify all files in /etc/X11/fvwm2/
  1305. as Fvwm2 configuration files, add the following: >
  1306. :au! BufNewFile,BufRead /etc/X11/fvwm2/* let b:fvwm_version = 2 |
  1307. \ set filetype=fvwm
  1308. GSP *gsp.vim* *ft-gsp-syntax*
  1309. The default coloring style for GSP pages is defined by |html.vim|, and
  1310. the coloring for java code (within java tags or inline between backticks)
  1311. is defined by |java.vim|. The following HTML groups defined in |html.vim|
  1312. are redefined to incorporate and highlight inline java code:
  1313. htmlString
  1314. htmlValue
  1315. htmlEndTag
  1316. htmlTag
  1317. htmlTagN
  1318. Highlighting should look fine most of the places where you'd see inline
  1319. java code, but in some special cases it may not. To add another HTML
  1320. group where you will have inline java code where it does not highlight
  1321. correctly, just copy the line you want from |html.vim| and add gspJava
  1322. to the contains clause.
  1323. The backticks for inline java are highlighted according to the htmlError
  1324. group to make them easier to see.
  1325. GROFF *groff.vim* *ft-groff-syntax*
  1326. The groff syntax file is a wrapper for |nroff.vim|, see the notes
  1327. under that heading for examples of use and configuration. The purpose
  1328. of this wrapper is to set up groff syntax extensions by setting the
  1329. filetype from a |modeline| or in a personal filetype definitions file
  1330. (see |filetype.txt|).
  1331. HASKELL *haskell.vim* *lhaskell.vim* *ft-haskell-syntax*
  1332. The Haskell syntax files support plain Haskell code as well as literate
  1333. Haskell code, the latter in both Bird style and TeX style. The Haskell
  1334. syntax highlighting will also highlight C preprocessor directives.
  1335. If you want to highlight delimiter characters (useful if you have a
  1336. light-coloured background), add to your vimrc: >
  1337. :let hs_highlight_delimiters = 1
  1338. To treat True and False as keywords as opposed to ordinary identifiers,
  1339. add: >
  1340. :let hs_highlight_boolean = 1
  1341. To also treat the names of primitive types as keywords: >
  1342. :let hs_highlight_types = 1
  1343. And to treat the names of even more relatively common types as keywords: >
  1344. :let hs_highlight_more_types = 1
  1345. If you want to highlight the names of debugging functions, put in
  1346. your vimrc: >
  1347. :let hs_highlight_debug = 1
  1348. The Haskell syntax highlighting also highlights C preprocessor
  1349. directives, and flags lines that start with # but are not valid
  1350. directives as erroneous. This interferes with Haskell's syntax for
  1351. operators, as they may start with #. If you want to highlight those
  1352. as operators as opposed to errors, put in your vimrc: >
  1353. :let hs_allow_hash_operator = 1
  1354. The syntax highlighting for literate Haskell code will try to
  1355. automatically guess whether your literate Haskell code contains
  1356. TeX markup or not, and correspondingly highlight TeX constructs
  1357. or nothing at all. You can override this globally by putting
  1358. in your vimrc >
  1359. :let lhs_markup = none
  1360. for no highlighting at all, or >
  1361. :let lhs_markup = tex
  1362. to force the highlighting to always try to highlight TeX markup.
  1363. For more flexibility, you may also use buffer local versions of
  1364. this variable, so e.g. >
  1365. :let b:lhs_markup = tex
  1366. will force TeX highlighting for a particular buffer. It has to be
  1367. set before turning syntax highlighting on for the buffer or
  1368. loading a file.
  1369. HTML *html.vim* *ft-html-syntax*
  1370. The coloring scheme for tags in the HTML file works as follows.
  1371. The <> of opening tags are colored differently than the </> of a closing tag.
  1372. This is on purpose! For opening tags the 'Function' color is used, while for
  1373. closing tags the 'Identifier' color is used (See syntax.vim to check how those
  1374. are defined for you)
  1375. Known tag names are colored the same way as statements in C. Unknown tag
  1376. names are colored with the same color as the <> or </> respectively which
  1377. makes it easy to spot errors
  1378. Note that the same is true for argument (or attribute) names. Known attribute
  1379. names are colored differently than unknown ones.
  1380. Some HTML tags are used to change the rendering of text. The following tags
  1381. are recognized by the html.vim syntax coloring file and change the way normal
  1382. text is shown: <B> <I> <U> <EM> <STRONG> (<EM> is used as an alias for <I>,
  1383. while <STRONG> as an alias for <B>), <H1> - <H6>, <HEAD>, <TITLE> and <A>, but
  1384. only if used as a link (that is, it must include a href as in
  1385. <A href="somefile.html">).
  1386. If you want to change how such text is rendered, you must redefine the
  1387. following syntax groups:
  1388. - htmlBold
  1389. - htmlBoldUnderline
  1390. - htmlBoldUnderlineItalic
  1391. - htmlUnderline
  1392. - htmlUnderlineItalic
  1393. - htmlItalic
  1394. - htmlTitle for titles
  1395. - htmlH1 - htmlH6 for headings
  1396. To make this redefinition work you must redefine them all with the exception
  1397. of the last two (htmlTitle and htmlH[1-6], which are optional) and define the
  1398. following variable in your vimrc (this is due to the order in which the files
  1399. are read during initialization) >
  1400. :let html_my_rendering=1
  1401. If you'd like to see an example download mysyntax.vim at
  1402. http://www.fleiner.com/vim/download.html
  1403. You can also disable this rendering by adding the following line to your
  1404. vimrc file: >
  1405. :let html_no_rendering=1
  1406. HTML comments are rather special (see an HTML reference document for the
  1407. details), and the syntax coloring scheme will highlight all errors.
  1408. However, if you prefer to use the wrong style (starts with <!-- and
  1409. ends with -->) you can define >
  1410. :let html_wrong_comments=1
  1411. JavaScript and Visual Basic embedded inside HTML documents are highlighted as
  1412. 'Special' with statements, comments, strings and so on colored as in standard
  1413. programming languages. Note that only JavaScript and Visual Basic are currently
  1414. supported, no other scripting language has been added yet.
  1415. Embedded and inlined cascading style sheets (CSS) are highlighted too.
  1416. There are several html preprocessor languages out there. html.vim has been
  1417. written such that it should be trivial to include it. To do so add the
  1418. following two lines to the syntax coloring file for that language
  1419. (the example comes from the asp.vim file):
  1420. >
  1421. runtime! syntax/html.vim
  1422. syn cluster htmlPreproc add=asp
  1423. Now you just need to make sure that you add all regions that contain
  1424. the preprocessor language to the cluster htmlPreproc.
  1425. HTML/OS (by Aestiva) *htmlos.vim* *ft-htmlos-syntax*
  1426. The coloring scheme for HTML/OS works as follows:
  1427. Functions and variable names are the same color by default, because VIM
  1428. doesn't specify different colors for Functions and Identifiers. To change
  1429. this (which is recommended if you want function names to be recognizable in a
  1430. different color) you need to add the following line to your vimrc: >
  1431. :hi Function cterm=bold ctermfg=LightGray
  1432. Of course, the ctermfg can be a different color if you choose.
  1433. Another issues that HTML/OS runs into is that there is no special filetype to
  1434. signify that it is a file with HTML/OS coding. You can change this by opening
  1435. a file and turning on HTML/OS syntax by doing the following: >
  1436. :set syntax=htmlos
  1437. Lastly, it should be noted that the opening and closing characters to begin a
  1438. block of HTML/OS code can either be << or [[ and >> or ]], respectively.
  1439. IA64 *ia64.vim* *intel-itanium* *ft-ia64-syntax*
  1440. Highlighting for the Intel Itanium 64 assembly language. See |asm.vim| for
  1441. how to recognize this filetype.
  1442. To have *.inc files be recognized as IA64, add this to your vimrc file: >
  1443. :let g:filetype_inc = "ia64"
  1444. INFORM *inform.vim* *ft-inform-syntax*
  1445. Inform highlighting includes symbols provided by the Inform Library, as
  1446. most programs make extensive use of it. If do not wish Library symbols
  1447. to be highlighted add this to your vim startup: >
  1448. :let inform_highlight_simple=1
  1449. By default it is assumed that Inform programs are Z-machine targeted,
  1450. and highlights Z-machine assembly language symbols appropriately. If
  1451. you intend your program to be targeted to a Glulx/Glk environment you
  1452. need to add this to your startup sequence: >
  1453. :let inform_highlight_glulx=1
  1454. This will highlight Glulx opcodes instead, and also adds glk() to the
  1455. set of highlighted system functions.
  1456. The Inform compiler will flag certain obsolete keywords as errors when
  1457. it encounters them. These keywords are normally highlighted as errors
  1458. by Vim. To prevent such error highlighting, you must add this to your
  1459. startup sequence: >
  1460. :let inform_suppress_obsolete=1
  1461. By default, the language features highlighted conform to Compiler
  1462. version 6.30 and Library version 6.11. If you are using an older
  1463. Inform development environment, you may with to add this to your
  1464. startup sequence: >
  1465. :let inform_highlight_old=1
  1466. IDL *idl.vim* *idl-syntax*
  1467. IDL (Interface Definition Language) files are used to define RPC calls. In
  1468. Microsoft land, this is also used for defining COM interfaces and calls.
  1469. IDL's structure is simple enough to permit a full grammar based approach to
  1470. rather than using a few heuristics. The result is large and somewhat
  1471. repetitive but seems to work.
  1472. There are some Microsoft extensions to idl files that are here. Some of them
  1473. are disabled by defining idl_no_ms_extensions.
  1474. The more complex of the extensions are disabled by defining idl_no_extensions.
  1475. Variable Effect ~
  1476. idl_no_ms_extensions Disable some of the Microsoft specific
  1477. extensions
  1478. idl_no_extensions Disable complex extensions
  1479. idlsyntax_showerror Show IDL errors (can be rather intrusive, but
  1480. quite helpful)
  1481. idlsyntax_showerror_soft Use softer colours by default for errors
  1482. JAVA *java.vim* *ft-java-syntax*
  1483. The java.vim syntax highlighting file offers several options:
  1484. In Java 1.0.2 it was never possible to have braces inside parens, so this was
  1485. flagged as an error. Since Java 1.1 this is possible (with anonymous
  1486. classes), and therefore is no longer marked as an error. If you prefer the old
  1487. way, put the following line into your vim startup file: >
  1488. :let java_mark_braces_in_parens_as_errors=1
  1489. All identifiers in java.lang.* are always visible in all classes. To
  1490. highlight them use: >
  1491. :let java_highlight_java_lang_ids=1
  1492. You can also highlight identifiers of most standard Java packages if you
  1493. download the javaid.vim script at http://www.fleiner.com/vim/download.html.
  1494. If you prefer to only highlight identifiers of a certain package, say java.io
  1495. use the following: >
  1496. :let java_highlight_java_io=1
  1497. Check the javaid.vim file for a list of all the packages that are supported.
  1498. Function names are not highlighted, as the way to find functions depends on
  1499. how you write Java code. The syntax file knows two possible ways to highlight
  1500. functions:
  1501. If you write function declarations that are always indented by either
  1502. a tab, 8 spaces or 2 spaces you may want to set >
  1503. :let java_highlight_functions="indent"
  1504. However, if you follow the Java guidelines about how functions and classes are
  1505. supposed to be named (with respect to upper and lowercase), use >
  1506. :let java_highlight_functions="style"
  1507. If both options do not work for you, but you would still want function
  1508. declarations to be highlighted create your own definitions by changing the
  1509. definitions in java.vim or by creating your own java.vim which includes the
  1510. original one and then adds the code to highlight functions.
  1511. In Java 1.1 the functions System.out.println() and System.err.println() should
  1512. only be used for debugging. Therefore it is possible to highlight debugging
  1513. statements differently. To do this you must add the following definition in
  1514. your startup file: >
  1515. :let java_highlight_debug=1
  1516. The result will be that those statements are highlighted as 'Special'
  1517. characters. If you prefer to have them highlighted differently you must define
  1518. new highlightings for the following groups.:
  1519. Debug, DebugSpecial, DebugString, DebugBoolean, DebugType
  1520. which are used for the statement itself, special characters used in debug
  1521. strings, strings, boolean constants and types (this, super) respectively. I
  1522. have opted to choose another background for those statements.
  1523. Javadoc is a program that takes special comments out of Java program files and
  1524. creates HTML pages. The standard configuration will highlight this HTML code
  1525. similarly to HTML files (see |html.vim|). You can even add Javascript
  1526. and CSS inside this code (see below). There are four differences however:
  1527. 1. The title (all characters up to the first '.' which is followed by
  1528. some white space or up to the first '@') is colored differently (to change
  1529. the color change the group CommentTitle).
  1530. 2. The text is colored as 'Comment'.
  1531. 3. HTML comments are colored as 'Special'
  1532. 4. The special Javadoc tags (@see, @param, ...) are highlighted as specials
  1533. and the argument (for @see, @param, @exception) as Function.
  1534. To turn this feature off add the following line to your startup file: >
  1535. :let java_ignore_javadoc=1
  1536. If you use the special Javadoc comment highlighting described above you
  1537. can also turn on special highlighting for Javascript, visual basic
  1538. scripts and embedded CSS (stylesheets). This makes only sense if you
  1539. actually have Javadoc comments that include either Javascript or embedded
  1540. CSS. The options to use are >
  1541. :let java_javascript=1
  1542. :let java_css=1
  1543. :let java_vb=1
  1544. In order to highlight nested parens with different colors define colors
  1545. for javaParen, javaParen1 and javaParen2, for example with >
  1546. :hi link javaParen Comment
  1547. or >
  1548. :hi javaParen ctermfg=blue guifg=#0000ff
  1549. If you notice highlighting errors while scrolling backwards, which are fixed
  1550. when redrawing with CTRL-L, try setting the "java_minlines" internal variable
  1551. to a larger number: >
  1552. :let java_minlines = 50
  1553. This will make the syntax synchronization start 50 lines before the first
  1554. displayed line. The default value is 10. The disadvantage of using a larger
  1555. number is that redrawing can become slow.
  1556. JSON *json.vim* *ft-json-syntax*
  1557. The json syntax file provides syntax highlighting with conceal support by
  1558. default. To disable concealment: >
  1559. let g:vim_json_conceal = 0
  1560. To disable syntax highlighting of errors: >
  1561. let g:vim_json_warnings = 0
  1562. LACE *lace.vim* *ft-lace-syntax*
  1563. Lace (Language for Assembly of Classes in Eiffel) is case insensitive, but the
  1564. style guide lines are not. If you prefer case insensitive highlighting, just
  1565. define the vim variable 'lace_case_insensitive' in your startup file: >
  1566. :let lace_case_insensitive=1
  1567. LEX *lex.vim* *ft-lex-syntax*
  1568. Lex uses brute-force synchronizing as the "^%%$" section delimiter
  1569. gives no clue as to what section follows. Consequently, the value for >
  1570. :syn sync minlines=300
  1571. may be changed by the user if they are experiencing synchronization
  1572. difficulties (such as may happen with large lex files).
  1573. LIFELINES *lifelines.vim* *ft-lifelines-syntax*
  1574. To highlight deprecated functions as errors, add in your vimrc: >
  1575. :let g:lifelines_deprecated = 1
  1576. <
  1577. LISP *lisp.vim* *ft-lisp-syntax*
  1578. The lisp syntax highlighting provides two options: >
  1579. g:lisp_instring : if it exists, then "(...)" strings are highlighted
  1580. as if the contents of the string were lisp.
  1581. Useful for AutoLisp.
  1582. g:lisp_rainbow : if it exists and is nonzero, then differing levels
  1583. of parenthesization will receive different
  1584. highlighting.
  1585. <
  1586. The g:lisp_rainbow option provides 10 levels of individual colorization for
  1587. the parentheses and backquoted parentheses. Because of the quantity of
  1588. colorization levels, unlike non-rainbow highlighting, the rainbow mode
  1589. specifies its highlighting using ctermfg and guifg, thereby bypassing the
  1590. usual colorscheme control using standard highlighting groups. The actual
  1591. highlighting used depends on the dark/bright setting (see |'bg'|).
  1592. LITE *lite.vim* *ft-lite-syntax*
  1593. There are two options for the lite syntax highlighting.
  1594. If you like SQL syntax highlighting inside Strings, use this: >
  1595. :let lite_sql_query = 1
  1596. For syncing, minlines defaults to 100. If you prefer another value, you can
  1597. set "lite_minlines" to the value you desire. Example: >
  1598. :let lite_minlines = 200
  1599. LPC *lpc.vim* *ft-lpc-syntax*
  1600. LPC stands for a simple, memory-efficient language: Lars Pensjö C. The
  1601. file name of LPC is usually *.c. Recognizing these files as LPC would bother
  1602. users writing only C programs. If you want to use LPC syntax in Vim, you
  1603. should set a variable in your vimrc file: >
  1604. :let lpc_syntax_for_c = 1
  1605. If it doesn't work properly for some particular C or LPC files, use a
  1606. modeline. For a LPC file:
  1607. // vim:set ft=lpc:
  1608. For a C file that is recognized as LPC:
  1609. // vim:set ft=c:
  1610. If you don't want to set the variable, use the modeline in EVERY LPC file.
  1611. There are several implementations for LPC, we intend to support most widely
  1612. used ones. Here the default LPC syntax is for MudOS series, for MudOS v22
  1613. and before, you should turn off the sensible modifiers, and this will also
  1614. assert the new efuns after v22 to be invalid, don't set this variable when
  1615. you are using the latest version of MudOS: >
  1616. :let lpc_pre_v22 = 1
  1617. For LpMud 3.2 series of LPC: >
  1618. :let lpc_compat_32 = 1
  1619. For LPC4 series of LPC: >
  1620. :let lpc_use_lpc4_syntax = 1
  1621. For uLPC series of LPC:
  1622. uLPC has been developed to Pike, so you should use Pike syntax
  1623. instead, and the name of your source file should be *.pike
  1624. LUA *lua.vim* *ft-lua-syntax*
  1625. The Lua syntax file can be used for versions 4.0, 5.0, 5.1 and 5.2 (5.2 is
  1626. the default). You can select one of these versions using the global variables
  1627. lua_version and lua_subversion. For example, to activate Lua
  1628. 5.1 syntax highlighting, set the variables like this:
  1629. :let lua_version = 5
  1630. :let lua_subversion = 1
  1631. MAIL *mail.vim* *ft-mail.vim*
  1632. Vim highlights all the standard elements of an email (headers, signatures,
  1633. quoted text and URLs / email addresses). In keeping with standard conventions,
  1634. signatures begin in a line containing only "--" followed optionally by
  1635. whitespaces and end with a newline.
  1636. Vim treats lines beginning with ']', '}', '|', '>' or a word followed by '>'
  1637. as quoted text. However Vim highlights headers and signatures in quoted text
  1638. only if the text is quoted with '>' (optionally followed by one space).
  1639. By default mail.vim synchronises syntax to 100 lines before the first
  1640. displayed line. If you have a slow machine, and generally deal with emails
  1641. with short headers, you can change this to a smaller value: >
  1642. :let mail_minlines = 30
  1643. MAKE *make.vim* *ft-make-syntax*
  1644. In makefiles, commands are usually highlighted to make it easy for you to spot
  1645. errors. However, this may be too much coloring for you. You can turn this
  1646. feature off by using: >
  1647. :let make_no_commands = 1
  1648. MAPLE *maple.vim* *ft-maple-syntax*
  1649. Maple V, by Waterloo Maple Inc, supports symbolic algebra. The language
  1650. supports many packages of functions which are selectively loaded by the user.
  1651. The standard set of packages' functions as supplied in Maple V release 4 may be
  1652. highlighted at the user's discretion. Users may place in their vimrc file: >
  1653. :let mvpkg_all= 1
  1654. to get all package functions highlighted, or users may select any subset by
  1655. choosing a variable/package from the table below and setting that variable to
  1656. 1, also in their vimrc file (prior to sourcing
  1657. $VIMRUNTIME/syntax/syntax.vim).
  1658. Table of Maple V Package Function Selectors >
  1659. mv_DEtools mv_genfunc mv_networks mv_process
  1660. mv_Galois mv_geometry mv_numapprox mv_simplex
  1661. mv_GaussInt mv_grobner mv_numtheory mv_stats
  1662. mv_LREtools mv_group mv_orthopoly mv_student
  1663. mv_combinat mv_inttrans mv_padic mv_sumtools
  1664. mv_combstruct mv_liesymm mv_plots mv_tensor
  1665. mv_difforms mv_linalg mv_plottools mv_totorder
  1666. mv_finance mv_logic mv_powseries
  1667. MATHEMATICA *mma.vim* *ft-mma-syntax* *ft-mathematica-syntax*
  1668. Empty *.m files will automatically be presumed to be Matlab files unless you
  1669. have the following in your vimrc: >
  1670. let filetype_m = "mma"
  1671. MOO *moo.vim* *ft-moo-syntax*
  1672. If you use C-style comments inside expressions and find it mangles your
  1673. highlighting, you may want to use extended (slow!) matches for C-style
  1674. comments: >
  1675. :let moo_extended_cstyle_comments = 1
  1676. To disable highlighting of pronoun substitution patterns inside strings: >
  1677. :let moo_no_pronoun_sub = 1
  1678. To disable highlighting of the regular expression operator '%|', and matching
  1679. '%(' and '%)' inside strings: >
  1680. :let moo_no_regexp = 1
  1681. Unmatched double quotes can be recognized and highlighted as errors: >
  1682. :let moo_unmatched_quotes = 1
  1683. To highlight builtin properties (.name, .location, .programmer etc.): >
  1684. :let moo_builtin_properties = 1
  1685. Unknown builtin functions can be recognized and highlighted as errors. If you
  1686. use this option, add your own extensions to the mooKnownBuiltinFunction group.
  1687. To enable this option: >
  1688. :let moo_unknown_builtin_functions = 1
  1689. An example of adding sprintf() to the list of known builtin functions: >
  1690. :syn keyword mooKnownBuiltinFunction sprintf contained
  1691. MSQL *msql.vim* *ft-msql-syntax*
  1692. There are two options for the msql syntax highlighting.
  1693. If you like SQL syntax highlighting inside Strings, use this: >
  1694. :let msql_sql_query = 1
  1695. For syncing, minlines defaults to 100. If you prefer another value, you can
  1696. set "msql_minlines" to the value you desire. Example: >
  1697. :let msql_minlines = 200
  1698. N1QL *n1ql.vim* *ft-n1ql-syntax*
  1699. N1QL is a SQL-like declarative language for manipulating JSON documents in
  1700. Couchbase Server databases.
  1701. Vim syntax highlights N1QL statements, keywords, operators, types, comments,
  1702. and special values. Vim ignores syntactical elements specific to SQL or its
  1703. many dialects, like COLUMN or CHAR, that don't exist in N1QL.
  1704. NCF *ncf.vim* *ft-ncf-syntax*
  1705. There is one option for NCF syntax highlighting.
  1706. If you want to have unrecognized (by ncf.vim) statements highlighted as
  1707. errors, use this: >
  1708. :let ncf_highlight_unknowns = 1
  1709. If you don't want to highlight these errors, leave it unset.
  1710. NROFF *nroff.vim* *ft-nroff-syntax*
  1711. The nroff syntax file works with AT&T n/troff out of the box. You need to
  1712. activate the GNU groff extra features included in the syntax file before you
  1713. can use them.
  1714. For example, Linux and BSD distributions use groff as their default text
  1715. processing package. In order to activate the extra syntax highlighting
  1716. features for groff, arrange for files to be recognized as groff (see
  1717. |ft-groff-syntax|) or add the following option to your start-up files: >
  1718. :let nroff_is_groff = 1
  1719. Groff is different from the old AT&T n/troff that you may still find in
  1720. Solaris. Groff macro and request names can be longer than 2 characters and
  1721. there are extensions to the language primitives. For example, in AT&T troff
  1722. you access the year as a 2-digit number with the request \(yr. In groff you
  1723. can use the same request, recognized for compatibility, or you can use groff's
  1724. native syntax, \[yr]. Furthermore, you can use a 4-digit year directly:
  1725. \[year]. Macro requests can be longer than 2 characters, for example, GNU mm
  1726. accepts the requests ".VERBON" and ".VERBOFF" for creating verbatim
  1727. environments.
  1728. In order to obtain the best formatted output g/troff can give you, you should
  1729. follow a few simple rules about spacing and punctuation.
  1730. 1. Do not leave empty spaces at the end of lines.
  1731. 2. Leave one space and one space only after an end-of-sentence period,
  1732. exclamation mark, etc.
  1733. 3. For reasons stated below, it is best to follow all period marks with a
  1734. carriage return.
  1735. The reason behind these unusual tips is that g/n/troff have a line breaking
  1736. algorithm that can be easily upset if you don't follow the rules given above.
  1737. Unlike TeX, troff fills text line-by-line, not paragraph-by-paragraph and,
  1738. furthermore, it does not have a concept of glue or stretch, all horizontal and
  1739. vertical space input will be output as is.
  1740. Therefore, you should be careful about not using more space between sentences
  1741. than you intend to have in your final document. For this reason, the common
  1742. practice is to insert a carriage return immediately after all punctuation
  1743. marks. If you want to have "even" text in your final processed output, you
  1744. need to maintain regular spacing in the input text. To mark both trailing
  1745. spaces and two or more spaces after a punctuation as an error, use: >
  1746. :let nroff_space_errors = 1
  1747. Another technique to detect extra spacing and other errors that will interfere
  1748. with the correct typesetting of your file, is to define an eye-catching
  1749. highlighting definition for the syntax groups "nroffDefinition" and
  1750. "nroffDefSpecial" in your configuration files. For example: >
  1751. hi def nroffDefinition cterm=italic gui=reverse
  1752. hi def nroffDefSpecial cterm=italic,bold gui=reverse,bold
  1753. If you want to navigate preprocessor entries in your source file as easily as
  1754. with section markers, you can activate the following option in your vimrc
  1755. file: >
  1756. let b:preprocs_as_sections = 1
  1757. As well, the syntax file adds an extra paragraph marker for the extended
  1758. paragraph macro (.XP) in the ms package.
  1759. Finally, there is a |groff.vim| syntax file that can be used for enabling
  1760. groff syntax highlighting either on a file basis or globally by default.
  1761. OCAML *ocaml.vim* *ft-ocaml-syntax*
  1762. The OCaml syntax file handles files having the following prefixes: .ml,
  1763. .mli, .mll and .mly. By setting the following variable >
  1764. :let ocaml_revised = 1
  1765. you can switch from standard OCaml-syntax to revised syntax as supported
  1766. by the camlp4 preprocessor. Setting the variable >
  1767. :let ocaml_noend_error = 1
  1768. prevents highlighting of "end" as error, which is useful when sources
  1769. contain very long structures that Vim does not synchronize anymore.
  1770. PAPP *papp.vim* *ft-papp-syntax*
  1771. The PApp syntax file handles .papp files and, to a lesser extent, .pxml
  1772. and .pxsl files which are all a mixture of perl/xml/html/other using xml
  1773. as the top-level file format. By default everything inside phtml or pxml
  1774. sections is treated as a string with embedded preprocessor commands. If
  1775. you set the variable: >
  1776. :let papp_include_html=1
  1777. in your startup file it will try to syntax-hilight html code inside phtml
  1778. sections, but this is relatively slow and much too colourful to be able to
  1779. edit sensibly. ;)
  1780. The newest version of the papp.vim syntax file can usually be found at
  1781. http://papp.plan9.de.
  1782. PASCAL *pascal.vim* *ft-pascal-syntax*
  1783. Files matching "*.p" could be Progress or Pascal and those matching "*.pp"
  1784. could be Puppet or Pascal. If the automatic detection doesn't work for you,
  1785. or you only edit Pascal files, use this in your startup vimrc: >
  1786. :let filetype_p = "pascal"
  1787. :let filetype_pp = "pascal"
  1788. The Pascal syntax file has been extended to take into account some extensions
  1789. provided by Turbo Pascal, Free Pascal Compiler and GNU Pascal Compiler.
  1790. Delphi keywords are also supported. By default, Turbo Pascal 7.0 features are
  1791. enabled. If you prefer to stick with the standard Pascal keywords, add the
  1792. following line to your startup file: >
  1793. :let pascal_traditional=1
  1794. To switch on Delphi specific constructions (such as one-line comments,
  1795. keywords, etc): >
  1796. :let pascal_delphi=1
  1797. The option pascal_symbol_operator controls whether symbol operators such as +,
  1798. *, .., etc. are displayed using the Operator color or not. To colorize symbol
  1799. operators, add the following line to your startup file: >
  1800. :let pascal_symbol_operator=1
  1801. Some functions are highlighted by default. To switch it off: >
  1802. :let pascal_no_functions=1
  1803. Furthermore, there are specific variables for some compilers. Besides
  1804. pascal_delphi, there are pascal_gpc and pascal_fpc. Default extensions try to
  1805. match Turbo Pascal. >
  1806. :let pascal_gpc=1
  1807. or >
  1808. :let pascal_fpc=1
  1809. To ensure that strings are defined on a single line, you can define the
  1810. pascal_one_line_string variable. >
  1811. :let pascal_one_line_string=1
  1812. If you dislike <Tab> chars, you can set the pascal_no_tabs variable. Tabs
  1813. will be highlighted as Error. >
  1814. :let pascal_no_tabs=1
  1815. PERL *perl.vim* *ft-perl-syntax*
  1816. There are a number of possible options to the perl syntax highlighting.
  1817. Inline POD highlighting is now turned on by default. If you don't wish
  1818. to have the added complexity of highlighting POD embedded within Perl
  1819. files, you may set the 'perl_include_pod' option to 0: >
  1820. :let perl_include_pod = 0
  1821. To reduce the complexity of parsing (and increase performance) you can switch
  1822. off two elements in the parsing of variable names and contents. >
  1823. To handle package references in variable and function names not differently
  1824. from the rest of the name (like 'PkgName::' in '$PkgName::VarName'): >
  1825. :let perl_no_scope_in_variables = 1
  1826. (In Vim 6.x it was the other way around: "perl_want_scope_in_variables"
  1827. enabled it.)
  1828. If you do not want complex things like '@{${"foo"}}' to be parsed: >
  1829. :let perl_no_extended_vars = 1
  1830. (In Vim 6.x it was the other way around: "perl_extended_vars" enabled it.)
  1831. The coloring strings can be changed. By default strings and qq friends will be
  1832. highlighted like the first line. If you set the variable
  1833. perl_string_as_statement, it will be highlighted as in the second line.
  1834. "hello world!"; qq|hello world|;
  1835. ^^^^^^^^^^^^^^NN^^^^^^^^^^^^^^^N (unlet perl_string_as_statement)
  1836. S^^^^^^^^^^^^SNNSSS^^^^^^^^^^^SN (let perl_string_as_statement)
  1837. (^ = perlString, S = perlStatement, N = None at all)
  1838. The syncing has 3 options. The first two switch off some triggering of
  1839. synchronization and should only be needed in case it fails to work properly.
  1840. If while scrolling all of a sudden the whole screen changes color completely
  1841. then you should try and switch off one of those. Let me know if you can figure
  1842. out the line that causes the mistake.
  1843. One triggers on "^\s*sub\s*" and the other on "^[$@%]" more or less. >
  1844. :let perl_no_sync_on_sub
  1845. :let perl_no_sync_on_global_var
  1846. Below you can set the maximum distance VIM should look for starting points for
  1847. its attempts in syntax highlighting. >
  1848. :let perl_sync_dist = 100
  1849. If you want to use folding with perl, set perl_fold: >
  1850. :let perl_fold = 1
  1851. If you want to fold blocks in if statements, etc. as well set the following: >
  1852. :let perl_fold_blocks = 1
  1853. Subroutines are folded by default if 'perl_fold' is set. If you do not want
  1854. this, you can set 'perl_nofold_subs': >
  1855. :let perl_nofold_subs = 1
  1856. Anonymous subroutines are not folded by default; you may enable their folding
  1857. via 'perl_fold_anonymous_subs': >
  1858. :let perl_fold_anonymous_subs = 1
  1859. Packages are also folded by default if 'perl_fold' is set. To disable this
  1860. behavior, set 'perl_nofold_packages': >
  1861. :let perl_nofold_packages = 1
  1862. PHP3 and PHP4 *php.vim* *php3.vim* *ft-php-syntax* *ft-php3-syntax*
  1863. [note: previously this was called "php3", but since it now also supports php4
  1864. it has been renamed to "php"]
  1865. There are the following options for the php syntax highlighting.
  1866. If you like SQL syntax highlighting inside Strings: >
  1867. let php_sql_query = 1
  1868. For highlighting the Baselib methods: >
  1869. let php_baselib = 1
  1870. Enable HTML syntax highlighting inside strings: >
  1871. let php_htmlInStrings = 1
  1872. Using the old colorstyle: >
  1873. let php_oldStyle = 1
  1874. Enable highlighting ASP-style short tags: >
  1875. let php_asp_tags = 1
  1876. Disable short tags: >
  1877. let php_noShortTags = 1
  1878. For highlighting parent error ] or ): >
  1879. let php_parent_error_close = 1
  1880. For skipping a php end tag, if there exists an open ( or [ without a closing
  1881. one: >
  1882. let php_parent_error_open = 1
  1883. Enable folding for classes and functions: >
  1884. let php_folding = 1
  1885. Selecting syncing method: >
  1886. let php_sync_method = x
  1887. x = -1 to sync by search (default),
  1888. x > 0 to sync at least x lines backwards,
  1889. x = 0 to sync from start.
  1890. PLAINTEX *plaintex.vim* *ft-plaintex-syntax*
  1891. TeX is a typesetting language, and plaintex is the file type for the "plain"
  1892. variant of TeX. If you never want your *.tex files recognized as plain TeX,
  1893. see |ft-tex-plugin|.
  1894. This syntax file has the option >
  1895. let g:plaintex_delimiters = 1
  1896. if you want to highlight brackets "[]" and braces "{}".
  1897. PPWIZARD *ppwiz.vim* *ft-ppwiz-syntax*
  1898. PPWizard is a preprocessor for HTML and OS/2 INF files
  1899. This syntax file has the options:
  1900. - ppwiz_highlight_defs : determines highlighting mode for PPWizard's
  1901. definitions. Possible values are
  1902. ppwiz_highlight_defs = 1 : PPWizard #define statements retain the
  1903. colors of their contents (e.g. PPWizard macros and variables)
  1904. ppwiz_highlight_defs = 2 : preprocessor #define and #evaluate
  1905. statements are shown in a single color with the exception of line
  1906. continuation symbols
  1907. The default setting for ppwiz_highlight_defs is 1.
  1908. - ppwiz_with_html : If the value is 1 (the default), highlight literal
  1909. HTML code; if 0, treat HTML code like ordinary text.
  1910. PHTML *phtml.vim* *ft-phtml-syntax*
  1911. There are two options for the phtml syntax highlighting.
  1912. If you like SQL syntax highlighting inside Strings, use this: >
  1913. :let phtml_sql_query = 1
  1914. For syncing, minlines defaults to 100. If you prefer another value, you can
  1915. set "phtml_minlines" to the value you desire. Example: >
  1916. :let phtml_minlines = 200
  1917. POSTSCRIPT *postscr.vim* *ft-postscr-syntax*
  1918. There are several options when it comes to highlighting PostScript.
  1919. First which version of the PostScript language to highlight. There are
  1920. currently three defined language versions, or levels. Level 1 is the original
  1921. and base version, and includes all extensions prior to the release of level 2.
  1922. Level 2 is the most common version around, and includes its own set of
  1923. extensions prior to the release of level 3. Level 3 is currently the highest
  1924. level supported. You select which level of the PostScript language you want
  1925. highlighted by defining the postscr_level variable as follows: >
  1926. :let postscr_level=2
  1927. If this variable is not defined it defaults to 2 (level 2) since this is
  1928. the most prevalent version currently.
  1929. Note, not all PS interpreters will support all language features for a
  1930. particular language level. In particular the %!PS-Adobe-3.0 at the start of
  1931. PS files does NOT mean the PostScript present is level 3 PostScript!
  1932. If you are working with Display PostScript, you can include highlighting of
  1933. Display PS language features by defining the postscr_display variable as
  1934. follows: >
  1935. :let postscr_display=1
  1936. If you are working with Ghostscript, you can include highlighting of
  1937. Ghostscript specific language features by defining the variable
  1938. postscr_ghostscript as follows: >
  1939. :let postscr_ghostscript=1
  1940. PostScript is a large language, with many predefined elements. While it
  1941. useful to have all these elements highlighted, on slower machines this can
  1942. cause Vim to slow down. In an attempt to be machine friendly font names and
  1943. character encodings are not highlighted by default. Unless you are working
  1944. explicitly with either of these this should be ok. If you want them to be
  1945. highlighted you should set one or both of the following variables: >
  1946. :let postscr_fonts=1
  1947. :let postscr_encodings=1
  1948. There is a stylistic option to the highlighting of and, or, and not. In
  1949. PostScript the function of these operators depends on the types of their
  1950. operands - if the operands are booleans then they are the logical operators,
  1951. if they are integers then they are binary operators. As binary and logical
  1952. operators can be highlighted differently they have to be highlighted one way
  1953. or the other. By default they are treated as logical operators. They can be
  1954. highlighted as binary operators by defining the variable
  1955. postscr_andornot_binary as follows: >
  1956. :let postscr_andornot_binary=1
  1957. <
  1958. *ptcap.vim* *ft-printcap-syntax*
  1959. PRINTCAP + TERMCAP *ft-ptcap-syntax* *ft-termcap-syntax*
  1960. This syntax file applies to the printcap and termcap databases.
  1961. In order for Vim to recognize printcap/termcap files that do not match
  1962. the patterns *printcap*, or *termcap*, you must put additional patterns
  1963. appropriate to your system in your |myfiletypefile| file. For these
  1964. patterns, you must set the variable "b:ptcap_type" to either "print" or
  1965. "term", and then the 'filetype' option to ptcap.
  1966. For example, to make Vim identify all files in /etc/termcaps/ as termcap
  1967. files, add the following: >
  1968. :au BufNewFile,BufRead /etc/termcaps/* let b:ptcap_type = "term" |
  1969. \ set filetype=ptcap
  1970. If you notice highlighting errors while scrolling backwards, which
  1971. are fixed when redrawing with CTRL-L, try setting the "ptcap_minlines"
  1972. internal variable to a larger number: >
  1973. :let ptcap_minlines = 50
  1974. (The default is 20 lines.)
  1975. PROGRESS *progress.vim* *ft-progress-syntax*
  1976. Files matching "*.w" could be Progress or cweb. If the automatic detection
  1977. doesn't work for you, or you don't edit cweb at all, use this in your
  1978. startup vimrc: >
  1979. :let filetype_w = "progress"
  1980. The same happens for "*.i", which could be assembly, and "*.p", which could be
  1981. Pascal. Use this if you don't use assembly and Pascal: >
  1982. :let filetype_i = "progress"
  1983. :let filetype_p = "progress"
  1984. PYTHON *python.vim* *ft-python-syntax*
  1985. There are six options to control Python syntax highlighting.
  1986. For highlighted numbers: >
  1987. :let python_no_number_highlight = 1
  1988. For highlighted builtin functions: >
  1989. :let python_no_builtin_highlight = 1
  1990. For highlighted standard exceptions: >
  1991. :let python_no_exception_highlight = 1
  1992. For highlighted doctests and code inside: >
  1993. :let python_no_doctest_highlight = 1
  1994. or >
  1995. :let python_no_doctest_code_highlight = 1
  1996. (first option implies second one).
  1997. For highlighted trailing whitespace and mix of spaces and tabs: >
  1998. :let python_space_error_highlight = 1
  1999. If you want all possible Python highlighting (the same as setting the
  2000. preceding last option and unsetting all other ones): >
  2001. :let python_highlight_all = 1
  2002. Note: only existence of these options matter, not their value. You can replace
  2003. 1 above with anything.
  2004. QUAKE *quake.vim* *ft-quake-syntax*
  2005. The Quake syntax definition should work for most FPS (First Person Shooter)
  2006. based on one of the Quake engines. However, the command names vary a bit
  2007. between the three games (Quake, Quake 2, and Quake 3 Arena) so the syntax
  2008. definition checks for the existence of three global variables to allow users
  2009. to specify what commands are legal in their files. The three variables can
  2010. be set for the following effects:
  2011. set to highlight commands only available in Quake: >
  2012. :let quake_is_quake1 = 1
  2013. set to highlight commands only available in Quake 2: >
  2014. :let quake_is_quake2 = 1
  2015. set to highlight commands only available in Quake 3 Arena: >
  2016. :let quake_is_quake3 = 1
  2017. Any combination of these three variables is legal, but might highlight more
  2018. commands than are actually available to you by the game.
  2019. R *r.vim* *ft-r-syntax*
  2020. The parsing of R code for syntax highlight starts 40 lines backwards, but you
  2021. can set a different value in your |vimrc|. Example: >
  2022. let r_syntax_minlines = 60
  2023. You can also turn off syntax highlighting of ROxygen: >
  2024. let r_syntax_hl_roxygen = 0
  2025. enable folding of code delimited by parentheses, square brackets and curly
  2026. braces: >
  2027. let r_syntax_folding = 1
  2028. and highlight as functions all keywords followed by an opening parenthesis: >
  2029. let r_syntax_fun_pattern = 1
  2030. R MARKDOWN *rmd.vim* *ft-rmd-syntax*
  2031. To disable syntax highlight of YAML header, add to your |vimrc|: >
  2032. let rmd_syn_hl_yaml = 0
  2033. To disable syntax highlighting of citation keys: >
  2034. let rmd_syn_hl_citations = 0
  2035. To highlight R code in knitr chunk headers: >
  2036. let rmd_syn_hl_chunk = 1
  2037. By default, chunks of R code will be highlighted following the rules of R
  2038. language. If you want proper syntax highlighting of chunks of other languages,
  2039. you should add them to either `markdown_fenced_languages` or
  2040. `rmd_fenced_languages`. For example to properly highlight both R and Python,
  2041. you may add this to your |vimrc|: >
  2042. let rmd_fenced_languages = ['r', 'python']
  2043. R RESTRUCTURED TEXT *rrst.vim* *ft-rrst-syntax*
  2044. To highlight R code in knitr chunk headers, add to your |vimrc|: >
  2045. let rrst_syn_hl_chunk = 1
  2046. READLINE *readline.vim* *ft-readline-syntax*
  2047. The readline library is primarily used by the BASH shell, which adds quite a
  2048. few commands and options to the ones already available. To highlight these
  2049. items as well you can add the following to your |vimrc| or just type it in the
  2050. command line before loading a file with the readline syntax: >
  2051. let readline_has_bash = 1
  2052. This will add highlighting for the commands that BASH (version 2.05a and
  2053. later, and part earlier) adds.
  2054. REGO *rego.vim* *ft-rego-syntax*
  2055. Rego is a query language developed by Styra. It is mostly used as a policy
  2056. language for kubernetes, but can be applied to almost anything. Files with
  2057. the following extensions are recognized as rego files: .rego.
  2058. RESTRUCTURED TEXT *rst.vim* *ft-rst-syntax*
  2059. Syntax highlighting is enabled for code blocks within the document for a
  2060. select number of file types. See $VIMRUNTIME/syntax/rst.vim for the default
  2061. syntax list.
  2062. To set a user-defined list of code block syntax highlighting: >
  2063. let rst_syntax_code_list = ['vim', 'lisp', ...]
  2064. To assign multiple code block types to a single syntax, define
  2065. `rst_syntax_code_list` as a mapping: >
  2066. let rst_syntax_code_list = {
  2067. \ 'cpp': ['cpp', 'c++'],
  2068. \ 'bash': ['bash', 'sh'],
  2069. ...
  2070. \ }
  2071. To use color highlighting for emphasis text: >
  2072. let rst_use_emphasis_colors = 1
  2073. To enable folding of sections: >
  2074. let rst_fold_enabled = 1
  2075. Note that folding can cause performance issues on some platforms.
  2076. REXX *rexx.vim* *ft-rexx-syntax*
  2077. If you notice highlighting errors while scrolling backwards, which are fixed
  2078. when redrawing with CTRL-L, try setting the "rexx_minlines" internal variable
  2079. to a larger number: >
  2080. :let rexx_minlines = 50
  2081. This will make the syntax synchronization start 50 lines before the first
  2082. displayed line. The default value is 10. The disadvantage of using a larger
  2083. number is that redrawing can become slow.
  2084. Vim tries to guess what type a ".r" file is. If it can't be detected (from
  2085. comment lines), the default is "r". To make the default rexx add this line to
  2086. your vimrc: *g:filetype_r*
  2087. >
  2088. :let g:filetype_r = "r"
  2089. RUBY *ruby.vim* *ft-ruby-syntax*
  2090. Ruby: Operator highlighting |ruby_operators|
  2091. Ruby: Whitespace errors |ruby_space_errors|
  2092. Ruby: Folding |ruby_fold| |ruby_foldable_groups|
  2093. Ruby: Reducing expensive operations |ruby_no_expensive| |ruby_minlines|
  2094. Ruby: Spellchecking strings |ruby_spellcheck_strings|
  2095. *ruby_operators*
  2096. Ruby: Operator highlighting ~
  2097. Operators can be highlighted by defining "ruby_operators": >
  2098. :let ruby_operators = 1
  2099. <
  2100. *ruby_space_errors*
  2101. Ruby: Whitespace errors ~
  2102. Whitespace errors can be highlighted by defining "ruby_space_errors": >
  2103. :let ruby_space_errors = 1
  2104. <
  2105. This will highlight trailing whitespace and tabs preceded by a space character
  2106. as errors. This can be refined by defining "ruby_no_trail_space_error" and
  2107. "ruby_no_tab_space_error" which will ignore trailing whitespace and tabs after
  2108. spaces respectively.
  2109. *ruby_fold* *ruby_foldable_groups*
  2110. Ruby: Folding ~
  2111. Folding can be enabled by defining "ruby_fold": >
  2112. :let ruby_fold = 1
  2113. <
  2114. This will set the value of 'foldmethod' to "syntax" locally to the current
  2115. buffer or window, which will enable syntax-based folding when editing Ruby
  2116. filetypes.
  2117. Default folding is rather detailed, i.e., small syntax units like "if", "do",
  2118. "%w[]" may create corresponding fold levels.
  2119. You can set "ruby_foldable_groups" to restrict which groups are foldable: >
  2120. :let ruby_foldable_groups = 'if case %'
  2121. <
  2122. The value is a space-separated list of keywords:
  2123. keyword meaning ~
  2124. -------- ------------------------------------- ~
  2125. ALL Most block syntax (default)
  2126. NONE Nothing
  2127. if "if" or "unless" block
  2128. def "def" block
  2129. class "class" block
  2130. module "module" block
  2131. do "do" block
  2132. begin "begin" block
  2133. case "case" block
  2134. for "for", "while", "until" loops
  2135. { Curly bracket block or hash literal
  2136. [ Array literal
  2137. % Literal with "%" notation, e.g.: %w(STRING), %!STRING!
  2138. / Regexp
  2139. string String and shell command output (surrounded by ', ", `)
  2140. : Symbol
  2141. # Multiline comment
  2142. << Here documents
  2143. __END__ Source code after "__END__" directive
  2144. *ruby_no_expensive*
  2145. Ruby: Reducing expensive operations ~
  2146. By default, the "end" keyword is colorized according to the opening statement
  2147. of the block it closes. While useful, this feature can be expensive; if you
  2148. experience slow redrawing (or you are on a terminal with poor color support)
  2149. you may want to turn it off by defining the "ruby_no_expensive" variable: >
  2150. :let ruby_no_expensive = 1
  2151. <
  2152. In this case the same color will be used for all control keywords.
  2153. *ruby_minlines*
  2154. If you do want this feature enabled, but notice highlighting errors while
  2155. scrolling backwards, which are fixed when redrawing with CTRL-L, try setting
  2156. the "ruby_minlines" variable to a value larger than 50: >
  2157. :let ruby_minlines = 100
  2158. <
  2159. Ideally, this value should be a number of lines large enough to embrace your
  2160. largest class or module.
  2161. *ruby_spellcheck_strings*
  2162. Ruby: Spellchecking strings ~
  2163. Ruby syntax will perform spellchecking of strings if you define
  2164. "ruby_spellcheck_strings": >
  2165. :let ruby_spellcheck_strings = 1
  2166. <
  2167. SCHEME *scheme.vim* *ft-scheme-syntax*
  2168. By default only R7RS keywords are highlighted and properly indented.
  2169. scheme.vim also supports extensions of the CHICKEN Scheme->C compiler.
  2170. Define b:is_chicken or g:is_chicken, if you need them.
  2171. SDL *sdl.vim* *ft-sdl-syntax*
  2172. The SDL highlighting probably misses a few keywords, but SDL has so many
  2173. of them it's almost impossibly to cope.
  2174. The new standard, SDL-2000, specifies that all identifiers are
  2175. case-sensitive (which was not so before), and that all keywords can be
  2176. used either completely lowercase or completely uppercase. To have the
  2177. highlighting reflect this, you can set the following variable: >
  2178. :let sdl_2000=1
  2179. This also sets many new keywords. If you want to disable the old
  2180. keywords, which is probably a good idea, use: >
  2181. :let SDL_no_96=1
  2182. The indentation is probably also incomplete, but right now I am very
  2183. satisfied with it for my own projects.
  2184. SED *sed.vim* *ft-sed-syntax*
  2185. To make tabs stand out from regular blanks (accomplished by using Todo
  2186. highlighting on the tabs), define "highlight_sedtabs" by putting >
  2187. :let highlight_sedtabs = 1
  2188. in the vimrc file. (This special highlighting only applies for tabs
  2189. inside search patterns, replacement texts, addresses or text included
  2190. by an Append/Change/Insert command.) If you enable this option, it is
  2191. also a good idea to set the tab width to one character; by doing that,
  2192. you can easily count the number of tabs in a string.
  2193. Bugs:
  2194. The transform command (y) is treated exactly like the substitute
  2195. command. This means that, as far as this syntax file is concerned,
  2196. transform accepts the same flags as substitute, which is wrong.
  2197. (Transform accepts no flags.) I tolerate this bug because the
  2198. involved commands need very complex treatment (95 patterns, one for
  2199. each plausible pattern delimiter).
  2200. SGML *sgml.vim* *ft-sgml-syntax*
  2201. The coloring scheme for tags in the SGML file works as follows.
  2202. The <> of opening tags are colored differently than the </> of a closing tag.
  2203. This is on purpose! For opening tags the 'Function' color is used, while for
  2204. closing tags the 'Type' color is used (See syntax.vim to check how those are
  2205. defined for you)
  2206. Known tag names are colored the same way as statements in C. Unknown tag
  2207. names are not colored which makes it easy to spot errors.
  2208. Note that the same is true for argument (or attribute) names. Known attribute
  2209. names are colored differently than unknown ones.
  2210. Some SGML tags are used to change the rendering of text. The following tags
  2211. are recognized by the sgml.vim syntax coloring file and change the way normal
  2212. text is shown: <varname> <emphasis> <command> <function> <literal>
  2213. <replaceable> <ulink> and <link>.
  2214. If you want to change how such text is rendered, you must redefine the
  2215. following syntax groups:
  2216. - sgmlBold
  2217. - sgmlBoldItalic
  2218. - sgmlUnderline
  2219. - sgmlItalic
  2220. - sgmlLink for links
  2221. To make this redefinition work you must redefine them all and define the
  2222. following variable in your vimrc (this is due to the order in which the files
  2223. are read during initialization) >
  2224. let sgml_my_rendering=1
  2225. You can also disable this rendering by adding the following line to your
  2226. vimrc file: >
  2227. let sgml_no_rendering=1
  2228. (Adapted from the html.vim help text by Claudio Fleiner <claudio@fleiner.com>)
  2229. *ft-posix-syntax* *ft-dash-syntax*
  2230. SH *sh.vim* *ft-sh-syntax* *ft-bash-syntax* *ft-ksh-syntax*
  2231. This covers syntax highlighting for the older Unix (Bourne) sh, and newer
  2232. shells such as bash, dash, posix, and the Korn shells.
  2233. Vim attempts to determine which shell type is in use by specifying that
  2234. various filenames are of specific types, e.g.: >
  2235. ksh : .kshrc* *.ksh
  2236. bash: .bashrc* bashrc bash.bashrc .bash_profile* *.bash
  2237. <
  2238. See $VIMRUNTIME/filetype.vim for the full list of patterns. If none of these
  2239. cases pertain, then the first line of the file is examined (ex. looking for
  2240. /bin/sh /bin/ksh /bin/bash). If the first line specifies a shelltype, then
  2241. that shelltype is used. However some files (ex. .profile) are known to be
  2242. shell files but the type is not apparent. Furthermore, on many systems sh is
  2243. symbolically linked to "bash" (Linux, Windows+cygwin) or "ksh" (Posix).
  2244. One may specify a global default by instantiating one of the following
  2245. variables in your vimrc:
  2246. ksh: >
  2247. let g:is_kornshell = 1
  2248. < posix: (using this is nearly the same as setting g:is_kornshell to 1) >
  2249. let g:is_posix = 1
  2250. < bash: >
  2251. let g:is_bash = 1
  2252. < sh: (default) Bourne shell >
  2253. let g:is_sh = 1
  2254. < (dash users should use posix)
  2255. If there's no "#! ..." line, and the user hasn't availed themself of a default
  2256. sh.vim syntax setting as just shown, then syntax/sh.vim will assume the Bourne
  2257. shell syntax. No need to quote RFCs or market penetration statistics in error
  2258. reports, please -- just select the default version of the sh your system uses
  2259. and install the associated "let..." in your <.vimrc>.
  2260. The syntax/sh.vim file provides several levels of syntax-based folding: >
  2261. let g:sh_fold_enabled= 0 (default, no syntax folding)
  2262. let g:sh_fold_enabled= 1 (enable function folding)
  2263. let g:sh_fold_enabled= 2 (enable heredoc folding)
  2264. let g:sh_fold_enabled= 4 (enable if/do/for folding)
  2265. >
  2266. then various syntax items (ie. HereDocuments and function bodies) become
  2267. syntax-foldable (see |:syn-fold|). You also may add these together
  2268. to get multiple types of folding: >
  2269. let g:sh_fold_enabled= 3 (enables function and heredoc folding)
  2270. If you notice highlighting errors while scrolling backwards which are fixed
  2271. when one redraws with CTRL-L, try setting the "sh_minlines" internal variable
  2272. to a larger number. Example: >
  2273. let sh_minlines = 500
  2274. This will make syntax synchronization start 500 lines before the first
  2275. displayed line. The default value is 200. The disadvantage of using a larger
  2276. number is that redrawing can become slow.
  2277. If you don't have much to synchronize on, displaying can be very slow. To
  2278. reduce this, the "sh_maxlines" internal variable can be set. Example: >
  2279. let sh_maxlines = 100
  2280. <
  2281. The default is to use the twice sh_minlines. Set it to a smaller number to
  2282. speed up displaying. The disadvantage is that highlight errors may appear.
  2283. syntax/sh.vim tries to flag certain problems as errors; usually things like
  2284. extra ']'s, 'done's, 'fi's, etc. If you find the error handling problematic
  2285. for your purposes, you may suppress such error highlighting by putting
  2286. the following line in your .vimrc: >
  2287. let g:sh_no_error= 1
  2288. <
  2289. *sh-embed* *sh-awk*
  2290. Sh: EMBEDDING LANGUAGES~
  2291. You may wish to embed languages into sh. I'll give an example courtesy of
  2292. Lorance Stinson on how to do this with awk as an example. Put the following
  2293. file into $HOME/.config/nvim/after/syntax/sh/awkembed.vim: >
  2294. " AWK Embedding:
  2295. " ==============
  2296. " Shamelessly ripped from aspperl.vim by Aaron Hope.
  2297. if exists("b:current_syntax")
  2298. unlet b:current_syntax
  2299. endif
  2300. syn include @AWKScript syntax/awk.vim
  2301. syn region AWKScriptCode matchgroup=AWKCommand start=+[=\\]\@<!'+ skip=+\\'+ end=+'+ contains=@AWKScript contained
  2302. syn region AWKScriptEmbedded matchgroup=AWKCommand start=+\<awk\>+ skip=+\\$+ end=+[=\\]\@<!'+me=e-1 contains=@shIdList,@shExprList2 nextgroup=AWKScriptCode
  2303. syn cluster shCommandSubList add=AWKScriptEmbedded
  2304. hi def link AWKCommand Type
  2305. <
  2306. This code will then let the awk code in the single quotes: >
  2307. awk '...awk code here...'
  2308. be highlighted using the awk highlighting syntax. Clearly this may be
  2309. extended to other languages.
  2310. SPEEDUP *spup.vim* *ft-spup-syntax*
  2311. (AspenTech plant simulator)
  2312. The Speedup syntax file has some options:
  2313. - strict_subsections : If this variable is defined, only keywords for
  2314. sections and subsections will be highlighted as statements but not
  2315. other keywords (like WITHIN in the OPERATION section).
  2316. - highlight_types : Definition of this variable causes stream types
  2317. like temperature or pressure to be highlighted as Type, not as a
  2318. plain Identifier. Included are the types that are usually found in
  2319. the DECLARE section; if you defined own types, you have to include
  2320. them in the syntax file.
  2321. - oneline_comments : this value ranges from 1 to 3 and determines the
  2322. highlighting of # style comments.
  2323. oneline_comments = 1 : allow normal Speedup code after an even
  2324. number of #s.
  2325. oneline_comments = 2 : show code starting with the second # as
  2326. error. This is the default setting.
  2327. oneline_comments = 3 : show the whole line as error if it contains
  2328. more than one #.
  2329. Since especially OPERATION sections tend to become very large due to
  2330. PRESETting variables, syncing may be critical. If your computer is
  2331. fast enough, you can increase minlines and/or maxlines near the end of
  2332. the syntax file.
  2333. SQL *sql.vim* *ft-sql-syntax*
  2334. *sqlinformix.vim* *ft-sqlinformix-syntax*
  2335. *sqlanywhere.vim* *ft-sqlanywhere-syntax*
  2336. While there is an ANSI standard for SQL, most database engines add their own
  2337. custom extensions. Vim currently supports the Oracle and Informix dialects of
  2338. SQL. Vim assumes "*.sql" files are Oracle SQL by default.
  2339. Vim currently has SQL support for a variety of different vendors via syntax
  2340. scripts. You can change Vim's default from Oracle to any of the current SQL
  2341. supported types. You can also easily alter the SQL dialect being used on a
  2342. buffer by buffer basis.
  2343. For more detailed instructions see |ft_sql.txt|.
  2344. SQUIRREL *squirrel.vim* *ft-squirrel-syntax*
  2345. Squirrel is a high level imperative, object-oriented programming language,
  2346. designed to be a light-weight scripting language that fits in the size, memory
  2347. bandwidth, and real-time requirements of applications like video games. Files
  2348. with the following extensions are recognized as squirrel files: .nut.
  2349. TCSH *tcsh.vim* *ft-tcsh-syntax*
  2350. This covers the shell named "tcsh". It is a superset of csh. See |csh.vim|
  2351. for how the filetype is detected.
  2352. Tcsh does not allow \" in strings unless the "backslash_quote" shell variable
  2353. is set. If you want VIM to assume that no backslash quote constructs exist add
  2354. this line to your vimrc: >
  2355. :let tcsh_backslash_quote = 0
  2356. If you notice highlighting errors while scrolling backwards, which are fixed
  2357. when redrawing with CTRL-L, try setting the "tcsh_minlines" internal variable
  2358. to a larger number: >
  2359. :let tcsh_minlines = 1000
  2360. This will make the syntax synchronization start 1000 lines before the first
  2361. displayed line. If you set "tcsh_minlines" to "fromstart", then
  2362. synchronization is done from the start of the file. The default value for
  2363. tcsh_minlines is 100. The disadvantage of using a larger number is that
  2364. redrawing can become slow.
  2365. TEX *tex.vim* *ft-tex-syntax* *latex-syntax*
  2366. *syntax-tex* *syntax-latex*
  2367. Tex Contents~
  2368. Tex: Want Syntax Folding? |tex-folding|
  2369. Tex: No Spell Checking Wanted |g:tex_nospell|
  2370. Tex: Don't Want Spell Checking In Comments? |tex-nospell|
  2371. Tex: Want Spell Checking in Verbatim Zones? |tex-verb|
  2372. Tex: Run-on Comments or MathZones |tex-runon|
  2373. Tex: Slow Syntax Highlighting? |tex-slow|
  2374. Tex: Want To Highlight More Commands? |tex-morecommands|
  2375. Tex: Excessive Error Highlighting? |tex-error|
  2376. Tex: Need a new Math Group? |tex-math|
  2377. Tex: Starting a New Style? |tex-style|
  2378. Tex: Taking Advantage of Conceal Mode |tex-conceal|
  2379. Tex: Selective Conceal Mode |g:tex_conceal|
  2380. Tex: Controlling iskeyword |g:tex_isk|
  2381. Tex: Fine Subscript and Superscript Control |tex-supersub|
  2382. Tex: Match Check Control |tex-matchcheck|
  2383. *tex-folding* *g:tex_fold_enabled*
  2384. Tex: Want Syntax Folding? ~
  2385. As of version 28 of <syntax/tex.vim>, syntax-based folding of parts, chapters,
  2386. sections, subsections, etc are supported. Put >
  2387. let g:tex_fold_enabled=1
  2388. in your vimrc, and :set fdm=syntax. I suggest doing the latter via a
  2389. modeline at the end of your LaTeX file: >
  2390. % vim: fdm=syntax
  2391. If your system becomes too slow, then you might wish to look into >
  2392. https://vimhelp.org/vim_faq.txt.html#faq-29.7
  2393. <
  2394. *g:tex_nospell*
  2395. Tex: No Spell Checking Wanted~
  2396. If you don't want spell checking anywhere in your LaTeX document, put >
  2397. let g:tex_nospell=1
  2398. into your vimrc. If you merely wish to suppress spell checking inside
  2399. comments only, see |g:tex_comment_nospell|.
  2400. *tex-nospell* *g:tex_comment_nospell*
  2401. Tex: Don't Want Spell Checking In Comments? ~
  2402. Some folks like to include things like source code in comments and so would
  2403. prefer that spell checking be disabled in comments in LaTeX files. To do
  2404. this, put the following in your vimrc: >
  2405. let g:tex_comment_nospell= 1
  2406. If you want to suppress spell checking everywhere inside your LaTeX document,
  2407. see |g:tex_nospell|.
  2408. *tex-verb* *g:tex_verbspell*
  2409. Tex: Want Spell Checking in Verbatim Zones?~
  2410. Often verbatim regions are used for things like source code; seldom does
  2411. one want source code spell-checked. However, for those of you who do
  2412. want your verbatim zones spell-checked, put the following in your vimrc: >
  2413. let g:tex_verbspell= 1
  2414. <
  2415. *tex-runon* *tex-stopzone*
  2416. Tex: Run-on Comments or MathZones ~
  2417. The <syntax/tex.vim> highlighting supports TeX, LaTeX, and some AmsTeX. The
  2418. highlighting supports three primary zones/regions: normal, texZone, and
  2419. texMathZone. Although considerable effort has been made to have these zones
  2420. terminate properly, zones delineated by $..$ and $$..$$ cannot be synchronized
  2421. as there's no difference between start and end patterns. Consequently, a
  2422. special "TeX comment" has been provided >
  2423. %stopzone
  2424. which will forcibly terminate the highlighting of either a texZone or a
  2425. texMathZone.
  2426. *tex-slow* *tex-sync*
  2427. Tex: Slow Syntax Highlighting? ~
  2428. If you have a slow computer, you may wish to reduce the values for >
  2429. :syn sync maxlines=200
  2430. :syn sync minlines=50
  2431. (especially the latter). If your computer is fast, you may wish to
  2432. increase them. This primarily affects synchronizing (i.e. just what group,
  2433. if any, is the text at the top of the screen supposed to be in?).
  2434. Another cause of slow highlighting is due to syntax-driven folding; see
  2435. |tex-folding| for a way around this.
  2436. *g:tex_fast*
  2437. Finally, if syntax highlighting is still too slow, you may set >
  2438. :let g:tex_fast= ""
  2439. in your vimrc. Used this way, the g:tex_fast variable causes the syntax
  2440. highlighting script to avoid defining any regions and associated
  2441. synchronization. The result will be much faster syntax highlighting; the
  2442. price: you will no longer have as much highlighting or any syntax-based
  2443. folding, and you will be missing syntax-based error checking.
  2444. You may decide that some syntax is acceptable; you may use the following table
  2445. selectively to enable just some syntax highlighting: >
  2446. b : allow bold and italic syntax
  2447. c : allow texComment syntax
  2448. m : allow texMatcher syntax (ie. {...} and [...])
  2449. M : allow texMath syntax
  2450. p : allow parts, chapter, section, etc syntax
  2451. r : allow texRefZone syntax (nocite, bibliography, label, pageref, eqref)
  2452. s : allow superscript/subscript regions
  2453. S : allow texStyle syntax
  2454. v : allow verbatim syntax
  2455. V : allow texNewEnv and texNewCmd syntax
  2456. <
  2457. As an example, let g:tex_fast= "M" will allow math-associated highlighting
  2458. but suppress all the other region-based syntax highlighting.
  2459. (also see: |g:tex_conceal| and |tex-supersub|)
  2460. *tex-morecommands* *tex-package*
  2461. Tex: Want To Highlight More Commands? ~
  2462. LaTeX is a programmable language, and so there are thousands of packages full
  2463. of specialized LaTeX commands, syntax, and fonts. If you're using such a
  2464. package you'll often wish that the distributed syntax/tex.vim would support
  2465. it. However, clearly this is impractical. So please consider using the
  2466. techniques in |mysyntaxfile-add| to extend or modify the highlighting provided
  2467. by syntax/tex.vim. Please consider uploading any extensions that you write,
  2468. which typically would go in $HOME/after/syntax/tex/[pkgname].vim, to
  2469. http://vim.sf.net/.
  2470. I've included some support for various popular packages on my website: >
  2471. http://www.drchip.org/astronaut/vim/index.html#LATEXPKGS
  2472. <
  2473. The syntax files there go into your .../after/syntax/tex/ directory.
  2474. *tex-error* *g:tex_no_error*
  2475. Tex: Excessive Error Highlighting? ~
  2476. The <tex.vim> supports lexical error checking of various sorts. Thus,
  2477. although the error checking is ofttimes very useful, it can indicate
  2478. errors where none actually are. If this proves to be a problem for you,
  2479. you may put in your vimrc the following statement: >
  2480. let g:tex_no_error=1
  2481. and all error checking by <syntax/tex.vim> will be suppressed.
  2482. *tex-math*
  2483. Tex: Need a new Math Group? ~
  2484. If you want to include a new math group in your LaTeX, the following
  2485. code shows you an example as to how you might do so: >
  2486. call TexNewMathZone(sfx,mathzone,starform)
  2487. You'll want to provide the new math group with a unique suffix
  2488. (currently, A-L and V-Z are taken by <syntax/tex.vim> itself).
  2489. As an example, consider how eqnarray is set up by <syntax/tex.vim>: >
  2490. call TexNewMathZone("D","eqnarray",1)
  2491. You'll need to change "mathzone" to the name of your new math group,
  2492. and then to the call to it in .vim/after/syntax/tex.vim.
  2493. The "starform" variable, if true, implies that your new math group
  2494. has a starred form (ie. eqnarray*).
  2495. *tex-style* *b:tex_stylish*
  2496. Tex: Starting a New Style? ~
  2497. One may use "\makeatletter" in *.tex files, thereby making the use of "@" in
  2498. commands available. However, since the *.tex file doesn't have one of the
  2499. following suffices: sty cls clo dtx ltx, the syntax highlighting will flag
  2500. such use of @ as an error. To solve this: >
  2501. :let b:tex_stylish = 1
  2502. :set ft=tex
  2503. Putting "let g:tex_stylish=1" into your vimrc will make <syntax/tex.vim>
  2504. always accept such use of @.
  2505. *tex-cchar* *tex-cole* *tex-conceal*
  2506. Tex: Taking Advantage of Conceal Mode~
  2507. If you have |'conceallevel'| set to 2 and if your encoding is utf-8, then a
  2508. number of character sequences can be translated into appropriate utf-8 glyphs,
  2509. including various accented characters, Greek characters in MathZones, and
  2510. superscripts and subscripts in MathZones. Not all characters can be made into
  2511. superscripts or subscripts; the constraint is due to what utf-8 supports.
  2512. In fact, only a few characters are supported as subscripts.
  2513. One way to use this is to have vertically split windows (see |CTRL-W_v|); one
  2514. with |'conceallevel'| at 0 and the other at 2; and both using |'scrollbind'|.
  2515. *g:tex_conceal*
  2516. Tex: Selective Conceal Mode~
  2517. You may selectively use conceal mode by setting g:tex_conceal in your
  2518. vimrc. By default, g:tex_conceal is set to "admgs" to enable concealment
  2519. for the following sets of characters: >
  2520. a = accents/ligatures
  2521. b = bold and italic
  2522. d = delimiters
  2523. m = math symbols
  2524. g = Greek
  2525. s = superscripts/subscripts
  2526. <
  2527. By leaving one or more of these out, the associated conceal-character
  2528. substitution will not be made.
  2529. *g:tex_isk* *g:tex_stylish*
  2530. Tex: Controlling iskeyword~
  2531. Normally, LaTeX keywords support 0-9, a-z, A-z, and 192-255 only. Latex
  2532. keywords don't support the underscore - except when in *.sty files. The
  2533. syntax highlighting script handles this with the following logic:
  2534. * If g:tex_stylish exists and is 1
  2535. then the file will be treated as a "sty" file, so the "_"
  2536. will be allowed as part of keywords
  2537. (regardless of g:tex_isk)
  2538. * Else if the file's suffix is sty, cls, clo, dtx, or ltx,
  2539. then the file will be treated as a "sty" file, so the "_"
  2540. will be allowed as part of keywords
  2541. (regardless of g:tex_isk)
  2542. * If g:tex_isk exists, then it will be used for the local 'iskeyword'
  2543. * Else the local 'iskeyword' will be set to 48-57,a-z,A-Z,192-255
  2544. *tex-supersub* *g:tex_superscripts* *g:tex_subscripts*
  2545. Tex: Fine Subscript and Superscript Control~
  2546. See |tex-conceal| for how to enable concealed character replacement.
  2547. See |g:tex_conceal| for selectively concealing accents, bold/italic,
  2548. math, Greek, and superscripts/subscripts.
  2549. One may exert fine control over which superscripts and subscripts one
  2550. wants syntax-based concealment for (see |:syn-cchar|). Since not all
  2551. fonts support all characters, one may override the
  2552. concealed-replacement lists; by default these lists are given by: >
  2553. let g:tex_superscripts= "[0-9a-zA-W.,:;+-<>/()=]"
  2554. let g:tex_subscripts= "[0-9aehijklmnoprstuvx,+-/().]"
  2555. <
  2556. For example, I use Luxi Mono Bold; it doesn't support subscript
  2557. characters for "hklmnpst", so I put >
  2558. let g:tex_subscripts= "[0-9aeijoruvx,+-/().]"
  2559. < in ~/.config/nvim/ftplugin/tex/tex.vim in order to avoid having
  2560. inscrutable utf-8 glyphs appear.
  2561. *tex-matchcheck* *g:tex_matchcheck*
  2562. Tex: Match Check Control~
  2563. Sometimes one actually wants mismatched parentheses, square braces,
  2564. and or curly braces; for example, \text{(1,10]} is a range from but
  2565. not including 1 to and including 10. This wish, of course, conflicts
  2566. with the desire to provide delimiter mismatch detection. To
  2567. accommodate these conflicting goals, syntax/tex.vim provides >
  2568. g:tex_matchcheck = '[({[]'
  2569. < which is shown along with its default setting. So, if one doesn't
  2570. want [] and () to be checked for mismatches, try using >
  2571. let g:tex_matchcheck= '[{}]'
  2572. < If you don't want matching to occur inside bold and italicized
  2573. regions, >
  2574. let g:tex_excludematcher= 1
  2575. < will prevent the texMatcher group from being included in those regions.
  2576. TF *tf.vim* *ft-tf-syntax*
  2577. There is one option for the tf syntax highlighting.
  2578. For syncing, minlines defaults to 100. If you prefer another value, you can
  2579. set "tf_minlines" to the value you desire. Example: >
  2580. :let tf_minlines = your choice
  2581. <
  2582. VIM *vim.vim* *ft-vim-syntax*
  2583. *g:vimsyn_minlines* *g:vimsyn_maxlines*
  2584. There is a trade-off between more accurate syntax highlighting versus screen
  2585. updating speed. To improve accuracy, you may wish to increase the
  2586. g:vimsyn_minlines variable. The g:vimsyn_maxlines variable may be used to
  2587. improve screen updating rates (see |:syn-sync| for more on this). >
  2588. g:vimsyn_minlines : used to set synchronization minlines
  2589. g:vimsyn_maxlines : used to set synchronization maxlines
  2590. <
  2591. (g:vim_minlines and g:vim_maxlines are deprecated variants of
  2592. these two options)
  2593. *g:vimsyn_embed*
  2594. The g:vimsyn_embed option allows users to select what, if any, types of
  2595. embedded script highlighting they wish to have. >
  2596. g:vimsyn_embed == 0 : disable (don't embed any scripts)
  2597. g:vimsyn_embed == 'lPr' : support embedded lua, python and ruby
  2598. <
  2599. This option is disabled by default.
  2600. *g:vimsyn_folding*
  2601. Some folding is now supported with syntax/vim.vim: >
  2602. g:vimsyn_folding == 0 or doesn't exist: no syntax-based folding
  2603. g:vimsyn_folding =~ 'a' : augroups
  2604. g:vimsyn_folding =~ 'f' : fold functions
  2605. g:vimsyn_folding =~ 'P' : fold python script
  2606. <
  2607. *g:vimsyn_noerror*
  2608. Not all error highlighting that syntax/vim.vim does may be correct; Vim script
  2609. is a difficult language to highlight correctly. A way to suppress error
  2610. highlighting is to put the following line in your |vimrc|: >
  2611. let g:vimsyn_noerror = 1
  2612. <
  2613. XF86CONFIG *xf86conf.vim* *ft-xf86conf-syntax*
  2614. The syntax of XF86Config file differs in XFree86 v3.x and v4.x. Both
  2615. variants are supported. Automatic detection is used, but is far from perfect.
  2616. You may need to specify the version manually. Set the variable
  2617. xf86conf_xfree86_version to 3 or 4 according to your XFree86 version in
  2618. your vimrc. Example: >
  2619. :let xf86conf_xfree86_version=3
  2620. When using a mix of versions, set the b:xf86conf_xfree86_version variable.
  2621. Note that spaces and underscores in option names are not supported. Use
  2622. "SyncOnGreen" instead of "__s yn con gr_e_e_n" if you want the option name
  2623. highlighted.
  2624. XML *xml.vim* *ft-xml-syntax*
  2625. Xml namespaces are highlighted by default. This can be inhibited by
  2626. setting a global variable: >
  2627. :let g:xml_namespace_transparent=1
  2628. <
  2629. *xml-folding*
  2630. The xml syntax file provides syntax |folding| (see |:syn-fold|) between
  2631. start and end tags. This can be turned on by >
  2632. :let g:xml_syntax_folding = 1
  2633. :set foldmethod=syntax
  2634. Note: syntax folding might slow down syntax highlighting significantly,
  2635. especially for large files.
  2636. X Pixmaps (XPM) *xpm.vim* *ft-xpm-syntax*
  2637. xpm.vim creates its syntax items dynamically based upon the contents of the
  2638. XPM file. Thus if you make changes e.g. in the color specification strings,
  2639. you have to source it again e.g. with ":set syn=xpm".
  2640. To copy a pixel with one of the colors, yank a "pixel" with "yl" and insert it
  2641. somewhere else with "P".
  2642. Do you want to draw with the mouse? Try the following: >
  2643. :function! GetPixel()
  2644. : let c = getline(".")[col(".") - 1]
  2645. : echo c
  2646. : exe "noremap <LeftMouse> <LeftMouse>r" .. c
  2647. : exe "noremap <LeftDrag> <LeftMouse>r" .. c
  2648. :endfunction
  2649. :noremap <RightMouse> <LeftMouse>:call GetPixel()<CR>
  2650. :set guicursor=n:hor20 " to see the color beneath the cursor
  2651. This turns the right button into a pipette and the left button into a pen.
  2652. It will work with XPM files that have one character per pixel only and you
  2653. must not click outside of the pixel strings, but feel free to improve it.
  2654. It will look much better with a font in a quadratic cell size, e.g. for X: >
  2655. :set guifont=-*-clean-medium-r-*-*-8-*-*-*-*-80-*
  2656. YAML *yaml.vim* *ft-yaml-syntax*
  2657. *g:yaml_schema* *b:yaml_schema*
  2658. A YAML schema is a combination of a set of tags and a mechanism for resolving
  2659. non-specific tags. For user this means that YAML parser may, depending on
  2660. plain scalar contents, treat plain scalar (which can actually be only string
  2661. and nothing else) as a value of the other type: null, boolean, floating-point,
  2662. integer. `g:yaml_schema` option determines according to which schema values
  2663. will be highlighted specially. Supported schemas are
  2664. Schema Description ~
  2665. failsafe No additional highlighting.
  2666. json Supports JSON-style numbers, booleans and null.
  2667. core Supports more number, boolean and null styles.
  2668. pyyaml In addition to core schema supports highlighting timestamps,
  2669. but there are some differences in what is recognized as
  2670. numbers and many additional boolean values not present in core
  2671. schema.
  2672. Default schema is `core`.
  2673. Note that schemas are not actually limited to plain scalars, but this is the
  2674. only difference between schemas defined in YAML specification and the only
  2675. difference defined in the syntax file.
  2676. ZSH *zsh.vim* *ft-zsh-syntax*
  2677. The syntax script for zsh allows for syntax-based folding: >
  2678. :let g:zsh_fold_enable = 1
  2679. ==============================================================================
  2680. 6. Defining a syntax *:syn-define* *E410*
  2681. Vim understands three types of syntax items:
  2682. 1. Keyword
  2683. It can only contain keyword characters, according to the 'iskeyword'
  2684. option. It cannot contain other syntax items. It will only match with a
  2685. complete word (there are no keyword characters before or after the match).
  2686. The keyword "if" would match in "if(a=b)", but not in "ifdef x", because
  2687. "(" is not a keyword character and "d" is.
  2688. 2. Match
  2689. This is a match with a single regexp pattern.
  2690. 3. Region
  2691. This starts at a match of the "start" regexp pattern and ends with a match
  2692. with the "end" regexp pattern. Any other text can appear in between. A
  2693. "skip" regexp pattern can be used to avoid matching the "end" pattern.
  2694. Several syntax ITEMs can be put into one syntax GROUP. For a syntax group
  2695. you can give highlighting attributes. For example, you could have an item
  2696. to define a "/* .. */" comment and another one that defines a "// .." comment,
  2697. and put them both in the "Comment" group. You can then specify that a
  2698. "Comment" will be in bold font and have a blue color. You are free to make
  2699. one highlight group for one syntax item, or put all items into one group.
  2700. This depends on how you want to specify your highlighting attributes. Putting
  2701. each item in its own group results in having to specify the highlighting
  2702. for a lot of groups.
  2703. Note that a syntax group and a highlight group are similar. For a highlight
  2704. group you will have given highlight attributes. These attributes will be used
  2705. for the syntax group with the same name.
  2706. In case more than one item matches at the same position, the one that was
  2707. defined LAST wins. Thus you can override previously defined syntax items by
  2708. using an item that matches the same text. But a keyword always goes before a
  2709. match or region. And a keyword with matching case always goes before a
  2710. keyword with ignoring case.
  2711. PRIORITY *:syn-priority*
  2712. When several syntax items may match, these rules are used:
  2713. 1. When multiple Match or Region items start in the same position, the item
  2714. defined last has priority.
  2715. 2. A Keyword has priority over Match and Region items.
  2716. 3. An item that starts in an earlier position has priority over items that
  2717. start in later positions.
  2718. DEFINING CASE *:syn-case* *E390*
  2719. :sy[ntax] case [match | ignore]
  2720. This defines if the following ":syntax" commands will work with
  2721. matching case, when using "match", or with ignoring case, when using
  2722. "ignore". Note that any items before this are not affected, and all
  2723. items until the next ":syntax case" command are affected.
  2724. :sy[ntax] case
  2725. Show either "syntax case match" or "syntax case ignore" (translated).
  2726. DEFINING FOLDLEVEL *:syn-foldlevel*
  2727. :sy[ntax] foldlevel [start | minimum]
  2728. This defines how the foldlevel of a line is computed when using
  2729. foldmethod=syntax (see |fold-syntax| and |:syn-fold|):
  2730. start: Use level of item containing start of line.
  2731. minimum: Use lowest local-minimum level of items on line.
  2732. The default is "start". Use "minimum" to search a line horizontally
  2733. for the lowest level contained on the line that is followed by a
  2734. higher level. This produces more natural folds when syntax items
  2735. may close and open horizontally within a line.
  2736. :sy[ntax] foldlevel
  2737. Show either "syntax foldlevel start" or "syntax foldlevel minimum".
  2738. SPELL CHECKING *:syn-spell*
  2739. :sy[ntax] spell [toplevel | notoplevel | default]
  2740. This defines where spell checking is to be done for text that is not
  2741. in a syntax item:
  2742. toplevel: Text is spell checked.
  2743. notoplevel: Text is not spell checked.
  2744. default: When there is a @Spell cluster no spell checking.
  2745. For text in syntax items use the @Spell and @NoSpell clusters
  2746. |spell-syntax|. When there is no @Spell and no @NoSpell cluster then
  2747. spell checking is done for "default" and "toplevel".
  2748. To activate spell checking the 'spell' option must be set.
  2749. :sy[ntax] spell
  2750. Show either "syntax spell toplevel", "syntax spell notoplevel" or
  2751. "syntax spell default" (translated).
  2752. SYNTAX ISKEYWORD SETTING *:syn-iskeyword*
  2753. :sy[ntax] iskeyword [clear | {option}]
  2754. This defines the keyword characters. It's like the 'iskeyword' option
  2755. for but only applies to syntax highlighting.
  2756. clear: Syntax specific iskeyword setting is disabled and the
  2757. buffer-local 'iskeyword' setting is used.
  2758. {option} Set the syntax 'iskeyword' option to a new value.
  2759. Example: >
  2760. :syntax iskeyword @,48-57,192-255,$,_
  2761. <
  2762. This would set the syntax specific iskeyword option to include all
  2763. alphabetic characters, plus the numeric characters, all accented
  2764. characters and also includes the "_" and the "$".
  2765. If no argument is given, the current value will be output.
  2766. Setting this option influences what |/\k| matches in syntax patterns
  2767. and also determines where |:syn-keyword| will be checked for a new
  2768. match.
  2769. It is recommended when writing syntax files, to use this command to
  2770. set the correct value for the specific syntax language and not change
  2771. the 'iskeyword' option.
  2772. DEFINING KEYWORDS *:syn-keyword*
  2773. :sy[ntax] keyword {group-name} [{options}] {keyword} .. [{options}]
  2774. This defines a number of keywords.
  2775. {group-name} Is a syntax group name such as "Comment".
  2776. [{options}] See |:syn-arguments| below.
  2777. {keyword} .. Is a list of keywords which are part of this group.
  2778. Example: >
  2779. :syntax keyword Type int long char
  2780. <
  2781. The {options} can be given anywhere in the line. They will apply to
  2782. all keywords given, also for options that come after a keyword.
  2783. These examples do exactly the same: >
  2784. :syntax keyword Type contained int long char
  2785. :syntax keyword Type int long contained char
  2786. :syntax keyword Type int long char contained
  2787. < *E789* *E890*
  2788. When you have a keyword with an optional tail, like Ex commands in
  2789. Vim, you can put the optional characters inside [], to define all the
  2790. variations at once: >
  2791. :syntax keyword vimCommand ab[breviate] n[ext]
  2792. <
  2793. Don't forget that a keyword can only be recognized if all the
  2794. characters are included in the 'iskeyword' option. If one character
  2795. isn't, the keyword will never be recognized.
  2796. Multi-byte characters can also be used. These do not have to be in
  2797. 'iskeyword'.
  2798. See |:syn-iskeyword| for defining syntax specific iskeyword settings.
  2799. A keyword always has higher priority than a match or region, the
  2800. keyword is used if more than one item matches. Keywords do not nest
  2801. and a keyword can't contain anything else.
  2802. Note that when you have a keyword that is the same as an option (even
  2803. one that isn't allowed here), you can not use it. Use a match
  2804. instead.
  2805. The maximum length of a keyword is 80 characters.
  2806. The same keyword can be defined multiple times, when its containment
  2807. differs. For example, you can define the keyword once not contained
  2808. and use one highlight group, and once contained, and use a different
  2809. highlight group. Example: >
  2810. :syn keyword vimCommand tag
  2811. :syn keyword vimSetting contained tag
  2812. < When finding "tag" outside of any syntax item, the "vimCommand"
  2813. highlight group is used. When finding "tag" in a syntax item that
  2814. contains "vimSetting", the "vimSetting" group is used.
  2815. DEFINING MATCHES *:syn-match*
  2816. :sy[ntax] match {group-name} [{options}]
  2817. [excludenl]
  2818. [keepend]
  2819. {pattern}
  2820. [{options}]
  2821. This defines one match.
  2822. {group-name} A syntax group name such as "Comment".
  2823. [{options}] See |:syn-arguments| below.
  2824. [excludenl] Don't make a pattern with the end-of-line "$"
  2825. extend a containing match or region. Must be
  2826. given before the pattern. |:syn-excludenl|
  2827. keepend Don't allow contained matches to go past a
  2828. match with the end pattern. See
  2829. |:syn-keepend|.
  2830. {pattern} The search pattern that defines the match.
  2831. See |:syn-pattern| below.
  2832. Note that the pattern may match more than one
  2833. line, which makes the match depend on where
  2834. Vim starts searching for the pattern. You
  2835. need to make sure syncing takes care of this.
  2836. Example (match a character constant): >
  2837. :syntax match Character /'.'/hs=s+1,he=e-1
  2838. <
  2839. DEFINING REGIONS *:syn-region* *:syn-start* *:syn-skip* *:syn-end*
  2840. *E398* *E399*
  2841. :sy[ntax] region {group-name} [{options}]
  2842. [matchgroup={group-name}]
  2843. [keepend]
  2844. [extend]
  2845. [excludenl]
  2846. start={start-pattern} ..
  2847. [skip={skip-pattern}]
  2848. end={end-pattern} ..
  2849. [{options}]
  2850. This defines one region. It may span several lines.
  2851. {group-name} A syntax group name such as "Comment".
  2852. [{options}] See |:syn-arguments| below.
  2853. [matchgroup={group-name}] The syntax group to use for the following
  2854. start or end pattern matches only. Not used
  2855. for the text in between the matched start and
  2856. end patterns. Use NONE to reset to not using
  2857. a different group for the start or end match.
  2858. See |:syn-matchgroup|.
  2859. keepend Don't allow contained matches to go past a
  2860. match with the end pattern. See
  2861. |:syn-keepend|.
  2862. extend Override a "keepend" for an item this region
  2863. is contained in. See |:syn-extend|.
  2864. excludenl Don't make a pattern with the end-of-line "$"
  2865. extend a containing match or item. Only
  2866. useful for end patterns. Must be given before
  2867. the patterns it applies to. |:syn-excludenl|
  2868. start={start-pattern} The search pattern that defines the start of
  2869. the region. See |:syn-pattern| below.
  2870. skip={skip-pattern} The search pattern that defines text inside
  2871. the region where not to look for the end
  2872. pattern. See |:syn-pattern| below.
  2873. end={end-pattern} The search pattern that defines the end of
  2874. the region. See |:syn-pattern| below.
  2875. Example: >
  2876. :syntax region String start=+"+ skip=+\\"+ end=+"+
  2877. <
  2878. The start/skip/end patterns and the options can be given in any order.
  2879. There can be zero or one skip pattern. There must be one or more
  2880. start and end patterns. This means that you can omit the skip
  2881. pattern, but you must give at least one start and one end pattern. It
  2882. is allowed to have white space before and after the equal sign
  2883. (although it mostly looks better without white space).
  2884. When more than one start pattern is given, a match with one of these
  2885. is sufficient. This means there is an OR relation between the start
  2886. patterns. The last one that matches is used. The same is true for
  2887. the end patterns.
  2888. The search for the end pattern starts right after the start pattern.
  2889. Offsets are not used for this. This implies that the match for the
  2890. end pattern will never overlap with the start pattern.
  2891. The skip and end pattern can match across line breaks, but since the
  2892. search for the pattern can start in any line it often does not do what
  2893. you want. The skip pattern doesn't avoid a match of an end pattern in
  2894. the next line. Use single-line patterns to avoid trouble.
  2895. Note: The decision to start a region is only based on a matching start
  2896. pattern. There is no check for a matching end pattern. This does NOT
  2897. work: >
  2898. :syn region First start="(" end=":"
  2899. :syn region Second start="(" end=";"
  2900. < The Second always matches before the First (last defined pattern has
  2901. higher priority). The Second region then continues until the next
  2902. ';', no matter if there is a ':' before it. Using a match does work: >
  2903. :syn match First "(\_.\{-}:"
  2904. :syn match Second "(\_.\{-};"
  2905. < This pattern matches any character or line break with "\_." and
  2906. repeats that with "\{-}" (repeat as few as possible).
  2907. *:syn-keepend*
  2908. By default, a contained match can obscure a match for the end pattern.
  2909. This is useful for nesting. For example, a region that starts with
  2910. "{" and ends with "}", can contain another region. An encountered "}"
  2911. will then end the contained region, but not the outer region:
  2912. { starts outer "{}" region
  2913. { starts contained "{}" region
  2914. } ends contained "{}" region
  2915. } ends outer "{} region
  2916. If you don't want this, the "keepend" argument will make the matching
  2917. of an end pattern of the outer region also end any contained item.
  2918. This makes it impossible to nest the same region, but allows for
  2919. contained items to highlight parts of the end pattern, without causing
  2920. that to skip the match with the end pattern. Example: >
  2921. :syn match vimComment +"[^"]\+$+
  2922. :syn region vimCommand start="set" end="$" contains=vimComment keepend
  2923. < The "keepend" makes the vimCommand always end at the end of the line,
  2924. even though the contained vimComment includes a match with the <EOL>.
  2925. When "keepend" is not used, a match with an end pattern is retried
  2926. after each contained match. When "keepend" is included, the first
  2927. encountered match with an end pattern is used, truncating any
  2928. contained matches.
  2929. *:syn-extend*
  2930. The "keepend" behavior can be changed by using the "extend" argument.
  2931. When an item with "extend" is contained in an item that uses
  2932. "keepend", the "keepend" is ignored and the containing region will be
  2933. extended.
  2934. This can be used to have some contained items extend a region while
  2935. others don't. Example: >
  2936. :syn region htmlRef start=+<a>+ end=+</a>+ keepend contains=htmlItem,htmlScript
  2937. :syn match htmlItem +<[^>]*>+ contained
  2938. :syn region htmlScript start=+<script+ end=+</script[^>]*>+ contained extend
  2939. < Here the htmlItem item does not make the htmlRef item continue
  2940. further, it is only used to highlight the <> items. The htmlScript
  2941. item does extend the htmlRef item.
  2942. Another example: >
  2943. :syn region xmlFold start="<a>" end="</a>" fold transparent keepend extend
  2944. < This defines a region with "keepend", so that its end cannot be
  2945. changed by contained items, like when the "</a>" is matched to
  2946. highlight it differently. But when the xmlFold region is nested (it
  2947. includes itself), the "extend" applies, so that the "</a>" of a nested
  2948. region only ends that region, and not the one it is contained in.
  2949. *:syn-excludenl*
  2950. When a pattern for a match or end pattern of a region includes a '$'
  2951. to match the end-of-line, it will make a region item that it is
  2952. contained in continue on the next line. For example, a match with
  2953. "\\$" (backslash at the end of the line) can make a region continue
  2954. that would normally stop at the end of the line. This is the default
  2955. behavior. If this is not wanted, there are two ways to avoid it:
  2956. 1. Use "keepend" for the containing item. This will keep all
  2957. contained matches from extending the match or region. It can be
  2958. used when all contained items must not extend the containing item.
  2959. 2. Use "excludenl" in the contained item. This will keep that match
  2960. from extending the containing match or region. It can be used if
  2961. only some contained items must not extend the containing item.
  2962. "excludenl" must be given before the pattern it applies to.
  2963. *:syn-matchgroup*
  2964. "matchgroup" can be used to highlight the start and/or end pattern
  2965. differently than the body of the region. Example: >
  2966. :syntax region String matchgroup=Quote start=+"+ skip=+\\"+ end=+"+
  2967. < This will highlight the quotes with the "Quote" group, and the text in
  2968. between with the "String" group.
  2969. The "matchgroup" is used for all start and end patterns that follow,
  2970. until the next "matchgroup". Use "matchgroup=NONE" to go back to not
  2971. using a matchgroup.
  2972. In a start or end pattern that is highlighted with "matchgroup" the
  2973. contained items of the region are not used. This can be used to avoid
  2974. that a contained item matches in the start or end pattern match. When
  2975. using "transparent", this does not apply to a start or end pattern
  2976. match that is highlighted with "matchgroup".
  2977. Here is an example, which highlights three levels of parentheses in
  2978. different colors: >
  2979. :sy region par1 matchgroup=par1 start=/(/ end=/)/ contains=par2
  2980. :sy region par2 matchgroup=par2 start=/(/ end=/)/ contains=par3 contained
  2981. :sy region par3 matchgroup=par3 start=/(/ end=/)/ contains=par1 contained
  2982. :hi par1 ctermfg=red guifg=red
  2983. :hi par2 ctermfg=blue guifg=blue
  2984. :hi par3 ctermfg=darkgreen guifg=darkgreen
  2985. <
  2986. *E849*
  2987. The maximum number of syntax groups is 19999.
  2988. ==============================================================================
  2989. 7. :syntax arguments *:syn-arguments*
  2990. The :syntax commands that define syntax items take a number of arguments.
  2991. The common ones are explained here. The arguments may be given in any order
  2992. and may be mixed with patterns.
  2993. Not all commands accept all arguments. This table shows which arguments
  2994. can not be used for all commands:
  2995. *E395*
  2996. contains oneline fold display extend concealends~
  2997. :syntax keyword - - - - - -
  2998. :syntax match yes - yes yes yes -
  2999. :syntax region yes yes yes yes yes yes
  3000. These arguments can be used for all three commands:
  3001. conceal
  3002. cchar
  3003. contained
  3004. containedin
  3005. nextgroup
  3006. transparent
  3007. skipwhite
  3008. skipnl
  3009. skipempty
  3010. conceal *conceal* *:syn-conceal*
  3011. When the "conceal" argument is given, the item is marked as concealable.
  3012. Whether or not it is actually concealed depends on the value of the
  3013. 'conceallevel' option. The 'concealcursor' option is used to decide whether
  3014. concealable items in the current line are displayed unconcealed to be able to
  3015. edit the line.
  3016. Another way to conceal text is with |matchadd()|.
  3017. concealends *:syn-concealends*
  3018. When the "concealends" argument is given, the start and end matches of
  3019. the region, but not the contents of the region, are marked as concealable.
  3020. Whether or not they are actually concealed depends on the setting on the
  3021. 'conceallevel' option. The ends of a region can only be concealed separately
  3022. in this way when they have their own highlighting via "matchgroup"
  3023. cchar *:syn-cchar*
  3024. *E844*
  3025. The "cchar" argument defines the character shown in place of the item
  3026. when it is concealed (setting "cchar" only makes sense when the conceal
  3027. argument is given.) If "cchar" is not set then the default conceal
  3028. character defined in the 'listchars' option is used. The character cannot be
  3029. a control character such as Tab. Example: >
  3030. :syntax match Entity "&amp;" conceal cchar=&
  3031. See |hl-Conceal| for highlighting.
  3032. contained *:syn-contained*
  3033. When the "contained" argument is given, this item will not be recognized at
  3034. the top level, but only when it is mentioned in the "contains" field of
  3035. another match. Example: >
  3036. :syntax keyword Todo TODO contained
  3037. :syntax match Comment "//.*" contains=Todo
  3038. display *:syn-display*
  3039. If the "display" argument is given, this item will be skipped when the
  3040. detected highlighting will not be displayed. This will speed up highlighting,
  3041. by skipping this item when only finding the syntax state for the text that is
  3042. to be displayed.
  3043. Generally, you can use "display" for match and region items that meet these
  3044. conditions:
  3045. - The item does not continue past the end of a line. Example for C: A region
  3046. for a "/*" comment can't contain "display", because it continues on the next
  3047. line.
  3048. - The item does not contain items that continue past the end of the line or
  3049. make it continue on the next line.
  3050. - The item does not change the size of any item it is contained in. Example
  3051. for C: A match with "\\$" in a preprocessor match can't have "display",
  3052. because it may make that preprocessor match shorter.
  3053. - The item does not allow other items to match that didn't match otherwise,
  3054. and that item may extend the match too far. Example for C: A match for a
  3055. "//" comment can't use "display", because a "/*" inside that comment would
  3056. match then and start a comment which extends past the end of the line.
  3057. Examples, for the C language, where "display" can be used:
  3058. - match with a number
  3059. - match with a label
  3060. transparent *:syn-transparent*
  3061. If the "transparent" argument is given, this item will not be highlighted
  3062. itself, but will take the highlighting of the item it is contained in. This
  3063. is useful for syntax items that don't need any highlighting but are used
  3064. only to skip over a part of the text.
  3065. The "contains=" argument is also inherited from the item it is contained in,
  3066. unless a "contains" argument is given for the transparent item itself. To
  3067. avoid that unwanted items are contained, use "contains=NONE". Example, which
  3068. highlights words in strings, but makes an exception for "vim": >
  3069. :syn match myString /'[^']*'/ contains=myWord,myVim
  3070. :syn match myWord /\<[a-z]*\>/ contained
  3071. :syn match myVim /\<vim\>/ transparent contained contains=NONE
  3072. :hi link myString String
  3073. :hi link myWord Comment
  3074. Since the "myVim" match comes after "myWord" it is the preferred match (last
  3075. match in the same position overrules an earlier one). The "transparent"
  3076. argument makes the "myVim" match use the same highlighting as "myString". But
  3077. it does not contain anything. If the "contains=NONE" argument would be left
  3078. out, then "myVim" would use the contains argument from myString and allow
  3079. "myWord" to be contained, which will be highlighted as a Comment. This
  3080. happens because a contained match doesn't match inside itself in the same
  3081. position, thus the "myVim" match doesn't overrule the "myWord" match here.
  3082. When you look at the colored text, it is like looking at layers of contained
  3083. items. The contained item is on top of the item it is contained in, thus you
  3084. see the contained item. When a contained item is transparent, you can look
  3085. through, thus you see the item it is contained in. In a picture:
  3086. look from here
  3087. | | | | | |
  3088. V V V V V V
  3089. xxxx yyy more contained items
  3090. .................... contained item (transparent)
  3091. ============================= first item
  3092. The 'x', 'y' and '=' represent a highlighted syntax item. The '.' represent a
  3093. transparent group.
  3094. What you see is:
  3095. =======xxxx=======yyy========
  3096. Thus you look through the transparent "....".
  3097. oneline *:syn-oneline*
  3098. The "oneline" argument indicates that the region does not cross a line
  3099. boundary. It must match completely in the current line. However, when the
  3100. region has a contained item that does cross a line boundary, it continues on
  3101. the next line anyway. A contained item can be used to recognize a line
  3102. continuation pattern. But the "end" pattern must still match in the first
  3103. line, otherwise the region doesn't even start.
  3104. When the start pattern includes a "\n" to match an end-of-line, the end
  3105. pattern must be found in the same line as where the start pattern ends. The
  3106. end pattern may also include an end-of-line. Thus the "oneline" argument
  3107. means that the end of the start pattern and the start of the end pattern must
  3108. be within one line. This can't be changed by a skip pattern that matches a
  3109. line break.
  3110. fold *:syn-fold*
  3111. The "fold" argument makes the fold level increase by one for this item.
  3112. Example: >
  3113. :syn region myFold start="{" end="}" transparent fold
  3114. :syn sync fromstart
  3115. :set foldmethod=syntax
  3116. This will make each {} block form one fold.
  3117. The fold will start on the line where the item starts, and end where the item
  3118. ends. If the start and end are within the same line, there is no fold.
  3119. The 'foldnestmax' option limits the nesting of syntax folds.
  3120. See |:syn-foldlevel| to control how the foldlevel of a line is computed
  3121. from its syntax items.
  3122. *:syn-contains* *E405* *E406* *E407* *E408* *E409*
  3123. contains={group-name},..
  3124. The "contains" argument is followed by a list of syntax group names. These
  3125. groups will be allowed to begin inside the item (they may extend past the
  3126. containing group's end). This allows for recursive nesting of matches and
  3127. regions. If there is no "contains" argument, no groups will be contained in
  3128. this item. The group names do not need to be defined before they can be used
  3129. here.
  3130. contains=ALL
  3131. If the only item in the contains list is "ALL", then all
  3132. groups will be accepted inside the item.
  3133. contains=ALLBUT,{group-name},..
  3134. If the first item in the contains list is "ALLBUT", then all
  3135. groups will be accepted inside the item, except the ones that
  3136. are listed. Example: >
  3137. :syntax region Block start="{" end="}" ... contains=ALLBUT,Function
  3138. contains=TOP
  3139. If the first item in the contains list is "TOP", then all
  3140. groups will be accepted that don't have the "contained"
  3141. argument.
  3142. contains=TOP,{group-name},..
  3143. Like "TOP", but excluding the groups that are listed.
  3144. contains=CONTAINED
  3145. If the first item in the contains list is "CONTAINED", then
  3146. all groups will be accepted that have the "contained"
  3147. argument.
  3148. contains=CONTAINED,{group-name},..
  3149. Like "CONTAINED", but excluding the groups that are
  3150. listed.
  3151. The {group-name} in the "contains" list can be a pattern. All group names
  3152. that match the pattern will be included (or excluded, if "ALLBUT" is used).
  3153. The pattern cannot contain white space or a ','. Example: >
  3154. ... contains=Comment.*,Keyw[0-3]
  3155. The matching will be done at moment the syntax command is executed. Groups
  3156. that are defined later will not be matched. Also, if the current syntax
  3157. command defines a new group, it is not matched. Be careful: When putting
  3158. syntax commands in a file you can't rely on groups NOT being defined, because
  3159. the file may have been sourced before, and ":syn clear" doesn't remove the
  3160. group names.
  3161. The contained groups will also match in the start and end patterns of a
  3162. region. If this is not wanted, the "matchgroup" argument can be used
  3163. |:syn-matchgroup|. The "ms=" and "me=" offsets can be used to change the
  3164. region where contained items do match. Note that this may also limit the
  3165. area that is highlighted
  3166. containedin={group-name}... *:syn-containedin*
  3167. The "containedin" argument is followed by a list of syntax group names. The
  3168. item will be allowed to begin inside these groups. This works as if the
  3169. containing item has a "contains=" argument that includes this item.
  3170. The {group-name}... can be used just like for "contains", as explained above.
  3171. This is useful when adding a syntax item afterwards. An item can be told to
  3172. be included inside an already existing item, without changing the definition
  3173. of that item. For example, to highlight a word in a C comment after loading
  3174. the C syntax: >
  3175. :syn keyword myword HELP containedin=cComment contained
  3176. Note that "contained" is also used, to avoid that the item matches at the top
  3177. level.
  3178. Matches for "containedin" are added to the other places where the item can
  3179. appear. A "contains" argument may also be added as usual. Don't forget that
  3180. keywords never contain another item, thus adding them to "containedin" won't
  3181. work.
  3182. nextgroup={group-name},.. *:syn-nextgroup*
  3183. The "nextgroup" argument is followed by a list of syntax group names,
  3184. separated by commas (just like with "contains", so you can also use patterns).
  3185. If the "nextgroup" argument is given, the mentioned syntax groups will be
  3186. tried for a match, after the match or region ends. If none of the groups have
  3187. a match, highlighting continues normally. If there is a match, this group
  3188. will be used, even when it is not mentioned in the "contains" field of the
  3189. current group. This is like giving the mentioned group priority over all
  3190. other groups. Example: >
  3191. :syntax match ccFoobar "Foo.\{-}Bar" contains=ccFoo
  3192. :syntax match ccFoo "Foo" contained nextgroup=ccFiller
  3193. :syntax region ccFiller start="." matchgroup=ccBar end="Bar" contained
  3194. This will highlight "Foo" and "Bar" differently, and only when there is a
  3195. "Bar" after "Foo". In the text line below, "f" shows where ccFoo is used for
  3196. highlighting, and "bbb" where ccBar is used. >
  3197. Foo asdfasd Bar asdf Foo asdf Bar asdf
  3198. fff bbb fff bbb
  3199. Note the use of ".\{-}" to skip as little as possible until the next Bar.
  3200. when ".*" would be used, the "asdf" in between "Bar" and "Foo" would be
  3201. highlighted according to the "ccFoobar" group, because the ccFooBar match
  3202. would include the first "Foo" and the last "Bar" in the line (see |pattern|).
  3203. skipwhite *:syn-skipwhite*
  3204. skipnl *:syn-skipnl*
  3205. skipempty *:syn-skipempty*
  3206. These arguments are only used in combination with "nextgroup". They can be
  3207. used to allow the next group to match after skipping some text:
  3208. skipwhite skip over space and tab characters
  3209. skipnl skip over the end of a line
  3210. skipempty skip over empty lines (implies a "skipnl")
  3211. When "skipwhite" is present, the white space is only skipped if there is no
  3212. next group that matches the white space.
  3213. When "skipnl" is present, the match with nextgroup may be found in the next
  3214. line. This only happens when the current item ends at the end of the current
  3215. line! When "skipnl" is not present, the nextgroup will only be found after
  3216. the current item in the same line.
  3217. When skipping text while looking for a next group, the matches for other
  3218. groups are ignored. Only when no next group matches, other items are tried
  3219. for a match again. This means that matching a next group and skipping white
  3220. space and <EOL>s has a higher priority than other items.
  3221. Example: >
  3222. :syn match ifstart "\<if.*" nextgroup=ifline skipwhite skipempty
  3223. :syn match ifline "[^ \t].*" nextgroup=ifline skipwhite skipempty contained
  3224. :syn match ifline "endif" contained
  3225. Note that the "[^ \t].*" match matches all non-white text. Thus it would also
  3226. match "endif". Therefore the "endif" match is put last, so that it takes
  3227. precedence.
  3228. Note that this example doesn't work for nested "if"s. You need to add
  3229. "contains" arguments to make that work (omitted for simplicity of the
  3230. example).
  3231. IMPLICIT CONCEAL *:syn-conceal-implicit*
  3232. :sy[ntax] conceal [on|off]
  3233. This defines if the following ":syntax" commands will define keywords,
  3234. matches or regions with the "conceal" flag set. After ":syn conceal
  3235. on", all subsequent ":syn keyword", ":syn match" or ":syn region"
  3236. defined will have the "conceal" flag set implicitly. ":syn conceal
  3237. off" returns to the normal state where the "conceal" flag must be
  3238. given explicitly.
  3239. :sy[ntax] conceal
  3240. Show either "syntax conceal on" or "syntax conceal off" (translated).
  3241. ==============================================================================
  3242. 8. Syntax patterns *:syn-pattern* *E401* *E402*
  3243. In the syntax commands, a pattern must be surrounded by two identical
  3244. characters. This is like it works for the ":s" command. The most common to
  3245. use is the double quote. But if the pattern contains a double quote, you can
  3246. use another character that is not used in the pattern. Examples: >
  3247. :syntax region Comment start="/\*" end="\*/"
  3248. :syntax region String start=+"+ end=+"+ skip=+\\"+
  3249. See |pattern| for the explanation of what a pattern is. Syntax patterns are
  3250. always interpreted like the 'magic' option is set, no matter what the actual
  3251. value of 'magic' is. And the patterns are interpreted like the 'l' flag is
  3252. not included in 'cpoptions'. This was done to make syntax files portable and
  3253. independent of the 'magic' setting.
  3254. Try to avoid patterns that can match an empty string, such as "[a-z]*".
  3255. This slows down the highlighting a lot, because it matches everywhere.
  3256. *:syn-pattern-offset*
  3257. The pattern can be followed by a character offset. This can be used to
  3258. change the highlighted part, and to change the text area included in the
  3259. match or region (which only matters when trying to match other items). Both
  3260. are relative to the matched pattern. The character offset for a skip
  3261. pattern can be used to tell where to continue looking for an end pattern.
  3262. The offset takes the form of "{what}={offset}"
  3263. The {what} can be one of seven strings:
  3264. ms Match Start offset for the start of the matched text
  3265. me Match End offset for the end of the matched text
  3266. hs Highlight Start offset for where the highlighting starts
  3267. he Highlight End offset for where the highlighting ends
  3268. rs Region Start offset for where the body of a region starts
  3269. re Region End offset for where the body of a region ends
  3270. lc Leading Context offset past "leading context" of pattern
  3271. The {offset} can be:
  3272. s start of the matched pattern
  3273. s+{nr} start of the matched pattern plus {nr} chars to the right
  3274. s-{nr} start of the matched pattern plus {nr} chars to the left
  3275. e end of the matched pattern
  3276. e+{nr} end of the matched pattern plus {nr} chars to the right
  3277. e-{nr} end of the matched pattern plus {nr} chars to the left
  3278. {nr} (for "lc" only): start matching {nr} chars right of the start
  3279. Examples: "ms=s+1", "hs=e-2", "lc=3".
  3280. Although all offsets are accepted after any pattern, they are not always
  3281. meaningful. This table shows which offsets are actually used:
  3282. ms me hs he rs re lc ~
  3283. match item yes yes yes yes - - yes
  3284. region item start yes - yes - yes - yes
  3285. region item skip - yes - - - - yes
  3286. region item end - yes - yes - yes yes
  3287. Offsets can be concatenated, with a ',' in between. Example: >
  3288. :syn match String /"[^"]*"/hs=s+1,he=e-1
  3289. <
  3290. some "string" text
  3291. ^^^^^^ highlighted
  3292. Notes:
  3293. - There must be no white space between the pattern and the character
  3294. offset(s).
  3295. - The highlighted area will never be outside of the matched text.
  3296. - A negative offset for an end pattern may not always work, because the end
  3297. pattern may be detected when the highlighting should already have stopped.
  3298. - Before Vim 7.2 the offsets were counted in bytes instead of characters.
  3299. This didn't work well for multibyte characters, so it was changed with the
  3300. Vim 7.2 release.
  3301. - The start of a match cannot be in a line other than where the pattern
  3302. matched. This doesn't work: "a\nb"ms=e. You can make the highlighting
  3303. start in another line, this does work: "a\nb"hs=e.
  3304. Example (match a comment but don't highlight the /* and */): >
  3305. :syntax region Comment start="/\*"hs=e+1 end="\*/"he=s-1
  3306. <
  3307. /* this is a comment */
  3308. ^^^^^^^^^^^^^^^^^^^ highlighted
  3309. A more complicated Example: >
  3310. :syn region Exa matchgroup=Foo start="foo"hs=s+2,rs=e+2 matchgroup=Bar end="bar"me=e-1,he=e-1,re=s-1
  3311. <
  3312. abcfoostringbarabc
  3313. mmmmmmmmmmm match
  3314. sssrrreee highlight start/region/end ("Foo", "Exa" and "Bar")
  3315. Leading context *:syn-lc* *:syn-leading* *:syn-context*
  3316. Note: This is an obsolete feature, only included for backwards compatibility
  3317. with previous Vim versions. It's now recommended to use the |/\@<=| construct
  3318. in the pattern. You can also often use |/\zs|.
  3319. The "lc" offset specifies leading context -- a part of the pattern that must
  3320. be present, but is not considered part of the match. An offset of "lc=n" will
  3321. cause Vim to step back n columns before attempting the pattern match, allowing
  3322. characters which have already been matched in previous patterns to also be
  3323. used as leading context for this match. This can be used, for instance, to
  3324. specify that an "escaping" character must not precede the match: >
  3325. :syn match ZNoBackslash "[^\\]z"ms=s+1
  3326. :syn match WNoBackslash "[^\\]w"lc=1
  3327. :syn match Underline "_\+"
  3328. <
  3329. ___zzzz ___wwww
  3330. ^^^ ^^^ matches Underline
  3331. ^ ^ matches ZNoBackslash
  3332. ^^^^ matches WNoBackslash
  3333. The "ms" offset is automatically set to the same value as the "lc" offset,
  3334. unless you set "ms" explicitly.
  3335. Multi-line patterns *:syn-multi-line*
  3336. The patterns can include "\n" to match an end-of-line. Mostly this works as
  3337. expected, but there are a few exceptions.
  3338. When using a start pattern with an offset, the start of the match is not
  3339. allowed to start in a following line. The highlighting can start in a
  3340. following line though. Using the "\zs" item also requires that the start of
  3341. the match doesn't move to another line.
  3342. The skip pattern can include the "\n", but the search for an end pattern will
  3343. continue in the first character of the next line, also when that character is
  3344. matched by the skip pattern. This is because redrawing may start in any line
  3345. halfway in a region and there is no check if the skip pattern started in a
  3346. previous line. For example, if the skip pattern is "a\nb" and an end pattern
  3347. is "b", the end pattern does match in the second line of this: >
  3348. x x a
  3349. b x x
  3350. Generally this means that the skip pattern should not match any characters
  3351. after the "\n".
  3352. External matches *:syn-ext-match*
  3353. These extra regular expression items are available in region patterns:
  3354. */\z(* */\z(\)* *E50* *E52* *E879*
  3355. \z(\) Marks the sub-expression as "external", meaning that it can be
  3356. accessed from another pattern match. Currently only usable in
  3357. defining a syntax region start pattern.
  3358. */\z1* */\z2* */\z3* */\z4* */\z5*
  3359. \z1 ... \z9 */\z6* */\z7* */\z8* */\z9* *E66* *E67*
  3360. Matches the same string that was matched by the corresponding
  3361. sub-expression in a previous start pattern match.
  3362. Sometimes the start and end patterns of a region need to share a common
  3363. sub-expression. A common example is the "here" document in Perl and many Unix
  3364. shells. This effect can be achieved with the "\z" special regular expression
  3365. items, which marks a sub-expression as "external", in the sense that it can be
  3366. referenced from outside the pattern in which it is defined. The here-document
  3367. example, for instance, can be done like this: >
  3368. :syn region hereDoc start="<<\z(\I\i*\)" end="^\z1$"
  3369. As can be seen here, the \z actually does double duty. In the start pattern,
  3370. it marks the "\(\I\i*\)" sub-expression as external; in the end pattern, it
  3371. changes the \z1 back-reference into an external reference referring to the
  3372. first external sub-expression in the start pattern. External references can
  3373. also be used in skip patterns: >
  3374. :syn region foo start="start \z(\I\i*\)" skip="not end \z1" end="end \z1"
  3375. Note that normal and external sub-expressions are completely orthogonal and
  3376. indexed separately; for instance, if the pattern "\z(..\)\(..\)" is applied
  3377. to the string "aabb", then \1 will refer to "bb" and \z1 will refer to "aa".
  3378. Note also that external sub-expressions cannot be accessed as back-references
  3379. within the same pattern like normal sub-expressions. If you want to use one
  3380. sub-expression as both a normal and an external sub-expression, you can nest
  3381. the two, as in "\(\z(...\)\)".
  3382. Note that only matches within a single line can be used. Multi-line matches
  3383. cannot be referred to.
  3384. ==============================================================================
  3385. 9. Syntax clusters *:syn-cluster* *E400*
  3386. :sy[ntax] cluster {cluster-name} [contains={group-name}..]
  3387. [add={group-name}..]
  3388. [remove={group-name}..]
  3389. This command allows you to cluster a list of syntax groups together under a
  3390. single name.
  3391. contains={group-name}..
  3392. The cluster is set to the specified list of groups.
  3393. add={group-name}..
  3394. The specified groups are added to the cluster.
  3395. remove={group-name}..
  3396. The specified groups are removed from the cluster.
  3397. A cluster so defined may be referred to in a contains=.., containedin=..,
  3398. nextgroup=.., add=.. or remove=.. list with a "@" prefix. You can also use
  3399. this notation to implicitly declare a cluster before specifying its contents.
  3400. Example: >
  3401. :syntax match Thing "# [^#]\+ #" contains=@ThingMembers
  3402. :syntax cluster ThingMembers contains=ThingMember1,ThingMember2
  3403. As the previous example suggests, modifications to a cluster are effectively
  3404. retroactive; the membership of the cluster is checked at the last minute, so
  3405. to speak: >
  3406. :syntax keyword A aaa
  3407. :syntax keyword B bbb
  3408. :syntax cluster AandB contains=A
  3409. :syntax match Stuff "( aaa bbb )" contains=@AandB
  3410. :syntax cluster AandB add=B " now both keywords are matched in Stuff
  3411. This also has implications for nested clusters: >
  3412. :syntax keyword A aaa
  3413. :syntax keyword B bbb
  3414. :syntax cluster SmallGroup contains=B
  3415. :syntax cluster BigGroup contains=A,@SmallGroup
  3416. :syntax match Stuff "( aaa bbb )" contains=@BigGroup
  3417. :syntax cluster BigGroup remove=B " no effect, since B isn't in BigGroup
  3418. :syntax cluster SmallGroup remove=B " now bbb isn't matched within Stuff
  3419. <
  3420. *E848*
  3421. The maximum number of clusters is 9767.
  3422. ==============================================================================
  3423. 10. Including syntax files *:syn-include* *E397*
  3424. It is often useful for one language's syntax file to include a syntax file for
  3425. a related language. Depending on the exact relationship, this can be done in
  3426. two different ways:
  3427. - If top-level syntax items in the included syntax file are to be
  3428. allowed at the top level in the including syntax, you can simply use
  3429. the |:runtime| command: >
  3430. " In cpp.vim:
  3431. :runtime! syntax/c.vim
  3432. :unlet b:current_syntax
  3433. < - If top-level syntax items in the included syntax file are to be
  3434. contained within a region in the including syntax, you can use the
  3435. ":syntax include" command:
  3436. :sy[ntax] include [@{grouplist-name}] {file-name}
  3437. All syntax items declared in the included file will have the
  3438. "contained" flag added. In addition, if a group list is specified,
  3439. all top-level syntax items in the included file will be added to
  3440. that list. >
  3441. " In perl.vim:
  3442. :syntax include @Pod <sfile>:p:h/pod.vim
  3443. :syntax region perlPOD start="^=head" end="^=cut" contains=@Pod
  3444. <
  3445. When {file-name} is an absolute path (starts with "/", "c:", "$VAR"
  3446. or "<sfile>") that file is sourced. When it is a relative path
  3447. (e.g., "syntax/pod.vim") the file is searched for in 'runtimepath'.
  3448. All matching files are loaded. Using a relative path is
  3449. recommended, because it allows a user to replace the included file
  3450. with their own version, without replacing the file that does the
  3451. ":syn include".
  3452. *E847*
  3453. The maximum number of includes is 999.
  3454. ==============================================================================
  3455. 11. Synchronizing *:syn-sync* *E403* *E404*
  3456. Vim wants to be able to start redrawing in any position in the document. To
  3457. make this possible it needs to know the syntax state at the position where
  3458. redrawing starts.
  3459. :sy[ntax] sync [ccomment [group-name] | minlines={N} | ...]
  3460. There are four ways to synchronize:
  3461. 1. Always parse from the start of the file.
  3462. |:syn-sync-first|
  3463. 2. Based on C-style comments. Vim understands how C-comments work and can
  3464. figure out if the current line starts inside or outside a comment.
  3465. |:syn-sync-second|
  3466. 3. Jumping back a certain number of lines and start parsing there.
  3467. |:syn-sync-third|
  3468. 4. Searching backwards in the text for a pattern to sync on.
  3469. |:syn-sync-fourth|
  3470. *:syn-sync-maxlines* *:syn-sync-minlines*
  3471. For the last three methods, the line range where the parsing can start is
  3472. limited by "minlines" and "maxlines".
  3473. If the "minlines={N}" argument is given, the parsing always starts at least
  3474. that many lines backwards. This can be used if the parsing may take a few
  3475. lines before it's correct, or when it's not possible to use syncing.
  3476. If the "maxlines={N}" argument is given, the number of lines that are searched
  3477. for a comment or syncing pattern is restricted to N lines backwards (after
  3478. adding "minlines"). This is useful if you have few things to sync on and a
  3479. slow machine. Example: >
  3480. :syntax sync maxlines=500 ccomment
  3481. <
  3482. *:syn-sync-linebreaks*
  3483. When using a pattern that matches multiple lines, a change in one line may
  3484. cause a pattern to no longer match in a previous line. This means has to
  3485. start above where the change was made. How many lines can be specified with
  3486. the "linebreaks" argument. For example, when a pattern may include one line
  3487. break use this: >
  3488. :syntax sync linebreaks=1
  3489. The result is that redrawing always starts at least one line before where a
  3490. change was made. The default value for "linebreaks" is zero. Usually the
  3491. value for "minlines" is bigger than "linebreaks".
  3492. First syncing method: *:syn-sync-first*
  3493. >
  3494. :syntax sync fromstart
  3495. The file will be parsed from the start. This makes syntax highlighting
  3496. accurate, but can be slow for long files. Vim caches previously parsed text,
  3497. so that it's only slow when parsing the text for the first time. However,
  3498. when making changes some part of the text needs to be parsed again (worst
  3499. case: to the end of the file).
  3500. Using "fromstart" is equivalent to using "minlines" with a very large number.
  3501. Second syncing method: *:syn-sync-second* *:syn-sync-ccomment*
  3502. For the second method, only the "ccomment" argument needs to be given.
  3503. Example: >
  3504. :syntax sync ccomment
  3505. When Vim finds that the line where displaying starts is inside a C-style
  3506. comment, the last region syntax item with the group-name "Comment" will be
  3507. used. This requires that there is a region with the group-name "Comment"!
  3508. An alternate group name can be specified, for example: >
  3509. :syntax sync ccomment javaComment
  3510. This means that the last item specified with "syn region javaComment" will be
  3511. used for the detected C comment region. This only works properly if that
  3512. region does have a start pattern "\/*" and an end pattern "*\/".
  3513. The "maxlines" argument can be used to restrict the search to a number of
  3514. lines. The "minlines" argument can be used to at least start a number of
  3515. lines back (e.g., for when there is some construct that only takes a few
  3516. lines, but it hard to sync on).
  3517. Note: Syncing on a C comment doesn't work properly when strings are used
  3518. that cross a line and contain a "*/". Since letting strings cross a line
  3519. is a bad programming habit (many compilers give a warning message), and the
  3520. chance of a "*/" appearing inside a comment is very small, this restriction
  3521. is hardly ever noticed.
  3522. Third syncing method: *:syn-sync-third*
  3523. For the third method, only the "minlines={N}" argument needs to be given.
  3524. Vim will subtract {N} from the line number and start parsing there. This
  3525. means {N} extra lines need to be parsed, which makes this method a bit slower.
  3526. Example: >
  3527. :syntax sync minlines=50
  3528. "lines" is equivalent to "minlines" (used by older versions).
  3529. Fourth syncing method: *:syn-sync-fourth*
  3530. The idea is to synchronize on the end of a few specific regions, called a
  3531. sync pattern. Only regions can cross lines, so when we find the end of some
  3532. region, we might be able to know in which syntax item we are. The search
  3533. starts in the line just above the one where redrawing starts. From there
  3534. the search continues backwards in the file.
  3535. This works just like the non-syncing syntax items. You can use contained
  3536. matches, nextgroup, etc. But there are a few differences:
  3537. - Keywords cannot be used.
  3538. - The syntax items with the "sync" keyword form a completely separated group
  3539. of syntax items. You can't mix syncing groups and non-syncing groups.
  3540. - The matching works backwards in the buffer (line by line), instead of
  3541. forwards.
  3542. - A line continuation pattern can be given. It is used to decide which group
  3543. of lines need to be searched like they were one line. This means that the
  3544. search for a match with the specified items starts in the first of the
  3545. consecutive lines that contain the continuation pattern.
  3546. - When using "nextgroup" or "contains", this only works within one line (or
  3547. group of continued lines).
  3548. - When using a region, it must start and end in the same line (or group of
  3549. continued lines). Otherwise the end is assumed to be at the end of the
  3550. line (or group of continued lines).
  3551. - When a match with a sync pattern is found, the rest of the line (or group of
  3552. continued lines) is searched for another match. The last match is used.
  3553. This is used when a line can contain both the start end the end of a region
  3554. (e.g., in a C-comment like /* this */, the last "*/" is used).
  3555. There are two ways how a match with a sync pattern can be used:
  3556. 1. Parsing for highlighting starts where redrawing starts (and where the
  3557. search for the sync pattern started). The syntax group that is expected
  3558. to be valid there must be specified. This works well when the regions
  3559. that cross lines cannot contain other regions.
  3560. 2. Parsing for highlighting continues just after the match. The syntax group
  3561. that is expected to be present just after the match must be specified.
  3562. This can be used when the previous method doesn't work well. It's much
  3563. slower, because more text needs to be parsed.
  3564. Both types of sync patterns can be used at the same time.
  3565. Besides the sync patterns, other matches and regions can be specified, to
  3566. avoid finding unwanted matches.
  3567. [The reason that the sync patterns are given separately, is that mostly the
  3568. search for the sync point can be much simpler than figuring out the
  3569. highlighting. The reduced number of patterns means it will go (much)
  3570. faster.]
  3571. *syn-sync-grouphere* *E393* *E394*
  3572. :syntax sync match {sync-group-name} grouphere {group-name} "pattern" ..
  3573. Define a match that is used for syncing. {group-name} is the
  3574. name of a syntax group that follows just after the match. Parsing
  3575. of the text for highlighting starts just after the match. A region
  3576. must exist for this {group-name}. The first one defined will be used.
  3577. "NONE" can be used for when there is no syntax group after the match.
  3578. *syn-sync-groupthere*
  3579. :syntax sync match {sync-group-name} groupthere {group-name} "pattern" ..
  3580. Like "grouphere", but {group-name} is the name of a syntax group that
  3581. is to be used at the start of the line where searching for the sync
  3582. point started. The text between the match and the start of the sync
  3583. pattern searching is assumed not to change the syntax highlighting.
  3584. For example, in C you could search backwards for "/*" and "*/". If
  3585. "/*" is found first, you know that you are inside a comment, so the
  3586. "groupthere" is "cComment". If "*/" is found first, you know that you
  3587. are not in a comment, so the "groupthere" is "NONE". (in practice
  3588. it's a bit more complicated, because the "/*" and "*/" could appear
  3589. inside a string. That's left as an exercise to the reader...).
  3590. :syntax sync match ..
  3591. :syntax sync region ..
  3592. Without a "groupthere" argument. Define a region or match that is
  3593. skipped while searching for a sync point.
  3594. *syn-sync-linecont*
  3595. :syntax sync linecont {pattern}
  3596. When {pattern} matches in a line, it is considered to continue in
  3597. the next line. This means that the search for a sync point will
  3598. consider the lines to be concatenated.
  3599. If the "maxlines={N}" argument is given too, the number of lines that are
  3600. searched for a match is restricted to N. This is useful if you have very
  3601. few things to sync on and a slow machine. Example: >
  3602. :syntax sync maxlines=100
  3603. You can clear all sync settings with: >
  3604. :syntax sync clear
  3605. You can clear specific sync patterns with: >
  3606. :syntax sync clear {sync-group-name} ..
  3607. ==============================================================================
  3608. 12. Listing syntax items *:syntax* *:sy* *:syn* *:syn-list*
  3609. This command lists all the syntax items: >
  3610. :sy[ntax] [list]
  3611. To show the syntax items for one syntax group: >
  3612. :sy[ntax] list {group-name}
  3613. To list the syntax groups in one cluster: *E392* >
  3614. :sy[ntax] list @{cluster-name}
  3615. See above for other arguments for the ":syntax" command.
  3616. Note that the ":syntax" command can be abbreviated to ":sy", although ":syn"
  3617. is mostly used, because it looks better.
  3618. ==============================================================================
  3619. 12. Highlight command *:highlight* *:hi* *E28* *E411* *E415*
  3620. There are two types of highlight groups:
  3621. - The built-in |highlight-groups|.
  3622. - The ones used for specific languages. For these the name starts with the
  3623. name of the language. Many of these don't have any attributes, but are
  3624. linked to a group of the second type.
  3625. *hitest.vim*
  3626. You can see all the groups currently active with this command: >
  3627. :so $VIMRUNTIME/syntax/hitest.vim
  3628. This will open a new window containing all highlight group names, displayed
  3629. in their own color.
  3630. *:colo* *:colorscheme* *E185*
  3631. :colo[rscheme] Output the name of the currently active color scheme.
  3632. This is basically the same as >
  3633. :echo g:colors_name
  3634. < In case g:colors_name has not been defined :colo will
  3635. output "default".
  3636. :colo[rscheme] {name} Load color scheme {name}. This searches 'runtimepath'
  3637. for the file "colors/{name}.(vim|lua)". The first one that
  3638. is found is loaded.
  3639. Note: "colors/{name}.vim" is tried first.
  3640. Also searches all plugins in 'packpath', first below
  3641. "start" and then under "opt".
  3642. Doesn't work recursively, thus you can't use
  3643. ":colorscheme" in a color scheme script.
  3644. To customize a color scheme use another name, e.g.
  3645. "~/.config/nvim/colors/mine.vim", and use `:runtime` to
  3646. load the original colorscheme: >
  3647. runtime colors/evening.vim
  3648. hi Statement ctermfg=Blue guifg=Blue
  3649. < Before the color scheme will be loaded the
  3650. |ColorSchemePre| autocommand event is triggered.
  3651. After the color scheme has been loaded the
  3652. |ColorScheme| autocommand event is triggered.
  3653. For info about writing a colorscheme file: >
  3654. :edit $VIMRUNTIME/colors/README.txt
  3655. :hi[ghlight] List all the current highlight groups that have
  3656. attributes set.
  3657. :hi[ghlight] {group-name}
  3658. List one highlight group.
  3659. *highlight-clear* *:hi-clear*
  3660. :hi[ghlight] clear Reset all highlighting to the defaults. Removes all
  3661. highlighting for groups added by the user!
  3662. Uses the current value of 'background' to decide which
  3663. default colors to use.
  3664. If there was a default link, restore it. |:hi-link|
  3665. :hi[ghlight] clear {group-name}
  3666. :hi[ghlight] {group-name} NONE
  3667. Disable the highlighting for one highlight group. It
  3668. is _not_ set back to the default colors.
  3669. :hi[ghlight] [default] {group-name} {key}={arg} ..
  3670. Add a highlight group, or change the highlighting for
  3671. an existing group.
  3672. See |highlight-args| for the {key}={arg} arguments.
  3673. See |:highlight-default| for the optional [default]
  3674. argument.
  3675. Normally a highlight group is added once when starting up. This sets the
  3676. default values for the highlighting. After that, you can use additional
  3677. highlight commands to change the arguments that you want to set to non-default
  3678. values. The value "NONE" can be used to switch the value off or go back to
  3679. the default value.
  3680. A simple way to change colors is with the |:colorscheme| command. This loads
  3681. a file with ":highlight" commands such as this: >
  3682. :hi Comment gui=bold
  3683. Note that all settings that are not included remain the same, only the
  3684. specified field is used, and settings are merged with previous ones. So, the
  3685. result is like this single command has been used: >
  3686. :hi Comment ctermfg=Cyan guifg=#80a0ff gui=bold
  3687. <
  3688. *:highlight-verbose*
  3689. When listing a highlight group and 'verbose' is non-zero, the listing will
  3690. also tell where it was last set. Example: >
  3691. :verbose hi Comment
  3692. < Comment xxx ctermfg=4 guifg=Blue ~
  3693. Last set from /home/mool/vim/vim7/runtime/syntax/syncolor.vim ~
  3694. When ":hi clear" is used then the script where this command is used will be
  3695. mentioned for the default values. See |:verbose-cmd| for more information.
  3696. *highlight-args* *E416* *E417* *E423*
  3697. There are two types of UIs for highlighting:
  3698. cterm terminal UI (|TUI|)
  3699. gui GUI or RGB-capable TUI ('termguicolors')
  3700. For each type the highlighting can be given. This makes it possible to use
  3701. the same syntax file on all UIs.
  3702. 1. TUI highlight arguments
  3703. *bold* *underline* *underlineline*
  3704. *undercurl* *underdot* *underdash*
  3705. *inverse* *italic* *standout*
  3706. *nocombine* *strikethrough*
  3707. cterm={attr-list} *attr-list* *highlight-cterm* *E418*
  3708. attr-list is a comma-separated list (without spaces) of the
  3709. following items (in any order):
  3710. bold
  3711. underline
  3712. underlineline double underline
  3713. undercurl curly underline
  3714. underdot dotted underline
  3715. underdash dashed underline
  3716. strikethrough
  3717. reverse
  3718. inverse same as reverse
  3719. italic
  3720. standout
  3721. nocombine override attributes instead of combining them
  3722. NONE no attributes used (used to reset it)
  3723. Note that "bold" can be used here and by using a bold font. They
  3724. have the same effect.
  3725. "underlineline", "undercurl", "underdot", and "underdash" fall back
  3726. to "underline" in a terminal that does not support them. The color is
  3727. set using |highlight-guisp|.
  3728. start={term-list} *highlight-start* *E422*
  3729. stop={term-list} *term-list* *highlight-stop*
  3730. These lists of terminal codes can be used to get
  3731. non-standard attributes on a terminal.
  3732. The escape sequence specified with the "start" argument
  3733. is written before the characters in the highlighted
  3734. area. It can be anything that you want to send to the
  3735. terminal to highlight this area. The escape sequence
  3736. specified with the "stop" argument is written after the
  3737. highlighted area. This should undo the "start" argument.
  3738. Otherwise the screen will look messed up.
  3739. {term-list} is a a string with escape sequences. This is any string of
  3740. characters, except that it can't start with "t_" and blanks are not
  3741. allowed. The <> notation is recognized here, so you can use things
  3742. like "<Esc>" and "<Space>". Example:
  3743. start=<Esc>[27h;<Esc>[<Space>r;
  3744. ctermfg={color-nr} *highlight-ctermfg* *E421*
  3745. ctermbg={color-nr} *highlight-ctermbg*
  3746. The {color-nr} argument is a color number. Its range is zero to
  3747. (not including) the number of |tui-colors| available.
  3748. The actual color with this number depends on the type of terminal
  3749. and its settings. Sometimes the color also depends on the settings of
  3750. "cterm". For example, on some systems "cterm=bold ctermfg=3" gives
  3751. another color, on others you just get color 3.
  3752. The following (case-insensitive) names are recognized:
  3753. *cterm-colors*
  3754. NR-16 NR-8 COLOR NAME ~
  3755. 0 0 Black
  3756. 1 4 DarkBlue
  3757. 2 2 DarkGreen
  3758. 3 6 DarkCyan
  3759. 4 1 DarkRed
  3760. 5 5 DarkMagenta
  3761. 6 3 Brown, DarkYellow
  3762. 7 7 LightGray, LightGrey, Gray, Grey
  3763. 8 0* DarkGray, DarkGrey
  3764. 9 4* Blue, LightBlue
  3765. 10 2* Green, LightGreen
  3766. 11 6* Cyan, LightCyan
  3767. 12 1* Red, LightRed
  3768. 13 5* Magenta, LightMagenta
  3769. 14 3* Yellow, LightYellow
  3770. 15 7* White
  3771. The number under "NR-16" is used for 16-color terminals ('t_Co'
  3772. greater than or equal to 16). The number under "NR-8" is used for
  3773. 8-color terminals ('t_Co' less than 16). The '*' indicates that the
  3774. bold attribute is set for ctermfg. In many 8-color terminals (e.g.,
  3775. "linux"), this causes the bright colors to appear. This doesn't work
  3776. for background colors! Without the '*' the bold attribute is removed.
  3777. If you want to set the bold attribute in a different way, put a
  3778. "cterm=" argument AFTER the "ctermfg=" or "ctermbg=" argument. Or use
  3779. a number instead of a color name.
  3780. Note that for 16 color ansi style terminals (including xterms), the
  3781. numbers in the NR-8 column is used. Here '*' means 'add 8' so that Blue
  3782. is 12, DarkGray is 8 etc.
  3783. Note that for some color terminals these names may result in the wrong
  3784. colors!
  3785. You can also use "NONE" to remove the color.
  3786. *:hi-normal-cterm*
  3787. When setting the "ctermfg" or "ctermbg" colors for the Normal group,
  3788. these will become the colors used for the non-highlighted text.
  3789. Example: >
  3790. :highlight Normal ctermfg=grey ctermbg=darkblue
  3791. < When setting the "ctermbg" color for the Normal group, the
  3792. 'background' option will be adjusted automatically, under the
  3793. condition that the color is recognized and 'background' was not set
  3794. explicitly. This causes the highlight groups that depend on
  3795. 'background' to change! This means you should set the colors for
  3796. Normal first, before setting other colors.
  3797. When a colorscheme is being used, changing 'background' causes it to
  3798. be reloaded, which may reset all colors (including Normal). First
  3799. delete the "g:colors_name" variable when you don't want this.
  3800. When you have set "ctermfg" or "ctermbg" for the Normal group, Vim
  3801. needs to reset the color when exiting. This is done with the
  3802. "orig_pair" |terminfo| entry.
  3803. *E419* *E420*
  3804. When Vim knows the normal foreground and background colors, "fg" and
  3805. "bg" can be used as color names. This only works after setting the
  3806. colors for the Normal group and for the MS-Windows console. Example,
  3807. for reverse video: >
  3808. :highlight Visual ctermfg=bg ctermbg=fg
  3809. < Note that the colors are used that are valid at the moment this
  3810. command are given. If the Normal group colors are changed later, the
  3811. "fg" and "bg" colors will not be adjusted.
  3812. 2. GUI highlight arguments
  3813. gui={attr-list} *highlight-gui*
  3814. These give the attributes to use in the GUI mode.
  3815. See |attr-list| for a description.
  3816. Note that "bold" can be used here and by using a bold font. They
  3817. have the same effect.
  3818. Note that the attributes are ignored for the "Normal" group.
  3819. font={font-name} *highlight-font*
  3820. font-name is the name of a font, as it is used on the system Vim
  3821. runs on. For X11 this is a complicated name, for example: >
  3822. font=-misc-fixed-bold-r-normal--14-130-75-75-c-70-iso8859-1
  3823. <
  3824. The font-name "NONE" can be used to revert to the default font.
  3825. When setting the font for the "Normal" group, this becomes the default
  3826. font (until the 'guifont' option is changed; the last one set is
  3827. used).
  3828. The following only works with Motif not with other GUIs:
  3829. When setting the font for the "Menu" group, the menus will be changed.
  3830. When setting the font for the "Tooltip" group, the tooltips will be
  3831. changed.
  3832. All fonts used, except for Menu and Tooltip, should be of the same
  3833. character size as the default font! Otherwise redrawing problems will
  3834. occur.
  3835. To use a font name with an embedded space or other special character,
  3836. put it in single quotes. The single quote cannot be used then.
  3837. Example: >
  3838. :hi comment font='Monospace 10'
  3839. guifg={color-name} *highlight-guifg*
  3840. guibg={color-name} *highlight-guibg*
  3841. guisp={color-name} *highlight-guisp*
  3842. These give the foreground (guifg), background (guibg) and special
  3843. (guisp) color to use in the GUI. "guisp" is used for various
  3844. underlines.
  3845. There are a few special names:
  3846. NONE no color (transparent)
  3847. bg use normal background color
  3848. background use normal background color
  3849. fg use normal foreground color
  3850. foreground use normal foreground color
  3851. To use a color name with an embedded space or other special character,
  3852. put it in single quotes. The single quote cannot be used then.
  3853. Example: >
  3854. :hi comment guifg='salmon pink'
  3855. <
  3856. *gui-colors*
  3857. Suggested color names (these are available on most systems):
  3858. Red LightRed DarkRed
  3859. Green LightGreen DarkGreen SeaGreen
  3860. Blue LightBlue DarkBlue SlateBlue
  3861. Cyan LightCyan DarkCyan
  3862. Magenta LightMagenta DarkMagenta
  3863. Yellow LightYellow Brown DarkYellow
  3864. Gray LightGray DarkGray
  3865. Black White
  3866. Orange Purple Violet
  3867. You can also specify a color by its RGB (red, green, blue) values.
  3868. The format is "#rrggbb", where
  3869. "rr" is the Red value
  3870. "gg" is the Green value
  3871. "bb" is the Blue value
  3872. All values are hexadecimal, range from "00" to "ff". Examples: >
  3873. :highlight Comment guifg=#11f0c3 guibg=#ff00ff
  3874. <
  3875. blend={integer} *highlight-blend*
  3876. Override the blend level for a highlight group within the popupmenu
  3877. or floating windows. Only takes effect if 'pumblend' or 'winblend'
  3878. is set for the menu or window. See the help at the respective option.
  3879. *highlight-groups* *highlight-default*
  3880. These are the builtin highlighting groups. Note that the highlighting depends
  3881. on the value of 'background'. You can see the current settings with the
  3882. ":highlight" command.
  3883. *hl-ColorColumn*
  3884. ColorColumn used for the columns set with 'colorcolumn'
  3885. *hl-Conceal*
  3886. Conceal placeholder characters substituted for concealed
  3887. text (see 'conceallevel')
  3888. *hl-Cursor*
  3889. Cursor character under the cursor
  3890. lCursor the character under the cursor when |language-mapping|
  3891. is used (see 'guicursor')
  3892. *hl-CursorIM*
  3893. CursorIM like Cursor, but used when in IME mode |CursorIM|
  3894. *hl-CursorColumn*
  3895. CursorColumn Screen-column at the cursor, when 'cursorcolumn' is set.
  3896. *hl-CursorLine*
  3897. CursorLine Screen-line at the cursor, when 'cursorline' is set.
  3898. Low-priority if foreground (ctermfg OR guifg) is not set.
  3899. *hl-Directory*
  3900. Directory directory names (and other special names in listings)
  3901. *hl-DiffAdd*
  3902. DiffAdd diff mode: Added line |diff.txt|
  3903. *hl-DiffChange*
  3904. DiffChange diff mode: Changed line |diff.txt|
  3905. *hl-DiffDelete*
  3906. DiffDelete diff mode: Deleted line |diff.txt|
  3907. *hl-DiffText*
  3908. DiffText diff mode: Changed text within a changed line |diff.txt|
  3909. *hl-EndOfBuffer*
  3910. EndOfBuffer filler lines (~) after the end of the buffer.
  3911. By default, this is highlighted like |hl-NonText|.
  3912. *hl-TermCursor*
  3913. TermCursor cursor in a focused terminal
  3914. *hl-TermCursorNC*
  3915. TermCursorNC cursor in an unfocused terminal
  3916. *hl-ErrorMsg*
  3917. ErrorMsg error messages on the command line
  3918. *hl-WinSeparator*
  3919. WinSeparator separators between window splits
  3920. *hl-Folded*
  3921. Folded line used for closed folds
  3922. *hl-FoldColumn*
  3923. FoldColumn 'foldcolumn'
  3924. *hl-SignColumn*
  3925. SignColumn column where |signs| are displayed
  3926. *hl-IncSearch*
  3927. IncSearch 'incsearch' highlighting; also used for the text replaced with
  3928. ":s///c"
  3929. *hl-Substitute*
  3930. Substitute |:substitute| replacement text highlighting
  3931. *hl-LineNr*
  3932. LineNr Line number for ":number" and ":#" commands, and when 'number'
  3933. or 'relativenumber' option is set.
  3934. *hl-LineNrAbove*
  3935. LineNrAbove Line number for when the 'relativenumber'
  3936. option is set, above the cursor line.
  3937. *hl-LineNrBelow*
  3938. LineNrBelow Line number for when the 'relativenumber'
  3939. option is set, below the cursor line.
  3940. *hl-CursorLineNr*
  3941. CursorLineNr Like LineNr when 'cursorline' is set and 'cursorlineopt'
  3942. contains "number" or is "both", for the cursor line.
  3943. *hl-CursorLineSign*
  3944. CursorLineSign Like SignColumn when 'cursorline' is set for the cursor line.
  3945. *hl-CursorLineFold*
  3946. CursorLineFold Like FoldColumn when 'cursorline' is set for the cursor line.
  3947. *hl-MatchParen*
  3948. MatchParen The character under the cursor or just before it, if it
  3949. is a paired bracket, and its match. |pi_paren.txt|
  3950. *hl-ModeMsg*
  3951. ModeMsg 'showmode' message (e.g., "-- INSERT --")
  3952. *hl-MsgArea*
  3953. MsgArea Area for messages and cmdline
  3954. *hl-MsgSeparator*
  3955. MsgSeparator Separator for scrolled messages, `msgsep` flag of 'display'
  3956. *hl-MoreMsg*
  3957. MoreMsg |more-prompt|
  3958. *hl-NonText*
  3959. NonText '@' at the end of the window, characters from 'showbreak'
  3960. and other characters that do not really exist in the text
  3961. (e.g., ">" displayed when a double-wide character doesn't
  3962. fit at the end of the line). See also |hl-EndOfBuffer|.
  3963. *hl-Normal*
  3964. Normal normal text
  3965. *hl-NormalFloat*
  3966. NormalFloat Normal text in floating windows.
  3967. *hl-NormalNC*
  3968. NormalNC normal text in non-current windows
  3969. *hl-Pmenu*
  3970. Pmenu Popup menu: normal item.
  3971. *hl-PmenuSel*
  3972. PmenuSel Popup menu: selected item.
  3973. *hl-PmenuSbar*
  3974. PmenuSbar Popup menu: scrollbar.
  3975. *hl-PmenuThumb*
  3976. PmenuThumb Popup menu: Thumb of the scrollbar.
  3977. *hl-Question*
  3978. Question |hit-enter| prompt and yes/no questions
  3979. *hl-QuickFixLine*
  3980. QuickFixLine Current |quickfix| item in the quickfix window. Combined with
  3981. |hl-CursorLine| when the cursor is there.
  3982. *hl-Search*
  3983. Search Last search pattern highlighting (see 'hlsearch').
  3984. Also used for similar items that need to stand out.
  3985. *hl-SpecialKey*
  3986. SpecialKey Unprintable characters: text displayed differently from what
  3987. it really is. But not 'listchars' whitespace. |hl-Whitespace|
  3988. *hl-SpellBad*
  3989. SpellBad Word that is not recognized by the spellchecker. |spell|
  3990. Combined with the highlighting used otherwise.
  3991. *hl-SpellCap*
  3992. SpellCap Word that should start with a capital. |spell|
  3993. Combined with the highlighting used otherwise.
  3994. *hl-SpellLocal*
  3995. SpellLocal Word that is recognized by the spellchecker as one that is
  3996. used in another region. |spell|
  3997. Combined with the highlighting used otherwise.
  3998. *hl-SpellRare*
  3999. SpellRare Word that is recognized by the spellchecker as one that is
  4000. hardly ever used. |spell|
  4001. Combined with the highlighting used otherwise.
  4002. *hl-StatusLine*
  4003. StatusLine status line of current window
  4004. *hl-StatusLineNC*
  4005. StatusLineNC status lines of not-current windows
  4006. Note: if this is equal to "StatusLine" Vim will use "^^^" in
  4007. the status line of the current window.
  4008. *hl-TabLine*
  4009. TabLine tab pages line, not active tab page label
  4010. *hl-TabLineFill*
  4011. TabLineFill tab pages line, where there are no labels
  4012. *hl-TabLineSel*
  4013. TabLineSel tab pages line, active tab page label
  4014. *hl-Title*
  4015. Title titles for output from ":set all", ":autocmd" etc.
  4016. *hl-Visual*
  4017. Visual Visual mode selection
  4018. *hl-VisualNOS*
  4019. VisualNOS Visual mode selection when vim is "Not Owning the Selection".
  4020. *hl-WarningMsg*
  4021. WarningMsg warning messages
  4022. *hl-Whitespace*
  4023. Whitespace "nbsp", "space", "tab", "multispace", "lead" and "trail"
  4024. in 'listchars'
  4025. *hl-WildMenu*
  4026. WildMenu current match in 'wildmenu' completion
  4027. *hl-User1* *hl-User1..9* *hl-User9*
  4028. The 'statusline' syntax allows the use of 9 different highlights in the
  4029. statusline and ruler (via 'rulerformat'). The names are User1 to User9.
  4030. For the GUI you can use the following groups to set the colors for the menu,
  4031. scrollbars and tooltips. They don't have defaults. This doesn't work for the
  4032. Win32 GUI. Only three highlight arguments have any effect here: font, guibg,
  4033. and guifg.
  4034. *hl-Menu*
  4035. Menu Current font, background and foreground colors of the menus.
  4036. Also used for the toolbar.
  4037. Applicable highlight arguments: font, guibg, guifg.
  4038. *hl-Scrollbar*
  4039. Scrollbar Current background and foreground of the main window's
  4040. scrollbars.
  4041. Applicable highlight arguments: guibg, guifg.
  4042. *hl-Tooltip*
  4043. Tooltip Current font, background and foreground of the tooltips.
  4044. Applicable highlight arguments: font, guibg, guifg.
  4045. ==============================================================================
  4046. 13. Linking groups *:hi-link* *:highlight-link* *E412* *E413*
  4047. When you want to use the same highlighting for several syntax groups, you
  4048. can do this more easily by linking the groups into one common highlight
  4049. group, and give the color attributes only for that group.
  4050. To set a link:
  4051. :hi[ghlight][!] [default] link {from-group} {to-group}
  4052. To remove a link:
  4053. :hi[ghlight][!] [default] link {from-group} NONE
  4054. Notes: *E414*
  4055. - If the {from-group} and/or {to-group} doesn't exist, it is created. You
  4056. don't get an error message for a non-existing group.
  4057. - As soon as you use a ":highlight" command for a linked group, the link is
  4058. removed.
  4059. - If there are already highlight settings for the {from-group}, the link is
  4060. not made, unless the '!' is given. For a ":highlight link" command in a
  4061. sourced file, you don't get an error message. This can be used to skip
  4062. links for groups that already have settings.
  4063. *:hi-default* *:highlight-default*
  4064. The [default] argument is used for setting the default highlighting for a
  4065. group. If highlighting has already been specified for the group the command
  4066. will be ignored. Also when there is an existing link.
  4067. Using [default] is especially useful to overrule the highlighting of a
  4068. specific syntax file. For example, the C syntax file contains: >
  4069. :highlight default link cComment Comment
  4070. If you like Question highlighting for C comments, put this in your vimrc file: >
  4071. :highlight link cComment Question
  4072. Without the "default" in the C syntax file, the highlighting would be
  4073. overruled when the syntax file is loaded.
  4074. To have a link survive `:highlight clear`, which is useful if you have
  4075. highlighting for a specific filetype and you want to keep it when selecting
  4076. another color scheme, put a command like this in the
  4077. "after/syntax/{filetype}.vim" file: >
  4078. highlight! default link cComment Question
  4079. ==============================================================================
  4080. 15. Cleaning up *:syn-clear* *E391*
  4081. If you want to clear the syntax stuff for the current buffer, you can use this
  4082. command: >
  4083. :syntax clear
  4084. This command should be used when you want to switch off syntax highlighting,
  4085. or when you want to switch to using another syntax. It's normally not needed
  4086. in a syntax file itself, because syntax is cleared by the autocommands that
  4087. load the syntax file.
  4088. The command also deletes the "b:current_syntax" variable, since no syntax is
  4089. loaded after this command.
  4090. To clean up specific syntax groups for the current buffer: >
  4091. :syntax clear {group-name} ..
  4092. This removes all patterns and keywords for {group-name}.
  4093. To clean up specific syntax group lists for the current buffer: >
  4094. :syntax clear @{grouplist-name} ..
  4095. This sets {grouplist-name}'s contents to an empty list.
  4096. *:syntax-off* *:syn-off*
  4097. If you want to disable syntax highlighting for all buffers, you need to remove
  4098. the autocommands that load the syntax files: >
  4099. :syntax off
  4100. What this command actually does, is executing the command >
  4101. :source $VIMRUNTIME/syntax/nosyntax.vim
  4102. See the "nosyntax.vim" file for details. Note that for this to work
  4103. $VIMRUNTIME must be valid. See |$VIMRUNTIME|.
  4104. *:syntax-reset* *:syn-reset*
  4105. If you have changed the colors and messed them up, use this command to get the
  4106. defaults back: >
  4107. :syntax reset
  4108. It is a bit of a wrong name, since it does not reset any syntax items, it only
  4109. affects the highlighting.
  4110. Note that the syntax colors that you set in your vimrc file will also be reset
  4111. back to their Vim default.
  4112. Note that if you are using a color scheme, the colors defined by the color
  4113. scheme for syntax highlighting will be lost.
  4114. Note that when a color scheme is used, there might be some confusion whether
  4115. your defined colors are to be used or the colors from the scheme. This
  4116. depends on the color scheme file. See |:colorscheme|.
  4117. ==============================================================================
  4118. 16. Highlighting tags *tag-highlight*
  4119. If you want to highlight all the tags in your file, you can use the following
  4120. mappings.
  4121. <F11> -- Generate tags.vim file, and highlight tags.
  4122. <F12> -- Just highlight tags based on existing tags.vim file.
  4123. >
  4124. :map <F11> :sp tags<CR>:%s/^\([^ :]*:\)\=\([^ ]*\).*/syntax keyword Tag \2/<CR>:wq! tags.vim<CR>/^<CR><F12>
  4125. :map <F12> :so tags.vim<CR>
  4126. WARNING: The longer the tags file, the slower this will be, and the more
  4127. memory Vim will consume.
  4128. Only highlighting typedefs, unions and structs can be done too. For this you
  4129. must use Universal Ctags (found at https://ctags.io) or Exuberant ctags (found
  4130. at http://ctags.sf.net).
  4131. Put these lines in your Makefile:
  4132. # Make a highlight file for types. Requires Universal/Exuberant ctags and awk
  4133. types: types.vim
  4134. types.vim: *.[ch]
  4135. ctags --c-kinds=gstu -o- *.[ch] |\
  4136. awk 'BEGIN{printf("syntax keyword Type\t")}\
  4137. {printf("%s ", $$1)}END{print ""}' > $@
  4138. And put these lines in your vimrc: >
  4139. " load the types.vim highlighting file, if it exists
  4140. autocmd BufRead,BufNewFile *.[ch] let fname = expand('<afile>:p:h') .. '/types.vim'
  4141. autocmd BufRead,BufNewFile *.[ch] if filereadable(fname)
  4142. autocmd BufRead,BufNewFile *.[ch] exe 'so ' .. fname
  4143. autocmd BufRead,BufNewFile *.[ch] endif
  4144. ==============================================================================
  4145. 17. Window-local syntax *:ownsyntax*
  4146. Normally all windows on a buffer share the same syntax settings. It is
  4147. possible, however, to set a particular window on a file to have its own
  4148. private syntax setting. A possible example would be to edit LaTeX source
  4149. with conventional highlighting in one window, while seeing the same source
  4150. highlighted differently (so as to hide control sequences and indicate bold,
  4151. italic etc regions) in another. The 'scrollbind' option is useful here.
  4152. To set the current window to have the syntax "foo", separately from all other
  4153. windows on the buffer: >
  4154. :ownsyntax foo
  4155. < *w:current_syntax*
  4156. This will set the "w:current_syntax" variable to "foo". The value of
  4157. "b:current_syntax" does not change. This is implemented by saving and
  4158. restoring "b:current_syntax", since the syntax files do set
  4159. "b:current_syntax". The value set by the syntax file is assigned to
  4160. "w:current_syntax".
  4161. Note: This resets the 'spell', 'spellcapcheck' and 'spellfile' options.
  4162. Once a window has its own syntax, syntax commands executed from other windows
  4163. on the same buffer (including :syntax clear) have no effect. Conversely,
  4164. syntax commands executed from that window do not affect other windows on the
  4165. same buffer.
  4166. A window with its own syntax reverts to normal behavior when another buffer
  4167. is loaded into that window or the file is reloaded.
  4168. When splitting the window, the new window will use the original syntax.
  4169. ==============================================================================
  4170. 17. Color xterms *xterm-color* *color-xterm*
  4171. *colortest.vim*
  4172. To test your color setup, a file has been included in the Vim distribution.
  4173. To use it, execute this command: >
  4174. :runtime syntax/colortest.vim
  4175. Nvim uses 256-color and |true-color| terminal capabilities wherever possible.
  4176. ==============================================================================
  4177. 18. When syntax is slow *:syntime*
  4178. This is aimed at authors of a syntax file.
  4179. If your syntax causes redrawing to be slow, here are a few hints on making it
  4180. faster. To see slowness switch on some features that usually interfere, such
  4181. as 'relativenumber' and |folding|.
  4182. To find out what patterns are consuming most time, get an overview with this
  4183. sequence: >
  4184. :syntime on
  4185. [ redraw the text at least once with CTRL-L ]
  4186. :syntime report
  4187. This will display a list of syntax patterns that were used, sorted by the time
  4188. it took to match them against the text.
  4189. :syntime on Start measuring syntax times. This will add some
  4190. overhead to compute the time spent on syntax pattern
  4191. matching.
  4192. :syntime off Stop measuring syntax times.
  4193. :syntime clear Set all the counters to zero, restart measuring.
  4194. :syntime report Show the syntax items used since ":syntime on" in the
  4195. current window. Use a wider display to see more of
  4196. the output.
  4197. The list is sorted by total time. The columns are:
  4198. TOTAL Total time in seconds spent on
  4199. matching this pattern.
  4200. COUNT Number of times the pattern was used.
  4201. MATCH Number of times the pattern actually
  4202. matched
  4203. SLOWEST The longest time for one try.
  4204. AVERAGE The average time for one try.
  4205. NAME Name of the syntax item. Note that
  4206. this is not unique.
  4207. PATTERN The pattern being used.
  4208. Pattern matching gets slow when it has to try many alternatives. Try to
  4209. include as much literal text as possible to reduce the number of ways a
  4210. pattern does NOT match.
  4211. When using the "\@<=" and "\@<!" items, add a maximum size to avoid trying at
  4212. all positions in the current and previous line. For example, if the item is
  4213. literal text specify the size of that text (in bytes):
  4214. "<\@<=span" Matches "span" in "<span". This tries matching with "<" in
  4215. many places.
  4216. "<\@1<=span" Matches the same, but only tries one byte before "span".
  4217. vim:tw=78:sw=4:ts=8:noet:ft=help:norl: