_vim_builtins.py 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938
  1. """
  2. pygments.lexers._vim_builtins
  3. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. This file is autogenerated by scripts/get_vimkw.py
  5. :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS.
  6. :license: BSD, see LICENSE for details.
  7. """
  8. # Split up in multiple functions so it's importable by jython, which has a
  9. # per-method size limit.
  10. def _getauto():
  11. var = (
  12. ('BufAdd','BufAdd'),
  13. ('BufCreate','BufCreate'),
  14. ('BufDelete','BufDelete'),
  15. ('BufEnter','BufEnter'),
  16. ('BufFilePost','BufFilePost'),
  17. ('BufFilePre','BufFilePre'),
  18. ('BufHidden','BufHidden'),
  19. ('BufLeave','BufLeave'),
  20. ('BufNew','BufNew'),
  21. ('BufNewFile','BufNewFile'),
  22. ('BufRead','BufRead'),
  23. ('BufReadCmd','BufReadCmd'),
  24. ('BufReadPost','BufReadPost'),
  25. ('BufReadPre','BufReadPre'),
  26. ('BufUnload','BufUnload'),
  27. ('BufWinEnter','BufWinEnter'),
  28. ('BufWinLeave','BufWinLeave'),
  29. ('BufWipeout','BufWipeout'),
  30. ('BufWrite','BufWrite'),
  31. ('BufWriteCmd','BufWriteCmd'),
  32. ('BufWritePost','BufWritePost'),
  33. ('BufWritePre','BufWritePre'),
  34. ('Cmd','Cmd'),
  35. ('CmdwinEnter','CmdwinEnter'),
  36. ('CmdwinLeave','CmdwinLeave'),
  37. ('ColorScheme','ColorScheme'),
  38. ('CompleteDone','CompleteDone'),
  39. ('CursorHold','CursorHold'),
  40. ('CursorHoldI','CursorHoldI'),
  41. ('CursorMoved','CursorMoved'),
  42. ('CursorMovedI','CursorMovedI'),
  43. ('EncodingChanged','EncodingChanged'),
  44. ('FileAppendCmd','FileAppendCmd'),
  45. ('FileAppendPost','FileAppendPost'),
  46. ('FileAppendPre','FileAppendPre'),
  47. ('FileChangedRO','FileChangedRO'),
  48. ('FileChangedShell','FileChangedShell'),
  49. ('FileChangedShellPost','FileChangedShellPost'),
  50. ('FileEncoding','FileEncoding'),
  51. ('FileReadCmd','FileReadCmd'),
  52. ('FileReadPost','FileReadPost'),
  53. ('FileReadPre','FileReadPre'),
  54. ('FileType','FileType'),
  55. ('FileWriteCmd','FileWriteCmd'),
  56. ('FileWritePost','FileWritePost'),
  57. ('FileWritePre','FileWritePre'),
  58. ('FilterReadPost','FilterReadPost'),
  59. ('FilterReadPre','FilterReadPre'),
  60. ('FilterWritePost','FilterWritePost'),
  61. ('FilterWritePre','FilterWritePre'),
  62. ('FocusGained','FocusGained'),
  63. ('FocusLost','FocusLost'),
  64. ('FuncUndefined','FuncUndefined'),
  65. ('GUIEnter','GUIEnter'),
  66. ('GUIFailed','GUIFailed'),
  67. ('InsertChange','InsertChange'),
  68. ('InsertCharPre','InsertCharPre'),
  69. ('InsertEnter','InsertEnter'),
  70. ('InsertLeave','InsertLeave'),
  71. ('MenuPopup','MenuPopup'),
  72. ('QuickFixCmdPost','QuickFixCmdPost'),
  73. ('QuickFixCmdPre','QuickFixCmdPre'),
  74. ('QuitPre','QuitPre'),
  75. ('RemoteReply','RemoteReply'),
  76. ('SessionLoadPost','SessionLoadPost'),
  77. ('ShellCmdPost','ShellCmdPost'),
  78. ('ShellFilterPost','ShellFilterPost'),
  79. ('SourceCmd','SourceCmd'),
  80. ('SourcePre','SourcePre'),
  81. ('SpellFileMissing','SpellFileMissing'),
  82. ('StdinReadPost','StdinReadPost'),
  83. ('StdinReadPre','StdinReadPre'),
  84. ('SwapExists','SwapExists'),
  85. ('Syntax','Syntax'),
  86. ('TabEnter','TabEnter'),
  87. ('TabLeave','TabLeave'),
  88. ('TermChanged','TermChanged'),
  89. ('TermResponse','TermResponse'),
  90. ('TextChanged','TextChanged'),
  91. ('TextChangedI','TextChangedI'),
  92. ('User','User'),
  93. ('UserGettingBored','UserGettingBored'),
  94. ('VimEnter','VimEnter'),
  95. ('VimLeave','VimLeave'),
  96. ('VimLeavePre','VimLeavePre'),
  97. ('VimResized','VimResized'),
  98. ('WinEnter','WinEnter'),
  99. ('WinLeave','WinLeave'),
  100. ('event','event'),
  101. )
  102. return var
  103. auto = _getauto()
  104. def _getcommand():
  105. var = (
  106. ('a','a'),
  107. ('ab','ab'),
  108. ('abc','abclear'),
  109. ('abo','aboveleft'),
  110. ('al','all'),
  111. ('ar','ar'),
  112. ('ar','args'),
  113. ('arga','argadd'),
  114. ('argd','argdelete'),
  115. ('argdo','argdo'),
  116. ('arge','argedit'),
  117. ('argg','argglobal'),
  118. ('argl','arglocal'),
  119. ('argu','argument'),
  120. ('as','ascii'),
  121. ('au','au'),
  122. ('b','buffer'),
  123. ('bN','bNext'),
  124. ('ba','ball'),
  125. ('bad','badd'),
  126. ('bd','bdelete'),
  127. ('bel','belowright'),
  128. ('bf','bfirst'),
  129. ('bl','blast'),
  130. ('bm','bmodified'),
  131. ('bn','bnext'),
  132. ('bo','botright'),
  133. ('bp','bprevious'),
  134. ('br','br'),
  135. ('br','brewind'),
  136. ('brea','break'),
  137. ('breaka','breakadd'),
  138. ('breakd','breakdel'),
  139. ('breakl','breaklist'),
  140. ('bro','browse'),
  141. ('bu','bu'),
  142. ('buf','buf'),
  143. ('bufdo','bufdo'),
  144. ('buffers','buffers'),
  145. ('bun','bunload'),
  146. ('bw','bwipeout'),
  147. ('c','c'),
  148. ('c','change'),
  149. ('cN','cN'),
  150. ('cN','cNext'),
  151. ('cNf','cNf'),
  152. ('cNf','cNfile'),
  153. ('cabc','cabclear'),
  154. ('cad','cad'),
  155. ('cad','caddexpr'),
  156. ('caddb','caddbuffer'),
  157. ('caddf','caddfile'),
  158. ('cal','call'),
  159. ('cat','catch'),
  160. ('cb','cbuffer'),
  161. ('cc','cc'),
  162. ('ccl','cclose'),
  163. ('cd','cd'),
  164. ('ce','center'),
  165. ('cex','cexpr'),
  166. ('cf','cfile'),
  167. ('cfir','cfirst'),
  168. ('cg','cgetfile'),
  169. ('cgetb','cgetbuffer'),
  170. ('cgete','cgetexpr'),
  171. ('changes','changes'),
  172. ('chd','chdir'),
  173. ('che','checkpath'),
  174. ('checkt','checktime'),
  175. ('cl','cl'),
  176. ('cl','clist'),
  177. ('cla','clast'),
  178. ('clo','close'),
  179. ('cmapc','cmapclear'),
  180. ('cn','cn'),
  181. ('cn','cnext'),
  182. ('cnew','cnewer'),
  183. ('cnf','cnf'),
  184. ('cnf','cnfile'),
  185. ('co','copy'),
  186. ('col','colder'),
  187. ('colo','colorscheme'),
  188. ('com','com'),
  189. ('comc','comclear'),
  190. ('comp','compiler'),
  191. ('con','con'),
  192. ('con','continue'),
  193. ('conf','confirm'),
  194. ('cope','copen'),
  195. ('cp','cprevious'),
  196. ('cpf','cpfile'),
  197. ('cq','cquit'),
  198. ('cr','crewind'),
  199. ('cs','cs'),
  200. ('cscope','cscope'),
  201. ('cstag','cstag'),
  202. ('cuna','cunabbrev'),
  203. ('cw','cwindow'),
  204. ('d','d'),
  205. ('d','delete'),
  206. ('de','de'),
  207. ('debug','debug'),
  208. ('debugg','debuggreedy'),
  209. ('del','del'),
  210. ('delc','delcommand'),
  211. ('delel','delel'),
  212. ('delep','delep'),
  213. ('deletel','deletel'),
  214. ('deletep','deletep'),
  215. ('deletl','deletl'),
  216. ('deletp','deletp'),
  217. ('delf','delf'),
  218. ('delf','delfunction'),
  219. ('dell','dell'),
  220. ('delm','delmarks'),
  221. ('delp','delp'),
  222. ('dep','dep'),
  223. ('di','di'),
  224. ('di','display'),
  225. ('diffg','diffget'),
  226. ('diffo','diffoff'),
  227. ('diffp','diffpatch'),
  228. ('diffpu','diffput'),
  229. ('diffs','diffsplit'),
  230. ('difft','diffthis'),
  231. ('diffu','diffupdate'),
  232. ('dig','dig'),
  233. ('dig','digraphs'),
  234. ('dir','dir'),
  235. ('dj','djump'),
  236. ('dl','dl'),
  237. ('dli','dlist'),
  238. ('do','do'),
  239. ('doau','doau'),
  240. ('dp','dp'),
  241. ('dr','drop'),
  242. ('ds','dsearch'),
  243. ('dsp','dsplit'),
  244. ('e','e'),
  245. ('e','edit'),
  246. ('ea','ea'),
  247. ('earlier','earlier'),
  248. ('ec','ec'),
  249. ('echoe','echoerr'),
  250. ('echom','echomsg'),
  251. ('echon','echon'),
  252. ('el','else'),
  253. ('elsei','elseif'),
  254. ('em','emenu'),
  255. ('en','en'),
  256. ('en','endif'),
  257. ('endf','endf'),
  258. ('endf','endfunction'),
  259. ('endfo','endfor'),
  260. ('endfun','endfun'),
  261. ('endt','endtry'),
  262. ('endw','endwhile'),
  263. ('ene','enew'),
  264. ('ex','ex'),
  265. ('exi','exit'),
  266. ('exu','exusage'),
  267. ('f','f'),
  268. ('f','file'),
  269. ('files','files'),
  270. ('filet','filet'),
  271. ('filetype','filetype'),
  272. ('fin','fin'),
  273. ('fin','find'),
  274. ('fina','finally'),
  275. ('fini','finish'),
  276. ('fir','first'),
  277. ('fix','fixdel'),
  278. ('fo','fold'),
  279. ('foldc','foldclose'),
  280. ('foldd','folddoopen'),
  281. ('folddoc','folddoclosed'),
  282. ('foldo','foldopen'),
  283. ('for','for'),
  284. ('fu','fu'),
  285. ('fu','function'),
  286. ('fun','fun'),
  287. ('g','g'),
  288. ('go','goto'),
  289. ('gr','grep'),
  290. ('grepa','grepadd'),
  291. ('gui','gui'),
  292. ('gvim','gvim'),
  293. ('h','h'),
  294. ('h','help'),
  295. ('ha','hardcopy'),
  296. ('helpf','helpfind'),
  297. ('helpg','helpgrep'),
  298. ('helpt','helptags'),
  299. ('hi','hi'),
  300. ('hid','hide'),
  301. ('his','history'),
  302. ('i','i'),
  303. ('ia','ia'),
  304. ('iabc','iabclear'),
  305. ('if','if'),
  306. ('ij','ijump'),
  307. ('il','ilist'),
  308. ('imapc','imapclear'),
  309. ('in','in'),
  310. ('intro','intro'),
  311. ('is','isearch'),
  312. ('isp','isplit'),
  313. ('iuna','iunabbrev'),
  314. ('j','join'),
  315. ('ju','jumps'),
  316. ('k','k'),
  317. ('kee','keepmarks'),
  318. ('keepa','keepa'),
  319. ('keepalt','keepalt'),
  320. ('keepj','keepjumps'),
  321. ('keepp','keeppatterns'),
  322. ('l','l'),
  323. ('l','list'),
  324. ('lN','lN'),
  325. ('lN','lNext'),
  326. ('lNf','lNf'),
  327. ('lNf','lNfile'),
  328. ('la','la'),
  329. ('la','last'),
  330. ('lad','lad'),
  331. ('lad','laddexpr'),
  332. ('laddb','laddbuffer'),
  333. ('laddf','laddfile'),
  334. ('lan','lan'),
  335. ('lan','language'),
  336. ('lat','lat'),
  337. ('later','later'),
  338. ('lb','lbuffer'),
  339. ('lc','lcd'),
  340. ('lch','lchdir'),
  341. ('lcl','lclose'),
  342. ('lcs','lcs'),
  343. ('lcscope','lcscope'),
  344. ('le','left'),
  345. ('lefta','leftabove'),
  346. ('lex','lexpr'),
  347. ('lf','lfile'),
  348. ('lfir','lfirst'),
  349. ('lg','lgetfile'),
  350. ('lgetb','lgetbuffer'),
  351. ('lgete','lgetexpr'),
  352. ('lgr','lgrep'),
  353. ('lgrepa','lgrepadd'),
  354. ('lh','lhelpgrep'),
  355. ('ll','ll'),
  356. ('lla','llast'),
  357. ('lli','llist'),
  358. ('lmak','lmake'),
  359. ('lmapc','lmapclear'),
  360. ('lne','lne'),
  361. ('lne','lnext'),
  362. ('lnew','lnewer'),
  363. ('lnf','lnf'),
  364. ('lnf','lnfile'),
  365. ('lo','lo'),
  366. ('lo','loadview'),
  367. ('loadk','loadk'),
  368. ('loadkeymap','loadkeymap'),
  369. ('loc','lockmarks'),
  370. ('lockv','lockvar'),
  371. ('lol','lolder'),
  372. ('lop','lopen'),
  373. ('lp','lprevious'),
  374. ('lpf','lpfile'),
  375. ('lr','lrewind'),
  376. ('ls','ls'),
  377. ('lt','ltag'),
  378. ('lua','lua'),
  379. ('luado','luado'),
  380. ('luafile','luafile'),
  381. ('lv','lvimgrep'),
  382. ('lvimgrepa','lvimgrepadd'),
  383. ('lw','lwindow'),
  384. ('m','move'),
  385. ('ma','ma'),
  386. ('ma','mark'),
  387. ('mak','make'),
  388. ('marks','marks'),
  389. ('mat','match'),
  390. ('menut','menut'),
  391. ('menut','menutranslate'),
  392. ('mes','mes'),
  393. ('messages','messages'),
  394. ('mk','mk'),
  395. ('mk','mkexrc'),
  396. ('mks','mksession'),
  397. ('mksp','mkspell'),
  398. ('mkv','mkv'),
  399. ('mkv','mkvimrc'),
  400. ('mkvie','mkview'),
  401. ('mo','mo'),
  402. ('mod','mode'),
  403. ('mz','mz'),
  404. ('mz','mzscheme'),
  405. ('mzf','mzfile'),
  406. ('n','n'),
  407. ('n','next'),
  408. ('nb','nbkey'),
  409. ('nbc','nbclose'),
  410. ('nbs','nbstart'),
  411. ('ne','ne'),
  412. ('new','new'),
  413. ('nmapc','nmapclear'),
  414. ('noa','noa'),
  415. ('noautocmd','noautocmd'),
  416. ('noh','nohlsearch'),
  417. ('nu','number'),
  418. ('o','o'),
  419. ('o','open'),
  420. ('ol','oldfiles'),
  421. ('omapc','omapclear'),
  422. ('on','only'),
  423. ('opt','options'),
  424. ('ownsyntax','ownsyntax'),
  425. ('p','p'),
  426. ('p','print'),
  427. ('pc','pclose'),
  428. ('pe','pe'),
  429. ('pe','perl'),
  430. ('ped','pedit'),
  431. ('perld','perldo'),
  432. ('po','pop'),
  433. ('popu','popu'),
  434. ('popu','popup'),
  435. ('pp','ppop'),
  436. ('pr','pr'),
  437. ('pre','preserve'),
  438. ('prev','previous'),
  439. ('pro','pro'),
  440. ('prof','profile'),
  441. ('profd','profdel'),
  442. ('promptf','promptfind'),
  443. ('promptr','promptrepl'),
  444. ('ps','psearch'),
  445. ('ptN','ptN'),
  446. ('ptN','ptNext'),
  447. ('pta','ptag'),
  448. ('ptf','ptfirst'),
  449. ('ptj','ptjump'),
  450. ('ptl','ptlast'),
  451. ('ptn','ptn'),
  452. ('ptn','ptnext'),
  453. ('ptp','ptprevious'),
  454. ('ptr','ptrewind'),
  455. ('pts','ptselect'),
  456. ('pu','put'),
  457. ('pw','pwd'),
  458. ('py','py'),
  459. ('py','python'),
  460. ('py3','py3'),
  461. ('py3','py3'),
  462. ('py3do','py3do'),
  463. ('pydo','pydo'),
  464. ('pyf','pyfile'),
  465. ('python3','python3'),
  466. ('q','q'),
  467. ('q','quit'),
  468. ('qa','qall'),
  469. ('quita','quitall'),
  470. ('r','r'),
  471. ('r','read'),
  472. ('re','re'),
  473. ('rec','recover'),
  474. ('red','red'),
  475. ('red','redo'),
  476. ('redi','redir'),
  477. ('redr','redraw'),
  478. ('redraws','redrawstatus'),
  479. ('reg','registers'),
  480. ('res','resize'),
  481. ('ret','retab'),
  482. ('retu','return'),
  483. ('rew','rewind'),
  484. ('ri','right'),
  485. ('rightb','rightbelow'),
  486. ('ru','ru'),
  487. ('ru','runtime'),
  488. ('rub','ruby'),
  489. ('rubyd','rubydo'),
  490. ('rubyf','rubyfile'),
  491. ('rundo','rundo'),
  492. ('rv','rviminfo'),
  493. ('sN','sNext'),
  494. ('sa','sargument'),
  495. ('sal','sall'),
  496. ('san','sandbox'),
  497. ('sav','saveas'),
  498. ('sb','sbuffer'),
  499. ('sbN','sbNext'),
  500. ('sba','sball'),
  501. ('sbf','sbfirst'),
  502. ('sbl','sblast'),
  503. ('sbm','sbmodified'),
  504. ('sbn','sbnext'),
  505. ('sbp','sbprevious'),
  506. ('sbr','sbrewind'),
  507. ('scrip','scrip'),
  508. ('scrip','scriptnames'),
  509. ('scripte','scriptencoding'),
  510. ('scs','scs'),
  511. ('scscope','scscope'),
  512. ('se','set'),
  513. ('setf','setfiletype'),
  514. ('setg','setglobal'),
  515. ('setl','setlocal'),
  516. ('sf','sfind'),
  517. ('sfir','sfirst'),
  518. ('sh','shell'),
  519. ('si','si'),
  520. ('sig','sig'),
  521. ('sign','sign'),
  522. ('sil','silent'),
  523. ('sim','simalt'),
  524. ('sl','sl'),
  525. ('sl','sleep'),
  526. ('sla','slast'),
  527. ('sm','smagic'),
  528. ('sm','smap'),
  529. ('sme','sme'),
  530. ('smenu','smenu'),
  531. ('sn','snext'),
  532. ('sni','sniff'),
  533. ('sno','snomagic'),
  534. ('snoreme','snoreme'),
  535. ('snoremenu','snoremenu'),
  536. ('so','so'),
  537. ('so','source'),
  538. ('sor','sort'),
  539. ('sp','split'),
  540. ('spe','spe'),
  541. ('spe','spellgood'),
  542. ('spelld','spelldump'),
  543. ('spelli','spellinfo'),
  544. ('spellr','spellrepall'),
  545. ('spellu','spellundo'),
  546. ('spellw','spellwrong'),
  547. ('spr','sprevious'),
  548. ('sre','srewind'),
  549. ('st','st'),
  550. ('st','stop'),
  551. ('sta','stag'),
  552. ('star','star'),
  553. ('star','startinsert'),
  554. ('start','start'),
  555. ('startg','startgreplace'),
  556. ('startr','startreplace'),
  557. ('stj','stjump'),
  558. ('stopi','stopinsert'),
  559. ('sts','stselect'),
  560. ('sun','sunhide'),
  561. ('sunme','sunme'),
  562. ('sunmenu','sunmenu'),
  563. ('sus','suspend'),
  564. ('sv','sview'),
  565. ('sw','swapname'),
  566. ('sy','sy'),
  567. ('syn','syn'),
  568. ('sync','sync'),
  569. ('syncbind','syncbind'),
  570. ('syntime','syntime'),
  571. ('t','t'),
  572. ('tN','tN'),
  573. ('tN','tNext'),
  574. ('ta','ta'),
  575. ('ta','tag'),
  576. ('tab','tab'),
  577. ('tabN','tabN'),
  578. ('tabN','tabNext'),
  579. ('tabc','tabclose'),
  580. ('tabd','tabdo'),
  581. ('tabe','tabedit'),
  582. ('tabf','tabfind'),
  583. ('tabfir','tabfirst'),
  584. ('tabl','tablast'),
  585. ('tabm','tabmove'),
  586. ('tabn','tabnext'),
  587. ('tabnew','tabnew'),
  588. ('tabo','tabonly'),
  589. ('tabp','tabprevious'),
  590. ('tabr','tabrewind'),
  591. ('tabs','tabs'),
  592. ('tags','tags'),
  593. ('tc','tcl'),
  594. ('tcld','tcldo'),
  595. ('tclf','tclfile'),
  596. ('te','tearoff'),
  597. ('tf','tfirst'),
  598. ('th','throw'),
  599. ('tj','tjump'),
  600. ('tl','tlast'),
  601. ('tm','tm'),
  602. ('tm','tmenu'),
  603. ('tn','tn'),
  604. ('tn','tnext'),
  605. ('to','topleft'),
  606. ('tp','tprevious'),
  607. ('tr','tr'),
  608. ('tr','trewind'),
  609. ('try','try'),
  610. ('ts','tselect'),
  611. ('tu','tu'),
  612. ('tu','tunmenu'),
  613. ('u','u'),
  614. ('u','undo'),
  615. ('un','un'),
  616. ('una','unabbreviate'),
  617. ('undoj','undojoin'),
  618. ('undol','undolist'),
  619. ('unh','unhide'),
  620. ('unl','unl'),
  621. ('unlo','unlockvar'),
  622. ('uns','unsilent'),
  623. ('up','update'),
  624. ('v','v'),
  625. ('ve','ve'),
  626. ('ve','version'),
  627. ('verb','verbose'),
  628. ('vert','vertical'),
  629. ('vi','vi'),
  630. ('vi','visual'),
  631. ('vie','view'),
  632. ('vim','vimgrep'),
  633. ('vimgrepa','vimgrepadd'),
  634. ('viu','viusage'),
  635. ('vmapc','vmapclear'),
  636. ('vne','vnew'),
  637. ('vs','vsplit'),
  638. ('w','w'),
  639. ('w','write'),
  640. ('wN','wNext'),
  641. ('wa','wall'),
  642. ('wh','while'),
  643. ('win','win'),
  644. ('win','winsize'),
  645. ('winc','wincmd'),
  646. ('windo','windo'),
  647. ('winp','winpos'),
  648. ('wn','wnext'),
  649. ('wp','wprevious'),
  650. ('wq','wq'),
  651. ('wqa','wqall'),
  652. ('ws','wsverb'),
  653. ('wundo','wundo'),
  654. ('wv','wviminfo'),
  655. ('x','x'),
  656. ('x','xit'),
  657. ('xa','xall'),
  658. ('xmapc','xmapclear'),
  659. ('xme','xme'),
  660. ('xmenu','xmenu'),
  661. ('xnoreme','xnoreme'),
  662. ('xnoremenu','xnoremenu'),
  663. ('xunme','xunme'),
  664. ('xunmenu','xunmenu'),
  665. ('xwininfo','xwininfo'),
  666. ('y','yank'),
  667. )
  668. return var
  669. command = _getcommand()
  670. def _getoption():
  671. var = (
  672. ('acd','acd'),
  673. ('ai','ai'),
  674. ('akm','akm'),
  675. ('al','al'),
  676. ('aleph','aleph'),
  677. ('allowrevins','allowrevins'),
  678. ('altkeymap','altkeymap'),
  679. ('ambiwidth','ambiwidth'),
  680. ('ambw','ambw'),
  681. ('anti','anti'),
  682. ('antialias','antialias'),
  683. ('ar','ar'),
  684. ('arab','arab'),
  685. ('arabic','arabic'),
  686. ('arabicshape','arabicshape'),
  687. ('ari','ari'),
  688. ('arshape','arshape'),
  689. ('autochdir','autochdir'),
  690. ('autoindent','autoindent'),
  691. ('autoread','autoread'),
  692. ('autowrite','autowrite'),
  693. ('autowriteall','autowriteall'),
  694. ('aw','aw'),
  695. ('awa','awa'),
  696. ('background','background'),
  697. ('backspace','backspace'),
  698. ('backup','backup'),
  699. ('backupcopy','backupcopy'),
  700. ('backupdir','backupdir'),
  701. ('backupext','backupext'),
  702. ('backupskip','backupskip'),
  703. ('balloondelay','balloondelay'),
  704. ('ballooneval','ballooneval'),
  705. ('balloonexpr','balloonexpr'),
  706. ('bdir','bdir'),
  707. ('bdlay','bdlay'),
  708. ('beval','beval'),
  709. ('bex','bex'),
  710. ('bexpr','bexpr'),
  711. ('bg','bg'),
  712. ('bh','bh'),
  713. ('bin','bin'),
  714. ('binary','binary'),
  715. ('biosk','biosk'),
  716. ('bioskey','bioskey'),
  717. ('bk','bk'),
  718. ('bkc','bkc'),
  719. ('bl','bl'),
  720. ('bomb','bomb'),
  721. ('breakat','breakat'),
  722. ('brk','brk'),
  723. ('browsedir','browsedir'),
  724. ('bs','bs'),
  725. ('bsdir','bsdir'),
  726. ('bsk','bsk'),
  727. ('bt','bt'),
  728. ('bufhidden','bufhidden'),
  729. ('buflisted','buflisted'),
  730. ('buftype','buftype'),
  731. ('casemap','casemap'),
  732. ('cb','cb'),
  733. ('cc','cc'),
  734. ('ccv','ccv'),
  735. ('cd','cd'),
  736. ('cdpath','cdpath'),
  737. ('cedit','cedit'),
  738. ('cf','cf'),
  739. ('cfu','cfu'),
  740. ('ch','ch'),
  741. ('charconvert','charconvert'),
  742. ('ci','ci'),
  743. ('cin','cin'),
  744. ('cindent','cindent'),
  745. ('cink','cink'),
  746. ('cinkeys','cinkeys'),
  747. ('cino','cino'),
  748. ('cinoptions','cinoptions'),
  749. ('cinw','cinw'),
  750. ('cinwords','cinwords'),
  751. ('clipboard','clipboard'),
  752. ('cmdheight','cmdheight'),
  753. ('cmdwinheight','cmdwinheight'),
  754. ('cmp','cmp'),
  755. ('cms','cms'),
  756. ('co','co'),
  757. ('cocu','cocu'),
  758. ('cole','cole'),
  759. ('colorcolumn','colorcolumn'),
  760. ('columns','columns'),
  761. ('com','com'),
  762. ('comments','comments'),
  763. ('commentstring','commentstring'),
  764. ('compatible','compatible'),
  765. ('complete','complete'),
  766. ('completefunc','completefunc'),
  767. ('completeopt','completeopt'),
  768. ('concealcursor','concealcursor'),
  769. ('conceallevel','conceallevel'),
  770. ('confirm','confirm'),
  771. ('consk','consk'),
  772. ('conskey','conskey'),
  773. ('copyindent','copyindent'),
  774. ('cot','cot'),
  775. ('cp','cp'),
  776. ('cpo','cpo'),
  777. ('cpoptions','cpoptions'),
  778. ('cpt','cpt'),
  779. ('crb','crb'),
  780. ('cryptmethod','cryptmethod'),
  781. ('cscopepathcomp','cscopepathcomp'),
  782. ('cscopeprg','cscopeprg'),
  783. ('cscopequickfix','cscopequickfix'),
  784. ('cscoperelative','cscoperelative'),
  785. ('cscopetag','cscopetag'),
  786. ('cscopetagorder','cscopetagorder'),
  787. ('cscopeverbose','cscopeverbose'),
  788. ('cspc','cspc'),
  789. ('csprg','csprg'),
  790. ('csqf','csqf'),
  791. ('csre','csre'),
  792. ('cst','cst'),
  793. ('csto','csto'),
  794. ('csverb','csverb'),
  795. ('cuc','cuc'),
  796. ('cul','cul'),
  797. ('cursorbind','cursorbind'),
  798. ('cursorcolumn','cursorcolumn'),
  799. ('cursorline','cursorline'),
  800. ('cwh','cwh'),
  801. ('debug','debug'),
  802. ('deco','deco'),
  803. ('def','def'),
  804. ('define','define'),
  805. ('delcombine','delcombine'),
  806. ('dex','dex'),
  807. ('dg','dg'),
  808. ('dict','dict'),
  809. ('dictionary','dictionary'),
  810. ('diff','diff'),
  811. ('diffexpr','diffexpr'),
  812. ('diffopt','diffopt'),
  813. ('digraph','digraph'),
  814. ('dip','dip'),
  815. ('dir','dir'),
  816. ('directory','directory'),
  817. ('display','display'),
  818. ('dy','dy'),
  819. ('ea','ea'),
  820. ('ead','ead'),
  821. ('eadirection','eadirection'),
  822. ('eb','eb'),
  823. ('ed','ed'),
  824. ('edcompatible','edcompatible'),
  825. ('ef','ef'),
  826. ('efm','efm'),
  827. ('ei','ei'),
  828. ('ek','ek'),
  829. ('enc','enc'),
  830. ('encoding','encoding'),
  831. ('endofline','endofline'),
  832. ('eol','eol'),
  833. ('ep','ep'),
  834. ('equalalways','equalalways'),
  835. ('equalprg','equalprg'),
  836. ('errorbells','errorbells'),
  837. ('errorfile','errorfile'),
  838. ('errorformat','errorformat'),
  839. ('esckeys','esckeys'),
  840. ('et','et'),
  841. ('eventignore','eventignore'),
  842. ('ex','ex'),
  843. ('expandtab','expandtab'),
  844. ('exrc','exrc'),
  845. ('fcl','fcl'),
  846. ('fcs','fcs'),
  847. ('fdc','fdc'),
  848. ('fde','fde'),
  849. ('fdi','fdi'),
  850. ('fdl','fdl'),
  851. ('fdls','fdls'),
  852. ('fdm','fdm'),
  853. ('fdn','fdn'),
  854. ('fdo','fdo'),
  855. ('fdt','fdt'),
  856. ('fen','fen'),
  857. ('fenc','fenc'),
  858. ('fencs','fencs'),
  859. ('fex','fex'),
  860. ('ff','ff'),
  861. ('ffs','ffs'),
  862. ('fic','fic'),
  863. ('fileencoding','fileencoding'),
  864. ('fileencodings','fileencodings'),
  865. ('fileformat','fileformat'),
  866. ('fileformats','fileformats'),
  867. ('fileignorecase','fileignorecase'),
  868. ('filetype','filetype'),
  869. ('fillchars','fillchars'),
  870. ('fk','fk'),
  871. ('fkmap','fkmap'),
  872. ('flp','flp'),
  873. ('fml','fml'),
  874. ('fmr','fmr'),
  875. ('fo','fo'),
  876. ('foldclose','foldclose'),
  877. ('foldcolumn','foldcolumn'),
  878. ('foldenable','foldenable'),
  879. ('foldexpr','foldexpr'),
  880. ('foldignore','foldignore'),
  881. ('foldlevel','foldlevel'),
  882. ('foldlevelstart','foldlevelstart'),
  883. ('foldmarker','foldmarker'),
  884. ('foldmethod','foldmethod'),
  885. ('foldminlines','foldminlines'),
  886. ('foldnestmax','foldnestmax'),
  887. ('foldopen','foldopen'),
  888. ('foldtext','foldtext'),
  889. ('formatexpr','formatexpr'),
  890. ('formatlistpat','formatlistpat'),
  891. ('formatoptions','formatoptions'),
  892. ('formatprg','formatprg'),
  893. ('fp','fp'),
  894. ('fs','fs'),
  895. ('fsync','fsync'),
  896. ('ft','ft'),
  897. ('gcr','gcr'),
  898. ('gd','gd'),
  899. ('gdefault','gdefault'),
  900. ('gfm','gfm'),
  901. ('gfn','gfn'),
  902. ('gfs','gfs'),
  903. ('gfw','gfw'),
  904. ('ghr','ghr'),
  905. ('go','go'),
  906. ('gp','gp'),
  907. ('grepformat','grepformat'),
  908. ('grepprg','grepprg'),
  909. ('gtl','gtl'),
  910. ('gtt','gtt'),
  911. ('guicursor','guicursor'),
  912. ('guifont','guifont'),
  913. ('guifontset','guifontset'),
  914. ('guifontwide','guifontwide'),
  915. ('guiheadroom','guiheadroom'),
  916. ('guioptions','guioptions'),
  917. ('guipty','guipty'),
  918. ('guitablabel','guitablabel'),
  919. ('guitabtooltip','guitabtooltip'),
  920. ('helpfile','helpfile'),
  921. ('helpheight','helpheight'),
  922. ('helplang','helplang'),
  923. ('hf','hf'),
  924. ('hh','hh'),
  925. ('hi','hi'),
  926. ('hid','hid'),
  927. ('hidden','hidden'),
  928. ('highlight','highlight'),
  929. ('history','history'),
  930. ('hk','hk'),
  931. ('hkmap','hkmap'),
  932. ('hkmapp','hkmapp'),
  933. ('hkp','hkp'),
  934. ('hl','hl'),
  935. ('hlg','hlg'),
  936. ('hls','hls'),
  937. ('hlsearch','hlsearch'),
  938. ('ic','ic'),
  939. ('icon','icon'),
  940. ('iconstring','iconstring'),
  941. ('ignorecase','ignorecase'),
  942. ('im','im'),
  943. ('imactivatefunc','imactivatefunc'),
  944. ('imactivatekey','imactivatekey'),
  945. ('imaf','imaf'),
  946. ('imak','imak'),
  947. ('imc','imc'),
  948. ('imcmdline','imcmdline'),
  949. ('imd','imd'),
  950. ('imdisable','imdisable'),
  951. ('imi','imi'),
  952. ('iminsert','iminsert'),
  953. ('ims','ims'),
  954. ('imsearch','imsearch'),
  955. ('imsf','imsf'),
  956. ('imstatusfunc','imstatusfunc'),
  957. ('inc','inc'),
  958. ('include','include'),
  959. ('includeexpr','includeexpr'),
  960. ('incsearch','incsearch'),
  961. ('inde','inde'),
  962. ('indentexpr','indentexpr'),
  963. ('indentkeys','indentkeys'),
  964. ('indk','indk'),
  965. ('inex','inex'),
  966. ('inf','inf'),
  967. ('infercase','infercase'),
  968. ('inoremap','inoremap'),
  969. ('insertmode','insertmode'),
  970. ('invacd','invacd'),
  971. ('invai','invai'),
  972. ('invakm','invakm'),
  973. ('invallowrevins','invallowrevins'),
  974. ('invaltkeymap','invaltkeymap'),
  975. ('invanti','invanti'),
  976. ('invantialias','invantialias'),
  977. ('invar','invar'),
  978. ('invarab','invarab'),
  979. ('invarabic','invarabic'),
  980. ('invarabicshape','invarabicshape'),
  981. ('invari','invari'),
  982. ('invarshape','invarshape'),
  983. ('invautochdir','invautochdir'),
  984. ('invautoindent','invautoindent'),
  985. ('invautoread','invautoread'),
  986. ('invautowrite','invautowrite'),
  987. ('invautowriteall','invautowriteall'),
  988. ('invaw','invaw'),
  989. ('invawa','invawa'),
  990. ('invbackup','invbackup'),
  991. ('invballooneval','invballooneval'),
  992. ('invbeval','invbeval'),
  993. ('invbin','invbin'),
  994. ('invbinary','invbinary'),
  995. ('invbiosk','invbiosk'),
  996. ('invbioskey','invbioskey'),
  997. ('invbk','invbk'),
  998. ('invbl','invbl'),
  999. ('invbomb','invbomb'),
  1000. ('invbuflisted','invbuflisted'),
  1001. ('invcf','invcf'),
  1002. ('invci','invci'),
  1003. ('invcin','invcin'),
  1004. ('invcindent','invcindent'),
  1005. ('invcompatible','invcompatible'),
  1006. ('invconfirm','invconfirm'),
  1007. ('invconsk','invconsk'),
  1008. ('invconskey','invconskey'),
  1009. ('invcopyindent','invcopyindent'),
  1010. ('invcp','invcp'),
  1011. ('invcrb','invcrb'),
  1012. ('invcscoperelative','invcscoperelative'),
  1013. ('invcscopetag','invcscopetag'),
  1014. ('invcscopeverbose','invcscopeverbose'),
  1015. ('invcsre','invcsre'),
  1016. ('invcst','invcst'),
  1017. ('invcsverb','invcsverb'),
  1018. ('invcuc','invcuc'),
  1019. ('invcul','invcul'),
  1020. ('invcursorbind','invcursorbind'),
  1021. ('invcursorcolumn','invcursorcolumn'),
  1022. ('invcursorline','invcursorline'),
  1023. ('invdeco','invdeco'),
  1024. ('invdelcombine','invdelcombine'),
  1025. ('invdg','invdg'),
  1026. ('invdiff','invdiff'),
  1027. ('invdigraph','invdigraph'),
  1028. ('invea','invea'),
  1029. ('inveb','inveb'),
  1030. ('inved','inved'),
  1031. ('invedcompatible','invedcompatible'),
  1032. ('invek','invek'),
  1033. ('invendofline','invendofline'),
  1034. ('inveol','inveol'),
  1035. ('invequalalways','invequalalways'),
  1036. ('inverrorbells','inverrorbells'),
  1037. ('invesckeys','invesckeys'),
  1038. ('invet','invet'),
  1039. ('invex','invex'),
  1040. ('invexpandtab','invexpandtab'),
  1041. ('invexrc','invexrc'),
  1042. ('invfen','invfen'),
  1043. ('invfic','invfic'),
  1044. ('invfileignorecase','invfileignorecase'),
  1045. ('invfk','invfk'),
  1046. ('invfkmap','invfkmap'),
  1047. ('invfoldenable','invfoldenable'),
  1048. ('invgd','invgd'),
  1049. ('invgdefault','invgdefault'),
  1050. ('invguipty','invguipty'),
  1051. ('invhid','invhid'),
  1052. ('invhidden','invhidden'),
  1053. ('invhk','invhk'),
  1054. ('invhkmap','invhkmap'),
  1055. ('invhkmapp','invhkmapp'),
  1056. ('invhkp','invhkp'),
  1057. ('invhls','invhls'),
  1058. ('invhlsearch','invhlsearch'),
  1059. ('invic','invic'),
  1060. ('invicon','invicon'),
  1061. ('invignorecase','invignorecase'),
  1062. ('invim','invim'),
  1063. ('invimc','invimc'),
  1064. ('invimcmdline','invimcmdline'),
  1065. ('invimd','invimd'),
  1066. ('invimdisable','invimdisable'),
  1067. ('invincsearch','invincsearch'),
  1068. ('invinf','invinf'),
  1069. ('invinfercase','invinfercase'),
  1070. ('invinsertmode','invinsertmode'),
  1071. ('invis','invis'),
  1072. ('invjoinspaces','invjoinspaces'),
  1073. ('invjs','invjs'),
  1074. ('invlazyredraw','invlazyredraw'),
  1075. ('invlbr','invlbr'),
  1076. ('invlinebreak','invlinebreak'),
  1077. ('invlisp','invlisp'),
  1078. ('invlist','invlist'),
  1079. ('invloadplugins','invloadplugins'),
  1080. ('invlpl','invlpl'),
  1081. ('invlz','invlz'),
  1082. ('invma','invma'),
  1083. ('invmacatsui','invmacatsui'),
  1084. ('invmagic','invmagic'),
  1085. ('invmh','invmh'),
  1086. ('invml','invml'),
  1087. ('invmod','invmod'),
  1088. ('invmodeline','invmodeline'),
  1089. ('invmodifiable','invmodifiable'),
  1090. ('invmodified','invmodified'),
  1091. ('invmore','invmore'),
  1092. ('invmousef','invmousef'),
  1093. ('invmousefocus','invmousefocus'),
  1094. ('invmousehide','invmousehide'),
  1095. ('invnu','invnu'),
  1096. ('invnumber','invnumber'),
  1097. ('invodev','invodev'),
  1098. ('invopendevice','invopendevice'),
  1099. ('invpaste','invpaste'),
  1100. ('invpi','invpi'),
  1101. ('invpreserveindent','invpreserveindent'),
  1102. ('invpreviewwindow','invpreviewwindow'),
  1103. ('invprompt','invprompt'),
  1104. ('invpvw','invpvw'),
  1105. ('invreadonly','invreadonly'),
  1106. ('invrelativenumber','invrelativenumber'),
  1107. ('invremap','invremap'),
  1108. ('invrestorescreen','invrestorescreen'),
  1109. ('invrevins','invrevins'),
  1110. ('invri','invri'),
  1111. ('invrightleft','invrightleft'),
  1112. ('invrl','invrl'),
  1113. ('invrnu','invrnu'),
  1114. ('invro','invro'),
  1115. ('invrs','invrs'),
  1116. ('invru','invru'),
  1117. ('invruler','invruler'),
  1118. ('invsb','invsb'),
  1119. ('invsc','invsc'),
  1120. ('invscb','invscb'),
  1121. ('invscrollbind','invscrollbind'),
  1122. ('invscs','invscs'),
  1123. ('invsecure','invsecure'),
  1124. ('invsft','invsft'),
  1125. ('invshellslash','invshellslash'),
  1126. ('invshelltemp','invshelltemp'),
  1127. ('invshiftround','invshiftround'),
  1128. ('invshortname','invshortname'),
  1129. ('invshowcmd','invshowcmd'),
  1130. ('invshowfulltag','invshowfulltag'),
  1131. ('invshowmatch','invshowmatch'),
  1132. ('invshowmode','invshowmode'),
  1133. ('invsi','invsi'),
  1134. ('invsm','invsm'),
  1135. ('invsmartcase','invsmartcase'),
  1136. ('invsmartindent','invsmartindent'),
  1137. ('invsmarttab','invsmarttab'),
  1138. ('invsmd','invsmd'),
  1139. ('invsn','invsn'),
  1140. ('invsol','invsol'),
  1141. ('invspell','invspell'),
  1142. ('invsplitbelow','invsplitbelow'),
  1143. ('invsplitright','invsplitright'),
  1144. ('invspr','invspr'),
  1145. ('invsr','invsr'),
  1146. ('invssl','invssl'),
  1147. ('invsta','invsta'),
  1148. ('invstartofline','invstartofline'),
  1149. ('invstmp','invstmp'),
  1150. ('invswapfile','invswapfile'),
  1151. ('invswf','invswf'),
  1152. ('invta','invta'),
  1153. ('invtagbsearch','invtagbsearch'),
  1154. ('invtagrelative','invtagrelative'),
  1155. ('invtagstack','invtagstack'),
  1156. ('invtbi','invtbi'),
  1157. ('invtbidi','invtbidi'),
  1158. ('invtbs','invtbs'),
  1159. ('invtermbidi','invtermbidi'),
  1160. ('invterse','invterse'),
  1161. ('invtextauto','invtextauto'),
  1162. ('invtextmode','invtextmode'),
  1163. ('invtf','invtf'),
  1164. ('invtgst','invtgst'),
  1165. ('invtildeop','invtildeop'),
  1166. ('invtimeout','invtimeout'),
  1167. ('invtitle','invtitle'),
  1168. ('invto','invto'),
  1169. ('invtop','invtop'),
  1170. ('invtr','invtr'),
  1171. ('invttimeout','invttimeout'),
  1172. ('invttybuiltin','invttybuiltin'),
  1173. ('invttyfast','invttyfast'),
  1174. ('invtx','invtx'),
  1175. ('invudf','invudf'),
  1176. ('invundofile','invundofile'),
  1177. ('invvb','invvb'),
  1178. ('invvisualbell','invvisualbell'),
  1179. ('invwa','invwa'),
  1180. ('invwarn','invwarn'),
  1181. ('invwb','invwb'),
  1182. ('invweirdinvert','invweirdinvert'),
  1183. ('invwfh','invwfh'),
  1184. ('invwfw','invwfw'),
  1185. ('invwic','invwic'),
  1186. ('invwildignorecase','invwildignorecase'),
  1187. ('invwildmenu','invwildmenu'),
  1188. ('invwinfixheight','invwinfixheight'),
  1189. ('invwinfixwidth','invwinfixwidth'),
  1190. ('invwiv','invwiv'),
  1191. ('invwmnu','invwmnu'),
  1192. ('invwrap','invwrap'),
  1193. ('invwrapscan','invwrapscan'),
  1194. ('invwrite','invwrite'),
  1195. ('invwriteany','invwriteany'),
  1196. ('invwritebackup','invwritebackup'),
  1197. ('invws','invws'),
  1198. ('is','is'),
  1199. ('isf','isf'),
  1200. ('isfname','isfname'),
  1201. ('isi','isi'),
  1202. ('isident','isident'),
  1203. ('isk','isk'),
  1204. ('iskeyword','iskeyword'),
  1205. ('isp','isp'),
  1206. ('isprint','isprint'),
  1207. ('joinspaces','joinspaces'),
  1208. ('js','js'),
  1209. ('key','key'),
  1210. ('keymap','keymap'),
  1211. ('keymodel','keymodel'),
  1212. ('keywordprg','keywordprg'),
  1213. ('km','km'),
  1214. ('kmp','kmp'),
  1215. ('kp','kp'),
  1216. ('langmap','langmap'),
  1217. ('langmenu','langmenu'),
  1218. ('laststatus','laststatus'),
  1219. ('lazyredraw','lazyredraw'),
  1220. ('lbr','lbr'),
  1221. ('lcs','lcs'),
  1222. ('linebreak','linebreak'),
  1223. ('lines','lines'),
  1224. ('linespace','linespace'),
  1225. ('lisp','lisp'),
  1226. ('lispwords','lispwords'),
  1227. ('list','list'),
  1228. ('listchars','listchars'),
  1229. ('lm','lm'),
  1230. ('lmap','lmap'),
  1231. ('loadplugins','loadplugins'),
  1232. ('lpl','lpl'),
  1233. ('ls','ls'),
  1234. ('lsp','lsp'),
  1235. ('lw','lw'),
  1236. ('lz','lz'),
  1237. ('ma','ma'),
  1238. ('macatsui','macatsui'),
  1239. ('magic','magic'),
  1240. ('makeef','makeef'),
  1241. ('makeprg','makeprg'),
  1242. ('mat','mat'),
  1243. ('matchpairs','matchpairs'),
  1244. ('matchtime','matchtime'),
  1245. ('maxcombine','maxcombine'),
  1246. ('maxfuncdepth','maxfuncdepth'),
  1247. ('maxmapdepth','maxmapdepth'),
  1248. ('maxmem','maxmem'),
  1249. ('maxmempattern','maxmempattern'),
  1250. ('maxmemtot','maxmemtot'),
  1251. ('mco','mco'),
  1252. ('mef','mef'),
  1253. ('menuitems','menuitems'),
  1254. ('mfd','mfd'),
  1255. ('mh','mh'),
  1256. ('mis','mis'),
  1257. ('mkspellmem','mkspellmem'),
  1258. ('ml','ml'),
  1259. ('mls','mls'),
  1260. ('mm','mm'),
  1261. ('mmd','mmd'),
  1262. ('mmp','mmp'),
  1263. ('mmt','mmt'),
  1264. ('mod','mod'),
  1265. ('modeline','modeline'),
  1266. ('modelines','modelines'),
  1267. ('modifiable','modifiable'),
  1268. ('modified','modified'),
  1269. ('more','more'),
  1270. ('mouse','mouse'),
  1271. ('mousef','mousef'),
  1272. ('mousefocus','mousefocus'),
  1273. ('mousehide','mousehide'),
  1274. ('mousem','mousem'),
  1275. ('mousemodel','mousemodel'),
  1276. ('mouses','mouses'),
  1277. ('mouseshape','mouseshape'),
  1278. ('mouset','mouset'),
  1279. ('mousetime','mousetime'),
  1280. ('mp','mp'),
  1281. ('mps','mps'),
  1282. ('msm','msm'),
  1283. ('mzq','mzq'),
  1284. ('mzquantum','mzquantum'),
  1285. ('nf','nf'),
  1286. ('nnoremap','nnoremap'),
  1287. ('noacd','noacd'),
  1288. ('noai','noai'),
  1289. ('noakm','noakm'),
  1290. ('noallowrevins','noallowrevins'),
  1291. ('noaltkeymap','noaltkeymap'),
  1292. ('noanti','noanti'),
  1293. ('noantialias','noantialias'),
  1294. ('noar','noar'),
  1295. ('noarab','noarab'),
  1296. ('noarabic','noarabic'),
  1297. ('noarabicshape','noarabicshape'),
  1298. ('noari','noari'),
  1299. ('noarshape','noarshape'),
  1300. ('noautochdir','noautochdir'),
  1301. ('noautoindent','noautoindent'),
  1302. ('noautoread','noautoread'),
  1303. ('noautowrite','noautowrite'),
  1304. ('noautowriteall','noautowriteall'),
  1305. ('noaw','noaw'),
  1306. ('noawa','noawa'),
  1307. ('nobackup','nobackup'),
  1308. ('noballooneval','noballooneval'),
  1309. ('nobeval','nobeval'),
  1310. ('nobin','nobin'),
  1311. ('nobinary','nobinary'),
  1312. ('nobiosk','nobiosk'),
  1313. ('nobioskey','nobioskey'),
  1314. ('nobk','nobk'),
  1315. ('nobl','nobl'),
  1316. ('nobomb','nobomb'),
  1317. ('nobuflisted','nobuflisted'),
  1318. ('nocf','nocf'),
  1319. ('noci','noci'),
  1320. ('nocin','nocin'),
  1321. ('nocindent','nocindent'),
  1322. ('nocompatible','nocompatible'),
  1323. ('noconfirm','noconfirm'),
  1324. ('noconsk','noconsk'),
  1325. ('noconskey','noconskey'),
  1326. ('nocopyindent','nocopyindent'),
  1327. ('nocp','nocp'),
  1328. ('nocrb','nocrb'),
  1329. ('nocscoperelative','nocscoperelative'),
  1330. ('nocscopetag','nocscopetag'),
  1331. ('nocscopeverbose','nocscopeverbose'),
  1332. ('nocsre','nocsre'),
  1333. ('nocst','nocst'),
  1334. ('nocsverb','nocsverb'),
  1335. ('nocuc','nocuc'),
  1336. ('nocul','nocul'),
  1337. ('nocursorbind','nocursorbind'),
  1338. ('nocursorcolumn','nocursorcolumn'),
  1339. ('nocursorline','nocursorline'),
  1340. ('nodeco','nodeco'),
  1341. ('nodelcombine','nodelcombine'),
  1342. ('nodg','nodg'),
  1343. ('nodiff','nodiff'),
  1344. ('nodigraph','nodigraph'),
  1345. ('noea','noea'),
  1346. ('noeb','noeb'),
  1347. ('noed','noed'),
  1348. ('noedcompatible','noedcompatible'),
  1349. ('noek','noek'),
  1350. ('noendofline','noendofline'),
  1351. ('noeol','noeol'),
  1352. ('noequalalways','noequalalways'),
  1353. ('noerrorbells','noerrorbells'),
  1354. ('noesckeys','noesckeys'),
  1355. ('noet','noet'),
  1356. ('noex','noex'),
  1357. ('noexpandtab','noexpandtab'),
  1358. ('noexrc','noexrc'),
  1359. ('nofen','nofen'),
  1360. ('nofic','nofic'),
  1361. ('nofileignorecase','nofileignorecase'),
  1362. ('nofk','nofk'),
  1363. ('nofkmap','nofkmap'),
  1364. ('nofoldenable','nofoldenable'),
  1365. ('nogd','nogd'),
  1366. ('nogdefault','nogdefault'),
  1367. ('noguipty','noguipty'),
  1368. ('nohid','nohid'),
  1369. ('nohidden','nohidden'),
  1370. ('nohk','nohk'),
  1371. ('nohkmap','nohkmap'),
  1372. ('nohkmapp','nohkmapp'),
  1373. ('nohkp','nohkp'),
  1374. ('nohls','nohls'),
  1375. ('nohlsearch','nohlsearch'),
  1376. ('noic','noic'),
  1377. ('noicon','noicon'),
  1378. ('noignorecase','noignorecase'),
  1379. ('noim','noim'),
  1380. ('noimc','noimc'),
  1381. ('noimcmdline','noimcmdline'),
  1382. ('noimd','noimd'),
  1383. ('noimdisable','noimdisable'),
  1384. ('noincsearch','noincsearch'),
  1385. ('noinf','noinf'),
  1386. ('noinfercase','noinfercase'),
  1387. ('noinsertmode','noinsertmode'),
  1388. ('nois','nois'),
  1389. ('nojoinspaces','nojoinspaces'),
  1390. ('nojs','nojs'),
  1391. ('nolazyredraw','nolazyredraw'),
  1392. ('nolbr','nolbr'),
  1393. ('nolinebreak','nolinebreak'),
  1394. ('nolisp','nolisp'),
  1395. ('nolist','nolist'),
  1396. ('noloadplugins','noloadplugins'),
  1397. ('nolpl','nolpl'),
  1398. ('nolz','nolz'),
  1399. ('noma','noma'),
  1400. ('nomacatsui','nomacatsui'),
  1401. ('nomagic','nomagic'),
  1402. ('nomh','nomh'),
  1403. ('noml','noml'),
  1404. ('nomod','nomod'),
  1405. ('nomodeline','nomodeline'),
  1406. ('nomodifiable','nomodifiable'),
  1407. ('nomodified','nomodified'),
  1408. ('nomore','nomore'),
  1409. ('nomousef','nomousef'),
  1410. ('nomousefocus','nomousefocus'),
  1411. ('nomousehide','nomousehide'),
  1412. ('nonu','nonu'),
  1413. ('nonumber','nonumber'),
  1414. ('noodev','noodev'),
  1415. ('noopendevice','noopendevice'),
  1416. ('nopaste','nopaste'),
  1417. ('nopi','nopi'),
  1418. ('nopreserveindent','nopreserveindent'),
  1419. ('nopreviewwindow','nopreviewwindow'),
  1420. ('noprompt','noprompt'),
  1421. ('nopvw','nopvw'),
  1422. ('noreadonly','noreadonly'),
  1423. ('norelativenumber','norelativenumber'),
  1424. ('noremap','noremap'),
  1425. ('norestorescreen','norestorescreen'),
  1426. ('norevins','norevins'),
  1427. ('nori','nori'),
  1428. ('norightleft','norightleft'),
  1429. ('norl','norl'),
  1430. ('nornu','nornu'),
  1431. ('noro','noro'),
  1432. ('nors','nors'),
  1433. ('noru','noru'),
  1434. ('noruler','noruler'),
  1435. ('nosb','nosb'),
  1436. ('nosc','nosc'),
  1437. ('noscb','noscb'),
  1438. ('noscrollbind','noscrollbind'),
  1439. ('noscs','noscs'),
  1440. ('nosecure','nosecure'),
  1441. ('nosft','nosft'),
  1442. ('noshellslash','noshellslash'),
  1443. ('noshelltemp','noshelltemp'),
  1444. ('noshiftround','noshiftround'),
  1445. ('noshortname','noshortname'),
  1446. ('noshowcmd','noshowcmd'),
  1447. ('noshowfulltag','noshowfulltag'),
  1448. ('noshowmatch','noshowmatch'),
  1449. ('noshowmode','noshowmode'),
  1450. ('nosi','nosi'),
  1451. ('nosm','nosm'),
  1452. ('nosmartcase','nosmartcase'),
  1453. ('nosmartindent','nosmartindent'),
  1454. ('nosmarttab','nosmarttab'),
  1455. ('nosmd','nosmd'),
  1456. ('nosn','nosn'),
  1457. ('nosol','nosol'),
  1458. ('nospell','nospell'),
  1459. ('nosplitbelow','nosplitbelow'),
  1460. ('nosplitright','nosplitright'),
  1461. ('nospr','nospr'),
  1462. ('nosr','nosr'),
  1463. ('nossl','nossl'),
  1464. ('nosta','nosta'),
  1465. ('nostartofline','nostartofline'),
  1466. ('nostmp','nostmp'),
  1467. ('noswapfile','noswapfile'),
  1468. ('noswf','noswf'),
  1469. ('nota','nota'),
  1470. ('notagbsearch','notagbsearch'),
  1471. ('notagrelative','notagrelative'),
  1472. ('notagstack','notagstack'),
  1473. ('notbi','notbi'),
  1474. ('notbidi','notbidi'),
  1475. ('notbs','notbs'),
  1476. ('notermbidi','notermbidi'),
  1477. ('noterse','noterse'),
  1478. ('notextauto','notextauto'),
  1479. ('notextmode','notextmode'),
  1480. ('notf','notf'),
  1481. ('notgst','notgst'),
  1482. ('notildeop','notildeop'),
  1483. ('notimeout','notimeout'),
  1484. ('notitle','notitle'),
  1485. ('noto','noto'),
  1486. ('notop','notop'),
  1487. ('notr','notr'),
  1488. ('nottimeout','nottimeout'),
  1489. ('nottybuiltin','nottybuiltin'),
  1490. ('nottyfast','nottyfast'),
  1491. ('notx','notx'),
  1492. ('noudf','noudf'),
  1493. ('noundofile','noundofile'),
  1494. ('novb','novb'),
  1495. ('novisualbell','novisualbell'),
  1496. ('nowa','nowa'),
  1497. ('nowarn','nowarn'),
  1498. ('nowb','nowb'),
  1499. ('noweirdinvert','noweirdinvert'),
  1500. ('nowfh','nowfh'),
  1501. ('nowfw','nowfw'),
  1502. ('nowic','nowic'),
  1503. ('nowildignorecase','nowildignorecase'),
  1504. ('nowildmenu','nowildmenu'),
  1505. ('nowinfixheight','nowinfixheight'),
  1506. ('nowinfixwidth','nowinfixwidth'),
  1507. ('nowiv','nowiv'),
  1508. ('nowmnu','nowmnu'),
  1509. ('nowrap','nowrap'),
  1510. ('nowrapscan','nowrapscan'),
  1511. ('nowrite','nowrite'),
  1512. ('nowriteany','nowriteany'),
  1513. ('nowritebackup','nowritebackup'),
  1514. ('nows','nows'),
  1515. ('nrformats','nrformats'),
  1516. ('nu','nu'),
  1517. ('number','number'),
  1518. ('numberwidth','numberwidth'),
  1519. ('nuw','nuw'),
  1520. ('odev','odev'),
  1521. ('oft','oft'),
  1522. ('ofu','ofu'),
  1523. ('omnifunc','omnifunc'),
  1524. ('opendevice','opendevice'),
  1525. ('operatorfunc','operatorfunc'),
  1526. ('opfunc','opfunc'),
  1527. ('osfiletype','osfiletype'),
  1528. ('pa','pa'),
  1529. ('para','para'),
  1530. ('paragraphs','paragraphs'),
  1531. ('paste','paste'),
  1532. ('pastetoggle','pastetoggle'),
  1533. ('patchexpr','patchexpr'),
  1534. ('patchmode','patchmode'),
  1535. ('path','path'),
  1536. ('pdev','pdev'),
  1537. ('penc','penc'),
  1538. ('pex','pex'),
  1539. ('pexpr','pexpr'),
  1540. ('pfn','pfn'),
  1541. ('ph','ph'),
  1542. ('pheader','pheader'),
  1543. ('pi','pi'),
  1544. ('pm','pm'),
  1545. ('pmbcs','pmbcs'),
  1546. ('pmbfn','pmbfn'),
  1547. ('popt','popt'),
  1548. ('preserveindent','preserveindent'),
  1549. ('previewheight','previewheight'),
  1550. ('previewwindow','previewwindow'),
  1551. ('printdevice','printdevice'),
  1552. ('printencoding','printencoding'),
  1553. ('printexpr','printexpr'),
  1554. ('printfont','printfont'),
  1555. ('printheader','printheader'),
  1556. ('printmbcharset','printmbcharset'),
  1557. ('printmbfont','printmbfont'),
  1558. ('printoptions','printoptions'),
  1559. ('prompt','prompt'),
  1560. ('pt','pt'),
  1561. ('pumheight','pumheight'),
  1562. ('pvh','pvh'),
  1563. ('pvw','pvw'),
  1564. ('qe','qe'),
  1565. ('quoteescape','quoteescape'),
  1566. ('rdt','rdt'),
  1567. ('re','re'),
  1568. ('readonly','readonly'),
  1569. ('redrawtime','redrawtime'),
  1570. ('regexpengine','regexpengine'),
  1571. ('relativenumber','relativenumber'),
  1572. ('remap','remap'),
  1573. ('report','report'),
  1574. ('restorescreen','restorescreen'),
  1575. ('revins','revins'),
  1576. ('ri','ri'),
  1577. ('rightleft','rightleft'),
  1578. ('rightleftcmd','rightleftcmd'),
  1579. ('rl','rl'),
  1580. ('rlc','rlc'),
  1581. ('rnu','rnu'),
  1582. ('ro','ro'),
  1583. ('rs','rs'),
  1584. ('rtp','rtp'),
  1585. ('ru','ru'),
  1586. ('ruf','ruf'),
  1587. ('ruler','ruler'),
  1588. ('rulerformat','rulerformat'),
  1589. ('runtimepath','runtimepath'),
  1590. ('sb','sb'),
  1591. ('sbo','sbo'),
  1592. ('sbr','sbr'),
  1593. ('sc','sc'),
  1594. ('scb','scb'),
  1595. ('scr','scr'),
  1596. ('scroll','scroll'),
  1597. ('scrollbind','scrollbind'),
  1598. ('scrolljump','scrolljump'),
  1599. ('scrolloff','scrolloff'),
  1600. ('scrollopt','scrollopt'),
  1601. ('scs','scs'),
  1602. ('sect','sect'),
  1603. ('sections','sections'),
  1604. ('secure','secure'),
  1605. ('sel','sel'),
  1606. ('selection','selection'),
  1607. ('selectmode','selectmode'),
  1608. ('sessionoptions','sessionoptions'),
  1609. ('sft','sft'),
  1610. ('sh','sh'),
  1611. ('shcf','shcf'),
  1612. ('shell','shell'),
  1613. ('shellcmdflag','shellcmdflag'),
  1614. ('shellpipe','shellpipe'),
  1615. ('shellquote','shellquote'),
  1616. ('shellredir','shellredir'),
  1617. ('shellslash','shellslash'),
  1618. ('shelltemp','shelltemp'),
  1619. ('shelltype','shelltype'),
  1620. ('shellxescape','shellxescape'),
  1621. ('shellxquote','shellxquote'),
  1622. ('shiftround','shiftround'),
  1623. ('shiftwidth','shiftwidth'),
  1624. ('shm','shm'),
  1625. ('shortmess','shortmess'),
  1626. ('shortname','shortname'),
  1627. ('showbreak','showbreak'),
  1628. ('showcmd','showcmd'),
  1629. ('showfulltag','showfulltag'),
  1630. ('showmatch','showmatch'),
  1631. ('showmode','showmode'),
  1632. ('showtabline','showtabline'),
  1633. ('shq','shq'),
  1634. ('si','si'),
  1635. ('sidescroll','sidescroll'),
  1636. ('sidescrolloff','sidescrolloff'),
  1637. ('siso','siso'),
  1638. ('sj','sj'),
  1639. ('slm','slm'),
  1640. ('sm','sm'),
  1641. ('smartcase','smartcase'),
  1642. ('smartindent','smartindent'),
  1643. ('smarttab','smarttab'),
  1644. ('smc','smc'),
  1645. ('smd','smd'),
  1646. ('sn','sn'),
  1647. ('so','so'),
  1648. ('softtabstop','softtabstop'),
  1649. ('sol','sol'),
  1650. ('sp','sp'),
  1651. ('spc','spc'),
  1652. ('spell','spell'),
  1653. ('spellcapcheck','spellcapcheck'),
  1654. ('spellfile','spellfile'),
  1655. ('spelllang','spelllang'),
  1656. ('spellsuggest','spellsuggest'),
  1657. ('spf','spf'),
  1658. ('spl','spl'),
  1659. ('splitbelow','splitbelow'),
  1660. ('splitright','splitright'),
  1661. ('spr','spr'),
  1662. ('sps','sps'),
  1663. ('sr','sr'),
  1664. ('srr','srr'),
  1665. ('ss','ss'),
  1666. ('ssl','ssl'),
  1667. ('ssop','ssop'),
  1668. ('st','st'),
  1669. ('sta','sta'),
  1670. ('stal','stal'),
  1671. ('startofline','startofline'),
  1672. ('statusline','statusline'),
  1673. ('stl','stl'),
  1674. ('stmp','stmp'),
  1675. ('sts','sts'),
  1676. ('su','su'),
  1677. ('sua','sua'),
  1678. ('suffixes','suffixes'),
  1679. ('suffixesadd','suffixesadd'),
  1680. ('sw','sw'),
  1681. ('swapfile','swapfile'),
  1682. ('swapsync','swapsync'),
  1683. ('swb','swb'),
  1684. ('swf','swf'),
  1685. ('switchbuf','switchbuf'),
  1686. ('sws','sws'),
  1687. ('sxe','sxe'),
  1688. ('sxq','sxq'),
  1689. ('syn','syn'),
  1690. ('synmaxcol','synmaxcol'),
  1691. ('syntax','syntax'),
  1692. ('t_AB','t_AB'),
  1693. ('t_AF','t_AF'),
  1694. ('t_AL','t_AL'),
  1695. ('t_CS','t_CS'),
  1696. ('t_CV','t_CV'),
  1697. ('t_Ce','t_Ce'),
  1698. ('t_Co','t_Co'),
  1699. ('t_Cs','t_Cs'),
  1700. ('t_DL','t_DL'),
  1701. ('t_EI','t_EI'),
  1702. ('t_F1','t_F1'),
  1703. ('t_F2','t_F2'),
  1704. ('t_F3','t_F3'),
  1705. ('t_F4','t_F4'),
  1706. ('t_F5','t_F5'),
  1707. ('t_F6','t_F6'),
  1708. ('t_F7','t_F7'),
  1709. ('t_F8','t_F8'),
  1710. ('t_F9','t_F9'),
  1711. ('t_IE','t_IE'),
  1712. ('t_IS','t_IS'),
  1713. ('t_K1','t_K1'),
  1714. ('t_K3','t_K3'),
  1715. ('t_K4','t_K4'),
  1716. ('t_K5','t_K5'),
  1717. ('t_K6','t_K6'),
  1718. ('t_K7','t_K7'),
  1719. ('t_K8','t_K8'),
  1720. ('t_K9','t_K9'),
  1721. ('t_KA','t_KA'),
  1722. ('t_KB','t_KB'),
  1723. ('t_KC','t_KC'),
  1724. ('t_KD','t_KD'),
  1725. ('t_KE','t_KE'),
  1726. ('t_KF','t_KF'),
  1727. ('t_KG','t_KG'),
  1728. ('t_KH','t_KH'),
  1729. ('t_KI','t_KI'),
  1730. ('t_KJ','t_KJ'),
  1731. ('t_KK','t_KK'),
  1732. ('t_KL','t_KL'),
  1733. ('t_RI','t_RI'),
  1734. ('t_RV','t_RV'),
  1735. ('t_SI','t_SI'),
  1736. ('t_Sb','t_Sb'),
  1737. ('t_Sf','t_Sf'),
  1738. ('t_WP','t_WP'),
  1739. ('t_WS','t_WS'),
  1740. ('t_ZH','t_ZH'),
  1741. ('t_ZR','t_ZR'),
  1742. ('t_al','t_al'),
  1743. ('t_bc','t_bc'),
  1744. ('t_cd','t_cd'),
  1745. ('t_ce','t_ce'),
  1746. ('t_cl','t_cl'),
  1747. ('t_cm','t_cm'),
  1748. ('t_cs','t_cs'),
  1749. ('t_da','t_da'),
  1750. ('t_db','t_db'),
  1751. ('t_dl','t_dl'),
  1752. ('t_fs','t_fs'),
  1753. ('t_k1','t_k1'),
  1754. ('t_k2','t_k2'),
  1755. ('t_k3','t_k3'),
  1756. ('t_k4','t_k4'),
  1757. ('t_k5','t_k5'),
  1758. ('t_k6','t_k6'),
  1759. ('t_k7','t_k7'),
  1760. ('t_k8','t_k8'),
  1761. ('t_k9','t_k9'),
  1762. ('t_kB','t_kB'),
  1763. ('t_kD','t_kD'),
  1764. ('t_kI','t_kI'),
  1765. ('t_kN','t_kN'),
  1766. ('t_kP','t_kP'),
  1767. ('t_kb','t_kb'),
  1768. ('t_kd','t_kd'),
  1769. ('t_ke','t_ke'),
  1770. ('t_kh','t_kh'),
  1771. ('t_kl','t_kl'),
  1772. ('t_kr','t_kr'),
  1773. ('t_ks','t_ks'),
  1774. ('t_ku','t_ku'),
  1775. ('t_le','t_le'),
  1776. ('t_mb','t_mb'),
  1777. ('t_md','t_md'),
  1778. ('t_me','t_me'),
  1779. ('t_mr','t_mr'),
  1780. ('t_ms','t_ms'),
  1781. ('t_nd','t_nd'),
  1782. ('t_op','t_op'),
  1783. ('t_se','t_se'),
  1784. ('t_so','t_so'),
  1785. ('t_sr','t_sr'),
  1786. ('t_te','t_te'),
  1787. ('t_ti','t_ti'),
  1788. ('t_ts','t_ts'),
  1789. ('t_u7','t_u7'),
  1790. ('t_ue','t_ue'),
  1791. ('t_us','t_us'),
  1792. ('t_ut','t_ut'),
  1793. ('t_vb','t_vb'),
  1794. ('t_ve','t_ve'),
  1795. ('t_vi','t_vi'),
  1796. ('t_vs','t_vs'),
  1797. ('t_xs','t_xs'),
  1798. ('ta','ta'),
  1799. ('tabline','tabline'),
  1800. ('tabpagemax','tabpagemax'),
  1801. ('tabstop','tabstop'),
  1802. ('tag','tag'),
  1803. ('tagbsearch','tagbsearch'),
  1804. ('taglength','taglength'),
  1805. ('tagrelative','tagrelative'),
  1806. ('tags','tags'),
  1807. ('tagstack','tagstack'),
  1808. ('tal','tal'),
  1809. ('tb','tb'),
  1810. ('tbi','tbi'),
  1811. ('tbidi','tbidi'),
  1812. ('tbis','tbis'),
  1813. ('tbs','tbs'),
  1814. ('tenc','tenc'),
  1815. ('term','term'),
  1816. ('termbidi','termbidi'),
  1817. ('termencoding','termencoding'),
  1818. ('terse','terse'),
  1819. ('textauto','textauto'),
  1820. ('textmode','textmode'),
  1821. ('textwidth','textwidth'),
  1822. ('tf','tf'),
  1823. ('tgst','tgst'),
  1824. ('thesaurus','thesaurus'),
  1825. ('tildeop','tildeop'),
  1826. ('timeout','timeout'),
  1827. ('timeoutlen','timeoutlen'),
  1828. ('title','title'),
  1829. ('titlelen','titlelen'),
  1830. ('titleold','titleold'),
  1831. ('titlestring','titlestring'),
  1832. ('tl','tl'),
  1833. ('tm','tm'),
  1834. ('to','to'),
  1835. ('toolbar','toolbar'),
  1836. ('toolbariconsize','toolbariconsize'),
  1837. ('top','top'),
  1838. ('tpm','tpm'),
  1839. ('tr','tr'),
  1840. ('ts','ts'),
  1841. ('tsl','tsl'),
  1842. ('tsr','tsr'),
  1843. ('ttimeout','ttimeout'),
  1844. ('ttimeoutlen','ttimeoutlen'),
  1845. ('ttm','ttm'),
  1846. ('tty','tty'),
  1847. ('ttybuiltin','ttybuiltin'),
  1848. ('ttyfast','ttyfast'),
  1849. ('ttym','ttym'),
  1850. ('ttymouse','ttymouse'),
  1851. ('ttyscroll','ttyscroll'),
  1852. ('ttytype','ttytype'),
  1853. ('tw','tw'),
  1854. ('tx','tx'),
  1855. ('uc','uc'),
  1856. ('udf','udf'),
  1857. ('udir','udir'),
  1858. ('ul','ul'),
  1859. ('undodir','undodir'),
  1860. ('undofile','undofile'),
  1861. ('undolevels','undolevels'),
  1862. ('undoreload','undoreload'),
  1863. ('updatecount','updatecount'),
  1864. ('updatetime','updatetime'),
  1865. ('ur','ur'),
  1866. ('ut','ut'),
  1867. ('vb','vb'),
  1868. ('vbs','vbs'),
  1869. ('vdir','vdir'),
  1870. ('ve','ve'),
  1871. ('verbose','verbose'),
  1872. ('verbosefile','verbosefile'),
  1873. ('vfile','vfile'),
  1874. ('vi','vi'),
  1875. ('viewdir','viewdir'),
  1876. ('viewoptions','viewoptions'),
  1877. ('viminfo','viminfo'),
  1878. ('virtualedit','virtualedit'),
  1879. ('visualbell','visualbell'),
  1880. ('vnoremap','vnoremap'),
  1881. ('vop','vop'),
  1882. ('wa','wa'),
  1883. ('wak','wak'),
  1884. ('warn','warn'),
  1885. ('wb','wb'),
  1886. ('wc','wc'),
  1887. ('wcm','wcm'),
  1888. ('wd','wd'),
  1889. ('weirdinvert','weirdinvert'),
  1890. ('wfh','wfh'),
  1891. ('wfw','wfw'),
  1892. ('wh','wh'),
  1893. ('whichwrap','whichwrap'),
  1894. ('wi','wi'),
  1895. ('wic','wic'),
  1896. ('wig','wig'),
  1897. ('wildchar','wildchar'),
  1898. ('wildcharm','wildcharm'),
  1899. ('wildignore','wildignore'),
  1900. ('wildignorecase','wildignorecase'),
  1901. ('wildmenu','wildmenu'),
  1902. ('wildmode','wildmode'),
  1903. ('wildoptions','wildoptions'),
  1904. ('wim','wim'),
  1905. ('winaltkeys','winaltkeys'),
  1906. ('window','window'),
  1907. ('winfixheight','winfixheight'),
  1908. ('winfixwidth','winfixwidth'),
  1909. ('winheight','winheight'),
  1910. ('winminheight','winminheight'),
  1911. ('winminwidth','winminwidth'),
  1912. ('winwidth','winwidth'),
  1913. ('wiv','wiv'),
  1914. ('wiw','wiw'),
  1915. ('wm','wm'),
  1916. ('wmh','wmh'),
  1917. ('wmnu','wmnu'),
  1918. ('wmw','wmw'),
  1919. ('wop','wop'),
  1920. ('wrap','wrap'),
  1921. ('wrapmargin','wrapmargin'),
  1922. ('wrapscan','wrapscan'),
  1923. ('write','write'),
  1924. ('writeany','writeany'),
  1925. ('writebackup','writebackup'),
  1926. ('writedelay','writedelay'),
  1927. ('ws','ws'),
  1928. ('ww','ww'),
  1929. )
  1930. return var
  1931. option = _getoption()