# HG changeset patch # User Bram Moolenaar # Date 1279996512 -7200 # Node ID ab69430e646ccf54d02ae09633cb9efb06d35320 # Parent a3aca345aafa95e2dedec0e7150199c317d198c3 Further improvements for :options. (Dominique Pelle) diff --git a/runtime/optwin.vim b/runtime/optwin.vim --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -271,7 +271,7 @@ call append("$", "ignorecase\tignore cas call BinOptionG("ic", &ic) call append("$", "smartcase\toverride 'ignorecase' when pattern has upper case characters") call BinOptionG("scs", &scs) -call append("$", "casemap\tWhat method to use for changing case of letters") +call append("$", "casemap\twhat method to use for changing case of letters") call OptionG("cmp", &cmp) call append("$", "maxmempattern\tmaximum amount of memory in Kbyte used for pattern matching") call append("$", " \tset mmp=" . &mmp) @@ -313,7 +313,7 @@ if has("cscope") call BinOptionG("csverb", &csverb) call append("$", "cscopepathcomp\thow many components of the path to show") call append("$", " \tset cspc=" . &cspc) - call append("$", "cscopequickfix\tWhen to open a quickfix window for cscope") + call append("$", "cscopequickfix\twhen to open a quickfix window for cscope") call OptionG("csqf", &csqf) endif @@ -597,7 +597,7 @@ if has("gui") call append("$", "toolbar\t\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar") call OptionG("tb", &tb) if has("gui_gtk2") - call append("$", "toolbariconsize\tSize of toolbar icons") + call append("$", "toolbariconsize\tsize of toolbar icons") call OptionG("tbis", &tbis) endif call append("$", "guiheadroom\troom (in pixels) left above/below the window") @@ -787,7 +787,7 @@ call append("$", "tildeop\tthe \"~\" com call BinOptionG("top", &top) call append("$", "operatorfunc\tfunction called for the\"g@\" operator") call OptionG("opfunc", &opfunc) -call append("$", "showmatch\tWhen inserting a bracket, briefly jump to its match") +call append("$", "showmatch\twhen inserting a bracket, briefly jump to its match") call BinOptionG("sm", &sm) call append("$", "matchtime\ttenth of a second to show a match for 'showmatch'") call append("$", " \tset mat=" . &mat) @@ -847,10 +847,10 @@ if has("cindent") call append("$", "\t(local to buffer)") call OptionL("indk") endif -call append("$", "copyindent\tCopy whitespace for indenting from previous line") +call append("$", "copyindent\tcopy whitespace for indenting from previous line") call append("$", "\t(local to buffer)") call BinOptionL("ci") -call append("$", "preserveindent\tPreserve kind of whitespace when changing indent") +call append("$", "preserveindent\tpreserve kind of whitespace when changing indent") call append("$", "\t(local to buffer)") call BinOptionL("pi") if has("lispindent") @@ -947,7 +947,7 @@ call append("$", "endofline\tlast line i call append("$", "\t(local to buffer)") call BinOptionL("eol") if has("multi_byte") - call append("$", "bomb\tPrepend a Byte Order Mark to the file") + call append("$", "bomb\tprepend a Byte Order Mark to the file") call append("$", "\t(local to buffer)") call BinOptionL("bomb") endif @@ -993,7 +993,7 @@ if !has("msdos") call append("$", "\t(local to buffer)") call BinOptionL("sn") endif -call append("$", "cryptmethod\tsimple (0) or complex (1) encryption method for file writing") +call append("$", "cryptmethod\encryption method for file writing: zip or blowfish") call append("$", "\t(local to buffer)") call OptionL("cm") @@ -1145,12 +1145,12 @@ if has("rightleft") call append("$", "rightleft\tdisplay the buffer right-to-left") call append("$", "\t(local to window)") call BinOptionL("rl") - call append("$", "rightleftcmd\tWhen to edit the command-line right-to-left") + call append("$", "rightleftcmd\twhen to edit the command-line right-to-left") call append("$", "\t(local to window)") call OptionL("rlc") - call append("$", "revins\tInsert characters backwards") + call append("$", "revins\tinsert characters backwards") call BinOptionG("ri", &ri) - call append("$", "allowrevins\tAllow CTRL-_ in Insert and Command-line mode to toggle 'revins'") + call append("$", "allowrevins\tallow CTRL-_ in Insert and Command-line mode to toggle 'revins'") call BinOptionG("ari", &ari) call append("$", "aleph\tthe ASCII code for the first letter of the Hebrew alphabet") call append("$", " \tset al=" . &al) @@ -1166,12 +1166,12 @@ if has("farsi") call BinOptionG("fk", &fk) endif if has("arabic") - call append("$", "arabic\tPrepare for editing Arabic text") + call append("$", "arabic\tprepare for editing Arabic text") call append("$", "\t(local to window)") call BinOptionL("arab") - call append("$", "arabicshape\tPerform shaping of Arabic characters") + call append("$", "arabicshape\tperform shaping of Arabic characters") call BinOptionG("arshape", &arshape) - call append("$", "termbidi\tTerminal will perform bidi handling") + call append("$", "termbidi\tterminal will perform bidi handling") call BinOptionG("tbidi", &tbidi) endif if has("keymap") @@ -1212,15 +1212,15 @@ if has("multi_byte") call OptionG("tenc", &tenc) call append("$", "charconvert\texpression used for character encoding conversion") call OptionG("ccv", &ccv) - call append("$", "delcombine\tDelete combining (composing) characters on their own") + call append("$", "delcombine\tdelete combining (composing) characters on their own") call BinOptionG("deco", &deco) - call append("$", "maxcombine\tMaximum number of combining (composing) characters displayed") + call append("$", "maxcombine\tmaximum number of combining (composing) characters displayed") call OptionG("mco", &mco) if has("xim") && has("gui_gtk") call append("$", "imactivatekey\tkey that activates the X input method") call OptionG("imak", &imak) endif - call append("$", "ambiwidth\tWidth of ambiguous width characters") + call append("$", "ambiwidth\twidth of ambiguous width characters") call OptionG("ambw", &ambw) endif