# SOME DESCRIPTIVE TITLE # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2007-07-22 17:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING" # type: Plain text #: quickref.txt:2 #, no-wrap msgid "*quickref.txt* For Vim version 7.0. Last change: 2006 Apr 30\n" msgstr "" # type: Plain text #: quickref.txt:5 #, no-wrap msgid "\t\t VIM REFERENCE MANUAL by Bram Moolenaar\n" msgstr "" # type: Plain text #: quickref.txt:7 #, no-wrap msgid "\t\t\t Quick reference guide\n" msgstr "" # type: Plain text #: quickref.txt:31 #, no-wrap msgid "" "\t\t\t\t\t\t\t *quickref* *Contents*\n" " tag\t subject\t\t\t tag\t subject\t~\n" "|Q_ct| list of help files\t\t|Q_re|\tRepeating commands\n" "|Q_lr|\tmotion: Left-right\t\t|Q_km|\tKey mapping\n" "|Q_ud|\tmotion: Up-down\t\t\t|Q_ab|\tAbbreviations\n" "|Q_tm|\tmotion: Text object\t\t|Q_op|\tOptions\n" "|Q_pa|\tmotion: Pattern searches\t|Q_ur|\tUndo/Redo commands\n" "|Q_ma|\tmotion: Marks\t\t\t|Q_et|\tExternal commands\n" "|Q_vm|\tmotion: Various\t\t\t|Q_qf|\tQuickfix commands\n" "|Q_ta|\tmotion: Using tags\t\t|Q_vc|\tVarious commands\n" "|Q_sc|\tScrolling\t\t\t|Q_ce|\tEx: Command-line editing\n" "|Q_in|\tinsert: Inserting text\t\t|Q_ra|\tEx: Ranges\n" "|Q_ai|\tinsert: Keys\t\t\t|Q_ex|\tEx: Special characters\n" "|Q_ss|\tinsert: Special keys\t\t|Q_st|\tStarting VIM\n" "|Q_di|\tinsert: Digraphs\t\t|Q_ed|\tEditing a file\n" "|Q_si|\tinsert: Special inserts\t\t|Q_fl|\tUsing the argument list\n" "|Q_de|\tchange: Deleting text\t\t|Q_wq|\tWriting and quitting\n" "|Q_cm|\tchange: Copying and moving\t|Q_ac|\tAutomatic commands\n" "|Q_ch|\tchange: Changing text\t\t|Q_wi|\tMulti-window commands\n" "|Q_co|\tchange: Complex\t\t\t|Q_bu|\tBuffer list commands\n" "|Q_vi|\tVisual mode\t\t\t|Q_sy|\tSyntax highlighting\n" "|Q_to|\tText objects\t\t\t|Q_gu|\tGUI commands\n" "\t\t\t\t\t|Q_fo| Folding\n" msgstr "" # type: Plain text #: quickref.txt:32 #, no-wrap msgid "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:34 #, no-wrap msgid "" "N is used to indicate an optional count that can be given before the " "command.\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:36 #, no-wrap msgid "*Q_lr*\t\tLeft-right motions\n" msgstr "" # type: Plain text #: quickref.txt:58 #, no-wrap msgid "" "|h|\tN h\t\tleft (also: CTRL-H, , or key)\n" "|l|\tN l\t\tright (also: or key)\n" "|0|\t 0\t\tto first character in the line (also: key)\n" "|^|\t ^\t\tto first non-blank character in the line\n" "|$|\tN $\t\tto the last character in the line (N-1 lines lower)\n" "\t\t\t (also: key)\n" "|g0|\tN g0\t\tto first character in screen line (differs from \"0\"\n" "\t\t\t when lines wrap)\n" "|g^|\tN g^\t\tto first non-blank character in screen line (differs\n" "\t\t\t from \"^\" when lines wrap)\n" "|g$|\tN g$\t\tto last character in screen line (differs from \"$\"\n" "\t\t\t when lines wrap)\n" "|gm|\tN gm\t\tto middle of the screen line\n" "|bar|\tN |\t\tto column N (default: 1)\n" "|f|\tN f{char}\tto the Nth occurrence of {char} to the right\n" "|F|\tN F{char}\tto the Nth occurrence of {char} to the left\n" "|t|\tN t{char}\ttill before the Nth occurrence of {char} to the right\n" "|T|\tN T{char}\ttill before the Nth occurrence of {char} to the left\n" "|;|\tN ;\t\trepeat the last \"f\", \"F\", \"t\", or \"T\" N times\n" "|,|\tN ,\t\trepeat the last \"f\", \"F\", \"t\", or \"T\" N times in\n" "\t\t\t opposite direction\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:60 #, no-wrap msgid "*Q_ud*\t\tUp-down motions\n" msgstr "" # type: Plain text #: quickref.txt:75 #, no-wrap msgid "" "|k|\tN k\t\tup N lines (also: CTRL-P and )\n" "|j|\tN j\t\tdown N lines (also: CTRL-J, CTRL-N, , and )\n" "|-|\tN -\t\tup N lines, on the first non-blank character\n" "|+|\tN +\t\tdown N lines, on the first non-blank character (also:\n" "\t\t\t CTRL-M and )\n" "|_|\tN _\t\tdown N-1 lines, on the first non-blank character\n" "|G|\tN G\t\tgoto line N (default: last line), on the first\n" "\t\t\t non-blank character\n" "|gg|\tN gg\t\tgoto line N (default: first line), on the first\n" "\t\t\t non-blank character\n" "|N%|\tN %\t\tgoto line N percentage down in the file. N must be\n" "\t\t\t given, otherwise it is the |%| command.\n" "|gk|\tN gk\t\tup N screen lines (differs from \"k\" when line wraps)\n" "|gj|\tN gj\t\tdown N screen lines (differs from \"j\" when line wraps)\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:77 #, no-wrap msgid "*Q_tm*\t\tText object motions\n" msgstr "" # type: Plain text #: quickref.txt:86 msgid "" "|w|\tN w\t\tN words forward |W|\tN W\t\tN blank-separated |WORD|s forward " "|e|\tN e\t\tforward to the end of the Nth word |E|\tN E\t\tforward to the " "end of the Nth blank-separated |WORD| |b|\tN b\t\tN words backward |B|\tN " "B\t\tN blank-separated |WORD|s backward |ge|\tN ge\t\tbackward to the end of " "the Nth word |gE|\tN gE\t\tbackward to the end of the Nth blank-separated " "|WORD|" msgstr "" # type: Plain text #: quickref.txt:107 #, no-wrap msgid "" "|)|\tN )\t\tN sentences forward\n" "|(|\tN (\t\tN sentences backward\n" "|}|\tN }\t\tN paragraphs forward\n" "|{|\tN {\t\tN paragraphs backward\n" "|]]|\tN ]]\t\tN sections forward, at start of section\n" "|[[|\tN [[\t\tN sections backward, at start of section\n" "|][|\tN ][\t\tN sections forward, at end of section\n" "|[]|\tN []\t\tN sections backward, at end of section\n" "|[(|\tN [(\t\tN times back to unclosed '('\n" "|[{|\tN [{\t\tN times back to unclosed '{'\n" "|[m|\tN [m\t\tN times back to start of method (for Java)\n" "|[M|\tN [M\t\tN times back to end of method (for Java)\n" "|])|\tN ])\t\tN times forward to unclosed ')'\n" "|]}|\tN ]}\t\tN times forward to unclosed '}'\n" "|]m|\tN ]m\t\tN times forward to start of method (for Java)\n" "|]M|\tN ]M\t\tN times forward to end of method (for Java)\n" "|[#|\tN [#\t\tN times back to unclosed \"#if\" or \"#else\"\n" "|]#|\tN ]#\t\tN times forward to unclosed \"#else\" or \"#endif\"\n" "|[star|\tN [*\t\tN times back to start of comment \"/*\"\n" "|]star|\tN ]*\t\tN times forward to end of comment \"*/\"\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:109 #, no-wrap msgid "*Q_pa*\t\tPattern searches\n" msgstr "" # type: Plain text #: quickref.txt:124 #, no-wrap msgid "" "|/|\tN /{pattern}[/[offset]]\n" "\t\t\tsearch forward for the Nth occurrence of {pattern}\n" "|?|\tN ?{pattern}[?[offset]]\n" "\t\t\tsearch backward for the Nth occurrence of {pattern}\n" "|/|\tN /\trepeat last search, in the forward direction\n" "|?|\tN ?\trepeat last search, in the backward direction\n" "|n|\tN n\t\trepeat last search\n" "|N|\tN N\t\trepeat last search, in opposite direction\n" "|star|\tN *\t\tsearch forward for the identifier under the cursor\n" "|#|\tN #\t\tsearch backward for the identifier under the cursor\n" "|gstar|\tN g*\t\tlike \"*\", but also find partial matches\n" "|g#|\tN g#\t\tlike \"#\", but also find partial matches\n" "|gd|\t gd\t\tgoto local declaration of identifier under the cursor\n" "|gD|\t gD\t\tgoto global declaration of identifier under the cursor\n" msgstr "" # type: Plain text #: quickref.txt:126 msgid "|pattern|\t\tSpecial characters in search patterns" msgstr "" # type: Plain text #: quickref.txt:145 #, no-wrap msgid "" "\t\t\tmeaning\t\t magic nomagic\t~\n" "\t\tmatches any single character\t.\t\\.\n" "\t\t matches start of line\t^\t^\n" "\t\t\t matches \t$\t$\n" "\t\t matches start of word\t\\<\t\\<\n" "\t\t\t matches end of word\t\\>\t\\>\n" "\tmatches a single char from the range\t[a-z]\t\\[a-z]\n" " matches a single char not in the range\t[^a-z]\t\\[^a-z]\n" "\t\t matches an identifier char\t\\i\t\\i\n" "\t\t idem but excluding digits\t\\I\t\\I\n" "\t\t matches a keyword character\t\\k\t\\k\n" "\t\t idem but excluding digits\t\\K\t\\K\n" "\t matches a file name character\t\\f\t\\f\n" "\t\t idem but excluding digits\t\\F\t\\F\n" "\t matches a printable character\t\\p\t\\p\n" "\t\t idem but excluding digits\t\\P\t\\P\n" "\t matches a white space character\t\\s\t\\s\n" "\t matches a non-white space character\t\\S\t\\S\n" msgstr "" # type: Plain text #: quickref.txt:150 #, no-wrap msgid "" "\t\t\t matches \t\\e\t\\e\n" "\t\t\t matches \t\\t\t\\t\n" "\t\t\t\tmatches \t\\r\t\\r\n" "\t\t\t\tmatches \t\\b\t\\b\n" msgstr "" # type: Plain text #: quickref.txt:157 #, no-wrap msgid "" " matches 0 or more of the preceding atom\t*\t\\*\n" " matches 1 or more of the preceding atom\t\\+\t\\+\n" "\tmatches 0 or 1 of the preceding atom\t\\=\t\\=\n" "\tmatches 2 to 5 of the preceding atom\t\\{2,5} \\{2,5}\n" "\t\t separates two alternatives\t\\|\t\\|\n" "\t\tgroup a pattern into an atom\t\\(\\)\t\\(\\)\n" msgstr "" # type: Plain text #: quickref.txt:159 msgid "|search-offset|\t\tOffsets allowed after search command" msgstr "" # type: Plain text #: quickref.txt:170 #, no-wrap msgid "" " [num]\t[num] lines downwards, in column 1\n" " +[num]\t[num] lines downwards, in column 1\n" " -[num]\t[num] lines upwards, in column 1\n" " e[+num]\t[num] characters to the right of the end of the match\n" " e[-num]\t[num] characters to the left of the end of the match\n" " s[+num]\t[num] characters to the right of the start of the match\n" " s[-num]\t[num] characters to the left of the start of the match\n" " b[+num]\t[num] identical to s[+num] above (mnemonic: begin)\n" " b[-num]\t[num] identical to s[-num] above (mnemonic: begin)\n" " ;{search-command}\texecute {search-command} next\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:172 #, no-wrap msgid "*Q_ma*\t\tMarks and motions\n" msgstr "" # type: Plain text #: quickref.txt:190 #, no-wrap msgid "" "|m|\t m{a-zA-Z}\tmark current position with mark {a-zA-Z}\n" "|`a|\t `{a-z}\tgo to mark {a-z} within current file\n" "|`A|\t `{A-Z}\tgo to mark {A-Z} in any file\n" "|`0|\t `{0-9}\tgo to the position where Vim was previously exited\n" "|``|\t ``\t\tgo to the position before the last jump\n" "|`quote| `\"\t\tgo to the position when last editing this file\n" "|`[|\t `[\t\tgo to the start of the previously operated or put text\n" "|`]|\t `]\t\tgo to the end of the previously operated or put text\n" "|`<|\t `<\t\tgo to the start of the (previous) Visual area\n" "|`>|\t `>\t\tgo to the end of the (previous) Visual area\n" "|`.|\t `.\t\tgo to the position of the last change in this file\n" "|'|\t '{a-zA-Z0-9[]'\"<>.}\n" "\t\t\tsame as `, but on the first non-blank in the line\n" "|:marks| :marks\tprint the active marks\n" "|CTRL-O| N CTRL-O\tgo to Nth older position in jump list\n" "|CTRL-I| N CTRL-I\tgo to Nth newer position in jump list\n" "|:ju|\t :ju[mps]\tprint the jump list\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:192 #, no-wrap msgid "*Q_vm*\t\tVarious motions\n" msgstr "" # type: Plain text #: quickref.txt:201 #, no-wrap msgid "" "|%|\t %\t\tfind the next brace, bracket, comment, or \"#if\"/\n" "\t\t\t \"#else\"/\"#endif\" in this line and go to its match\n" "|H|\tN H\t\tgo to the Nth line in the window, on the first\n" "\t\t\t non-blank\n" "|M|\t M\t\tgo to the middle line in the window, on the first\n" "\t\t\t non-blank\n" "|L|\tN L\t\tgo to the Nth line from the bottom, on the first\n" "\t\t\t non-blank\n" msgstr "" # type: Plain text #: quickref.txt:204 #, no-wrap msgid "" "|go|\tN go\t\t\tgo to Nth byte in the buffer\n" "|:go|\t:[range]go[to] [off]\tgo to [off] byte in the buffer\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:206 #, no-wrap msgid "*Q_ta*\t\tUsing tags\n" msgstr "" # type: Plain text #: quickref.txt:216 #, no-wrap msgid "" "|:ta|\t :ta[g][!] {tag}\tJump to tag {tag}\n" "|:ta|\t :[count]ta[g][!]\tJump to [count]'th newer tag in tag list\n" "|CTRL-]| CTRL-]\t\tJump to the tag under cursor, unless changes\n" "\t\t\t\t have been made\n" "|:ts|\t :ts[elect][!] [tag]\tList matching tags and select one to jump " "to\n" "|:tjump| :tj[ump][!] [tag]\tJump to tag [tag] or select from list when\n" "\t\t\t\t there are multiple matches\n" "|:ltag|\t :lt[ag][!] [tag]\tJump to tag [tag] and add matching tags to " "the\n" "\t\t\t\t location list.\n" msgstr "" # type: Plain text #: quickref.txt:224 #, no-wrap msgid "" "|:tags|\t :tags\t\tPrint tag list\n" "|CTRL-T| N CTRL-T\t\tJump back from Nth older tag in tag list\n" "|:po|\t :[count]po[p][!]\tJump back from [count]'th older tag in tag " "list\n" "|:tnext| :[count]tn[ext][!]\tJump to [count]'th next matching tag\n" "|:tp| :[count]tp[revious][!] Jump to [count]'th previous matching tag\n" "|:tr|\t :[count]tr[ewind][!] Jump to [count]'th matching tag\n" "|:tl|\t :tl[ast][!]\t\tJump to last matching tag\n" msgstr "" # type: Plain text #: quickref.txt:231 #, no-wrap msgid "" "|:ptag|\t :pt[ag] {tag}\topen a preview window to show tag {tag}\n" "|CTRL-W_}| CTRL-W }\t\tlike CTRL-] but show tag in preview window\n" "|:pts| :pts[elect]\t\tlike \":tselect\" but show tag in preview window\n" "|:ptjump| :ptj[ump]\t\tlike \":tjump\" but show tag in preview window\n" "|:pclose| :pc[lose]\t\tclose tag preview window\n" "|CTRL-W_z| CTRL-W z\t\tclose tag preview window\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:233 #, no-wrap msgid "*Q_sc*\t\tScrolling\n" msgstr "" # type: Plain text #: quickref.txt:243 #, no-wrap msgid "" "|CTRL-E|\tN CTRL-E\twindow N lines downwards (default: 1)\n" "|CTRL-D|\tN CTRL-D\twindow N lines Downwards (default: 1/2 window)\n" "|CTRL-F|\tN CTRL-F\twindow N pages Forwards (downwards)\n" "|CTRL-Y|\tN CTRL-Y\twindow N lines upwards (default: 1)\n" "|CTRL-U|\tN CTRL-U\twindow N lines Upwards (default: 1/2 window)\n" "|CTRL-B|\tN CTRL-B\twindow N pages Backwards (upwards)\n" "|z|\t\t z or zt\tredraw, current line at top of window\n" "|z.|\t\t z.\t or zz\tredraw, current line at center of window\n" "|z-|\t\t z-\t or zb\tredraw, current line at bottom of window\n" msgstr "" # type: Plain text #: quickref.txt:249 #, no-wrap msgid "" "These only work when 'wrap' is off:\n" "|zh|\t\tN zh\t\tscroll screen N characters to the right\n" "|zl|\t\tN zl\t\tscroll screen N characters to the left\n" "|zH|\t\tN zH\t\tscroll screen half a screenwidth to the right\n" "|zL|\t\tN zL\t\tscroll screen half a screenwidth to the left\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:251 #, no-wrap msgid "*Q_in*\t\tInserting text\n" msgstr "" # type: Plain text #: quickref.txt:261 msgid "" "|a|\tN a\tappend text after the cursor (N times) |A|\tN A\tappend text at " "the end of the line (N times) |i|\tN i\tinsert text before the cursor (N " "times) (also: ) |I|\tN I\tinsert text before the first non-blank in " "the line (N times) |gI|\tN gI\tinsert text in column 1 (N times) |o|\tN " "o\topen a new line below the current line, append text (N times) |O|\tN " "O\topen a new line above the current line, append text (N times) " "|:startinsert| :star[tinsert][!] start Insert mode, append when [!] used " "|:startreplace| :startr[eplace][!] start Replace mode, at EOL when [!] used" msgstr "" # type: Plain text #: quickref.txt:265 #, no-wrap msgid "" "in Visual block mode:\n" "|v_b_I| I\tinsert the same text in front of all the selected lines\n" "|v_b_A|\t A\tappend the same text after all the selected lines\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:267 #, no-wrap msgid "*Q_ai*\t\tInsert mode keys\n" msgstr "" # type: Plain text #: quickref.txt:269 msgid "|insert-index|\talphabetical index of Insert mode commands" msgstr "" # type: Plain text #: quickref.txt:274 #, no-wrap msgid "" "leaving Insert mode:\n" "|i_|\t\t\t end Insert mode, back to Normal mode\n" "|i_CTRL-C|\tCTRL-C\t\t like , but do not use an abbreviation\n" "|i_CTRL-O|\tCTRL-O {command} execute {command} and return to Insert mode\n" msgstr "" # type: Plain text #: quickref.txt:281 #, no-wrap msgid "" "moving around:\n" "|i_|\tcursor keys\t move cursor left/right/up/down\n" "|i_|\tshift-left/right one word left/right\n" "|i_|\tshift-up/down\t one screenful backward/forward\n" "|i_|\t\t\t cursor after last character in the line\n" "|i_|\t\t\t cursor to first character in the line\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:283 #, no-wrap msgid "*Q_ss*\t\tSpecial keys in Insert mode\n" msgstr "" # type: Plain text #: quickref.txt:290 #, no-wrap msgid "" "|i_CTRL-V|\tCTRL-V {char}..\t insert character literally, or enter " "decimal\n" "\t\t\t\t byte value\n" "|i_|\t or or CTRL-M or CTRL-J\n" "\t\t\t\t begin new line\n" "|i_CTRL-E|\tCTRL-E\t\t insert the character from below the cursor\n" "|i_CTRL-Y|\tCTRL-Y\t\t insert the character from above the cursor\n" msgstr "" # type: Plain text #: quickref.txt:295 #, no-wrap msgid "" "|i_CTRL-A|\tCTRL-A\t\t insert previously inserted text\n" "|i_CTRL-@|\tCTRL-@\t\t insert previously inserted text and stop\n" "\t\t\t\t Insert mode\n" "|i_CTRL-R|\tCTRL-R {0-9a-z%#:.-=\"} insert the contents of a register\n" msgstr "" # type: Plain text #: quickref.txt:302 #, no-wrap msgid "" "|i_CTRL-N|\tCTRL-N\t\t insert next match of identifier before the\n" "\t\t\t\t cursor\n" "|i_CTRL-P|\tCTRL-P\t\t insert previous match of identifier before\n" "\t\t\t\t the cursor\n" "|i_CTRL-X|\tCTRL-X ...\t complete the word before the cursor in\n" "\t\t\t\t various ways\n" msgstr "" # type: Plain text #: quickref.txt:315 #, no-wrap msgid "" "|i_|\t or CTRL-H\t delete the character before the cursor\n" "|i_|\t\t\t delete the character under the cursor\n" "|i_CTRL-W|\tCTRL-W\t\t delete word before the cursor\n" "|i_CTRL-U|\tCTRL-U\t\t delete all entered characters in the current\n" "\t\t\t\t line\n" "|i_CTRL-T|\tCTRL-T\t\t insert one shiftwidth of indent in front of\n" "\t\t\t\t the current line\n" "|i_CTRL-D|\tCTRL-D\t\t delete one shiftwidth of indent in front of\n" "\t\t\t\t the current line\n" "|i_0_CTRL-D|\t0 CTRL-D\t delete all indent in the current line\n" "|i_^_CTRL-D|\t^ CTRL-D\t delete all indent in the current line,\n" "\t\t\t\t restore indent in next line\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:317 #, no-wrap msgid "*Q_di*\t\tDigraphs\n" msgstr "" # type: Plain text #: quickref.txt:321 #, no-wrap msgid "" "|:dig|\t :dig[raphs]\t\tshow current list of digraphs\n" "|:dig|\t :dig[raphs] {char1}{char2} {number} ...\n" "\t\t\t\tadd digraph(s) to the list\n" msgstr "" # type: Plain text #: quickref.txt:327 #, no-wrap msgid "" "In Insert or Command-line mode:\n" "|i_CTRL-K|\tCTRL-K {char1} {char2}\n" "\t\t\t\t enter digraph\n" "|i_digraph|\t{char1} {char2}\n" "\t\t\t\t enter digraph if 'digraph' option set\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:329 #, no-wrap msgid "*Q_si*\t\tSpecial inserts\n" msgstr "" # type: Plain text #: quickref.txt:333 #, no-wrap msgid "" "|:r|\t :r [file]\t insert the contents of [file] below the cursor\n" "|:r!|\t :r! {command} insert the standard output of {command} below " "the\n" "\t\t\t cursor\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:335 #, no-wrap msgid "*Q_de*\t\tDeleting text\n" msgstr "" # type: Plain text #: quickref.txt:348 #, no-wrap msgid "" "|x|\tN x\t\tdelete N characters under and after the cursor\n" "|| N \tdelete N characters under and after the cursor\n" "|X|\tN X\t\tdelete N characters before the cursor\n" "|d|\tN d{motion}\tdelete the text that is moved over with {motion}\n" "|v_d|\t{visual}d\tdelete the highlighted text\n" "|dd|\tN dd\t\tdelete N lines\n" "|D|\tN D\t\tdelete to the end of the line (and N-1 more lines)\n" "|J|\tN J\t\tjoin N-1 lines (delete s)\n" "|v_J|\t{visual}J\tjoin the highlighted lines\n" "|gJ|\tN gJ\t\tlike \"J\", but without inserting spaces\n" "|v_gJ|\t{visual}gJ\tlike \"{visual}J\", but without inserting spaces\n" "|:d|\t:[range]d [x]\tdelete [range] lines [into register x]\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:350 #, no-wrap msgid "*Q_cm*\t\tCopying and moving text\n" msgstr "" # type: Plain text #: quickref.txt:364 #, no-wrap msgid "" "|quote|\t \"{char}\tuse register {char} for the next delete, yank, or put\n" "|:reg|\t :reg\t\tshow the contents of all registers\n" "|:reg|\t :reg {arg}\tshow the contents of registers mentioned in {arg}\n" "|y|\t N y{motion}\tyank the text moved over with {motion} into a " "register\n" "|v_y|\t {visual}y\tyank the highlighted text into a register\n" "|yy|\t N yy\t\tyank N lines into a register\n" "|Y|\t N Y\t\tyank N lines into a register\n" "|p|\t N p\t\tput a register after the cursor position (N times)\n" "|P|\t N P\t\tput a register before the cursor position (N times)\n" "|]p|\t N ]p\t\tlike p, but adjust indent to current line\n" "|[p|\t N [p\t\tlike P, but adjust indent to current line\n" "|gp|\t N gp\t\tlike p, but leave cursor after the new text\n" "|gP|\t N gP\t\tlike P, but leave cursor after the new text\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:366 #, no-wrap msgid "*Q_ch*\t\tChanging text\n" msgstr "" # type: Plain text #: quickref.txt:375 #, no-wrap msgid "" "|r|\t N r{char}\treplace N characters with {char}\n" "|gr|\t N gr{char}\treplace N characters without affecting layout\n" "|R|\t N R\t\tenter Replace mode (repeat the entered text N times)\n" "|gR|\t N gR\t\tenter virtual Replace mode: Like Replace mode but\n" "\t\t\t without affecting layout\n" "|v_b_r|\t {visual}r{char}\n" "\t\t\tin Visual block mode: Replace each char of the\n" "\t\t\t selected text with {char}\n" msgstr "" # type: Plain text #: quickref.txt:387 #, no-wrap msgid "" "\t(change = delete text and enter Insert mode)\n" "|c|\t N c{motion}\tchange the text that is moved over with {motion}\n" "|v_c|\t {visual}c\tchange the highlighted text\n" "|cc|\t N cc\t\tchange N lines\n" "|S|\t N S\t\tchange N lines\n" "|C|\t N C\t\tchange to the end of the line (and N-1 more lines)\n" "|s|\t N s\t\tchange N characters\n" "|v_b_c|\t {visual}c\tin Visual block mode: Change each of the selected\n" "\t\t\t lines with the entered text\n" "|v_b_C|\t {visual}C\tin Visual block mode: Change each of the selected\n" "\t\t\t lines until end-of-line with the entered text\n" msgstr "" # type: Plain text #: quickref.txt:401 #, no-wrap msgid "" "|~|\t N ~\t\tswitch case for N characters and advance cursor\n" "|v_~|\t {visual}~\tswitch case for highlighted text\n" "|v_u|\t {visual}u\tmake highlighted text lowercase\n" "|v_U|\t {visual}U\tmake highlighted text uppercase\n" "|g~|\t g~{motion} switch case for the text that is moved over with\n" "\t\t\t {motion}\n" "|gu|\t gu{motion} make the text that is moved over with {motion}\n" "\t\t\t lowercase\n" "|gU|\t gU{motion} make the text that is moved over with {motion}\n" "\t\t\t uppercase\n" "|v_g?|\t {visual}g? perform rot13 encoding on highlighted text\n" "|g?|\t g?{motion} perform rot13 encoding on the text that is moved " "over\n" "\t\t\t with {motion}\n" msgstr "" # type: Plain text #: quickref.txt:404 msgid "" "|CTRL-A| N CTRL-A\tadd N to the number at or after the cursor |CTRL-X| N " "CTRL-X\tsubtract N from the number at or after the cursor" msgstr "" # type: Plain text #: quickref.txt:419 #, no-wrap msgid "" "|<|\t N <{motion}\tmove the lines that are moved over with {motion} one\n" "\t\t\t shiftwidth left\n" "|<<|\t N <<\t\tmove N lines one shiftwidth left\n" "|>|\t N >{motion}\tmove the lines that are moved over with {motion} one\n" "\t\t\t shiftwidth right\n" "|>>|\t N >>\t\tmove N lines one shiftwidth right\n" "|gq|\t N gq{motion}\tformat the lines that are moved over with {motion} " "to\n" "\t\t\t 'textwidth' length\n" "|:ce|\t :[range]ce[nter] [width]\n" "\t\t\tcenter the lines in [range]\n" "|:le|\t :[range]le[ft] [indent]\n" "\t\t\tleft-align the lines in [range] (with [indent])\n" "|:ri|\t :[range]ri[ght] [width]\n" "\t\t\tright-align the lines in [range]\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:421 #, no-wrap msgid "*Q_co*\t\tComplex changes\n" msgstr "" # type: Plain text #: quickref.txt:445 #, no-wrap msgid "" "|!|\t N !{motion}{command}\n" "\t\t\tfilter the lines that are moved over through {command}\n" "|!!|\t N !!{command}\n" "\t\t\tfilter N lines through {command}\n" "|v_!|\t {visual}!{command}\n" "\t\t\tfilter the highlighted lines through {command}\n" "|:range!| :[range]! {command}\n" "\t\t\tfilter [range] lines through {command}\n" "|=|\t N ={motion}\n" "\t\t\tfilter the lines that are moved over through 'equalprg'\n" "|==|\t N ==\tfilter N lines through 'equalprg'\n" "|v_=|\t {visual}=\n" "\t\t\tfilter the highlighted lines through 'equalprg'\n" "|:s|\t :[range]s[ubstitute]/{pattern}/{string}/[g][c]\n" "\t\t\tsubstitute {pattern} by {string} in [range] lines;\n" "\t\t\t with [g], replace all occurrences of {pattern};\n" "\t\t\t with [c], confirm each replacement\n" "|:s|\t :[range]s[ubstitute] [g][c]\n" "\t\t\trepeat previous \":s\" with new range and options\n" "|&|\t &\t\tRepeat previous \":s\" on current line without options\n" "|:ret|\t :[range]ret[ab][!] [tabstop]\n" "\t\t\tset 'tabstop' to new value and adjust white space\n" "\t\t\t accordingly\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:447 #, no-wrap msgid "*Q_vi*\t\tVisual mode\n" msgstr "" # type: Plain text #: quickref.txt:449 msgid "|visual-index|\tlist of Visual mode commands." msgstr "" # type: Plain text #: quickref.txt:458 #, no-wrap msgid "" "|v|\t v\t\tstart highlighting characters } move cursor and use\n" "|V|\t V\t\tstart highlighting linewise } operator to affect\n" "|CTRL-V| CTRL-V\tstart highlighting blockwise } highlighted text\n" "|v_o|\t o\t\texchange cursor position with start of highlighting\n" "|gv|\t gv\t\tstart highlighting on previous visual area\n" "|v_v|\t v\t\thighlight characters or stop highlighting\n" "|v_V|\t V\t\thighlight linewise or stop highlighting\n" "|v_CTRL-V| CTRL-V\thighlight blockwise or stop highlighting\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:460 #, no-wrap msgid "*Q_to*\t\tText objects (only in Visual mode or after an operator)\n" msgstr "" # type: Plain text #: quickref.txt:473 #, no-wrap msgid "" "|v_aw|\tN aw\t\tSelect \"a word\"\n" "|v_iw|\tN iw\t\tSelect \"inner word\"\n" "|v_aW|\tN aW\t\tSelect \"a |WORD|\"\n" "|v_iW|\tN iW\t\tSelect \"inner |WORD|\"\n" "|v_as|\tN as\t\tSelect \"a sentence\"\n" "|v_is|\tN is\t\tSelect \"inner sentence\"\n" "|v_ap|\tN ap\t\tSelect \"a paragraph\"\n" "|v_ip|\tN ip\t\tSelect \"inner paragraph\"\n" "|v_ab|\tN ab\t\tSelect \"a block\" (from \"[(\" to \"])\")\n" "|v_ib|\tN ib\t\tSelect \"inner block\" (from \"[(\" to \"])\")\n" "|v_aB|\tN aB\t\tSelect \"a Block\" (from \"[{\" to \"]}\")\n" "|v_iB|\tN iB\t\tSelect \"inner Block\" (from \"[{\" to \"]}\")\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:475 #, no-wrap msgid "*Q_re*\t\tRepeating commands\n" msgstr "" # type: Plain text #: quickref.txt:498 #, no-wrap msgid "" "|.|\t N .\t\trepeat last change (with count replaced with N)\n" "|q|\t q{a-z}\trecord typed characters into register {a-z}\n" "|q|\t q{A-Z}\trecord typed characters, appended to register {a-z}\n" "|q|\t q\t\tstop recording\n" "|@|\t N @{a-z}\texecute the contents of register {a-z} (N times)\n" "|@@|\t N @@\t repeat previous @{a-z} (N times)\n" "|:@|\t :@{a-z}\texecute the contents of register {a-z} as an Ex\n" "\t\t\t command\n" "|:@@|\t :@@\t\trepeat previous :@{a-z}\n" "|:g|\t :[range]g[lobal]/{pattern}/[cmd]\n" "\t\t\tExecute Ex command [cmd] (default: \":p\") on the lines\n" "\t\t\t within [range] where {pattern} matches.\n" "|:g|\t :[range]g[lobal]!/{pattern}/[cmd]\n" "\t\t\tExecute Ex command [cmd] (default: \":p\") on the lines\n" "\t\t\t within [range] where {pattern} does NOT match.\n" "|:so|\t :so[urce] {file}\n" "\t\t\tRead Ex commands from {file}.\n" "|:so|\t :so[urce]! {file}\n" "\t\t\tRead Vim commands from {file}.\n" "|:sl|\t :sl[eep] [sec]\n" "\t\t\tdon't do anything for [sec] seconds\n" "|gs|\t N gs\tGoto Sleep for N seconds\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:500 #, no-wrap msgid "*Q_km*\t\tKey mapping\n" msgstr "" # type: Plain text #: quickref.txt:546 #, no-wrap msgid "" "|:map|\t :ma[p] {lhs} {rhs}\t Map {lhs} to {rhs} in Normal and Visual\n" "\t\t\t\t mode.\n" "|:map!|\t :ma[p]! {lhs} {rhs} Map {lhs} to {rhs} in Insert and " "Command-line\n" "\t\t\t\t mode.\n" "|:noremap| :no[remap][!] {lhs} {rhs}\n" "\t\t\t\t Same as \":map\", no remapping for this {rhs}\n" "|:unmap| :unm[ap] {lhs}\t Remove the mapping of {lhs} for Normal and\n" "\t\t\t\t Visual mode.\n" "|:unmap!| :unm[ap]! {lhs}\t Remove the mapping of {lhs} for Insert and\n" "\t\t\t\t Command-line mode.\n" "|:map_l| :ma[p] [lhs]\t List mappings (starting with [lhs]) for\n" "\t\t\t\t Normal and Visual mode.\n" "|:map_l!| :ma[p]! [lhs]\t List mappings (starting with [lhs]) for\n" "\t\t\t\t Insert and Command-line mode.\n" "|:cmap|\t :cmap/:cunmap/:cnoremap\n" "\t\t\t\t like \":map!\"/\":unmap!\"/\":noremap!\" but for\n" "\t\t\t\t Command-line mode only\n" "|:imap|\t :imap/:iunmap/:inoremap\n" "\t\t\t\t like \":map!\"/\":unmap!\"/\":noremap!\" but for\n" "\t\t\t\t Insert mode only\n" "|:nmap|\t :nmap/:nunmap/:nnoremap\n" "\t\t\t\t like \":map\"/\":unmap\"/\":noremap\" but for\n" "\t\t\t\t Normal mode only\n" "|:vmap|\t :vmap/:vunmap/:vnoremap\n" "\t\t\t\t like \":map\"/\":unmap\"/\":noremap\" but for\n" "\t\t\t\t Visual mode only\n" "|:omap|\t :omap/:ounmap/:onoremap\n" "\t\t\t\t like \":map\"/\":unmap\"/\":noremap\" but only for\n" "\t\t\t\t when an operator is pending\n" "|:mapc| :mapc[lear]\t remove mappings for Normal and Visual mode\n" "|:mapc| :mapc[lear]!\t remove mappings for Insert and Cmdline mode\n" "|:imapc| :imapc[lear]\t remove mappings for Insert mode\n" "|:vmapc| :vmapc[lear]\t remove mappings for Visual mode\n" "|:omapc| :omapc[lear]\t remove mappings for Operator-pending mode\n" "|:nmapc| :nmapc[lear]\t remove mappings for Normal mode\n" "|:cmapc| :cmapc[lear]\t remove mappings for Cmdline mode\n" "|:mkexrc| :mk[exrc][!] [file] write current mappings, abbreviations, " "and\n" "\t\t\t\t settings to [file] (default: \".exrc\";\n" "\t\t\t\t use ! to overwrite)\n" "|:mkvimrc| :mkv[imrc][!] [file]\n" "\t\t\t\t same as \":mkexrc\", but with default \".vimrc\"\n" "|:mksession| :mks[ession][!] [file]\n" "\t\t\t\t like \":mkvimrc\", but store current files,\n" "\t\t\t\t windows, etc. too, to be able to continue\n" "\t\t\t\t this session later.\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:548 #, no-wrap msgid "*Q_ab*\t\tAbbreviations\n" msgstr "" # type: Plain text #: quickref.txt:560 #, no-wrap msgid "" "|:abbreviate|\t:ab[breviate] {lhs} {rhs} add abbreviation for {lhs} to " "{rhs}\n" "|:abbreviate|\t:ab[breviate] {lhs}\t show abbr's that start with {lhs}\n" "|:abbreviate|\t:ab[breviate]\t\t show all abbreviations\n" "|:unabbreviate|\t:una[bbreviate] {lhs}\t remove abbreviation for {lhs}\n" "|:noreabbrev|\t:norea[bbrev] [lhs] [rhs] like \":ab\", but don't remap " "[rhs]\n" "|:iabbrev|\t:iab/:iunab/:inoreab\t like \":ab\", but only for Insert " "mode\n" "|:cabbrev|\t:cab/:cunab/:cnoreab\t like \":ab\", but only for\n" "\t\t\t\t\t\tCommand-line mode\n" "|:abclear|\t:abc[lear]\t\t remove all abbreviations\n" "|:cabclear|\t:cabc[lear]\t\t remove all abbr's for Cmdline mode\n" "|:iabclear|\t:iabc[lear]\t\t remove all abbr's for Insert mode\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:562 #, no-wrap msgid "*Q_op*\t\tOptions\n" msgstr "" # type: Plain text #: quickref.txt:577 #, no-wrap msgid "" "|:set|\t\t:se[t]\t\t\t Show all modified options.\n" "|:set|\t\t:se[t] all\t\t Show all non-termcap options.\n" "|:set|\t\t:se[t] termcap\t\t Show all termcap options.\n" "|:set|\t\t:se[t] {option}\t\t Set boolean option (switch it on),\n" "\t\t\t\t\t show string or number option.\n" "|:set|\t\t:se[t] no{option}\t Reset boolean option (switch it off).\n" "|:set|\t\t:se[t] inv{option}\t invert boolean option.\n" "|:set|\t\t:se[t] {option}={value}\t Set string/number option to {value}.\n" "|:set|\t\t:se[t] {option}+={value} append {value} to string option, add\n" "\t\t\t\t\t {value} to number option\n" "|:set|\t\t:se[t] {option}-={value} remove {value} to string option,\n" "\t\t\t\t\t subtract {value} from number option\n" "|:set|\t\t:se[t] {option}?\t Show value of {option}.\n" "|:set|\t\t:se[t] {option}&\t Reset {option} to its default value.\n" msgstr "" # type: Plain text #: quickref.txt:582 #, no-wrap msgid "" "|:setlocal|\t:setl[ocal]\t\t like \":set\" but set the local value\n" "\t\t\t\t\t for options that have one\n" "|:setglobal|\t:setg[lobal]\t\t like \":set\" but set the global value\n" "\t\t\t\t\t of a local option\n" msgstr "" # type: Plain text #: quickref.txt:589 #, no-wrap msgid "" "|:fix|\t\t:fix[del]\t\t Set value of 't_kD' according to\n" "\t\t\t\t\t value of 't_kb'.\n" "|:options|\t:opt[ions]\t\t Open a new window to view and set\n" "\t\t\t\t\t options, grouped by functionality,\n" "\t\t\t\t\t a one line explanation and links to\n" "\t\t\t\t\t the help.\n" msgstr "" # type: Plain text #: quickref.txt:933 #, no-wrap msgid "" "Short explanation of each option:\t\t*option-list*\n" "'aleph'\t\t 'al'\t ASCII code of the letter Aleph (Hebrew)\n" "'allowrevins'\t 'ari' allow CTRL-_ in Insert and Command-line mode\n" "'altkeymap'\t 'akm' for default second language (Farsi/Hebrew)\n" "'ambiwidth'\t 'ambw' what to do with Unicode chars of ambiguous width\n" "'antialias'\t 'anti' Mac OS X: use smooth, antialiased fonts\n" "'autochdir'\t 'acd' change directory to the file in the current " "window\n" "'arabic'\t 'arab' for Arabic as a default second language\n" "'arabicshape'\t 'arshape' do shaping for Arabic characters\n" "'autoindent'\t 'ai'\t take indent for new line from previous line\n" "'autoread'\t 'ar'\t autom. read file when changed outside of Vim\n" "'autowrite'\t 'aw'\t automatically write file if changed\n" "'autowriteall'\t 'awa' as 'autowrite', but works with more commands\n" "'background'\t 'bg'\t \"dark\" or \"light\", used for highlight colors\n" "'backspace'\t 'bs'\t how backspace works at start of line\n" "'backup'\t 'bk'\t keep backup file after overwriting a file\n" "'backupcopy'\t 'bkc' make backup as a copy, don't rename the file\n" "'backupdir'\t 'bdir' list of directories for the backup file\n" "'backupext'\t 'bex' extension used for the backup file\n" "'backupskip'\t 'bsk' no backup for files that match these patterns\n" "'balloondelay'\t 'bdlay' delay in mS before a balloon may pop up\n" "'ballooneval'\t 'beval' switch on balloon evaluation\n" "'balloonexpr'\t 'bexpr' expression to show in balloon\n" "'binary'\t 'bin' read/write/edit file in binary mode\n" "'bioskey'\t 'biosk' MS-DOS: use bios calls for input characters\n" "'bomb'\t\t\t prepend a Byte Order Mark to the file\n" "'breakat'\t 'brk' characters that may cause a line break\n" "'browsedir'\t 'bsdir' which directory to start browsing in\n" "'bufhidden'\t 'bh'\t what to do when buffer is no longer in window\n" "'buflisted'\t 'bl'\t whether the buffer shows up in the buffer list\n" "'buftype'\t 'bt'\t special type of buffer\n" "'casemap'\t 'cmp' specifies how case of letters is changed\n" "'cdpath'\t 'cd'\t list of directories searched with \":cd\"\n" "'cedit'\t\t\t key used to open the command-line window\n" "'charconvert'\t 'ccv' expression for character encoding conversion\n" "'cindent'\t 'cin' do C program indenting\n" "'cinkeys'\t 'cink' keys that trigger indent when 'cindent' is set\n" "'cinoptions'\t 'cino' how to do indenting when 'cindent' is set\n" "'cinwords'\t 'cinw' words where 'si' and 'cin' add an indent\n" "'clipboard'\t 'cb'\t use the clipboard as the unnamed register\n" "'cmdheight'\t 'ch'\t number of lines to use for the command-line\n" "'cmdwinheight'\t 'cwh' height of the command-line window\n" "'columns'\t 'co'\t number of columns in the display\n" "'comments'\t 'com' patterns that can start a comment line\n" "'commentstring' 'cms' template for comments; used for fold marker\n" "'compatible'\t 'cp'\t behave Vi-compatible as much as possible\n" "'complete'\t 'cpt' specify how Insert mode completion works\n" "'completefunc'\t 'cfu' function to be used for Insert mode completion\n" "'completeopt'\t 'cot' options for Insert mode completion\n" "'confirm'\t 'cf'\t ask what to do about unsaved/read-only files\n" "'conskey'\t 'consk' get keys directly from console (MS-DOS only)\n" "'copyindent'\t 'ci'\t make 'autoindent' use existing indent structure\n" "'cpoptions'\t 'cpo' flags for Vi-compatible behavior\n" "'cscopepathcomp' 'cspc' how many components of the path to show\n" "'cscopeprg' 'csprg' command to execute cscope\n" "'cscopequickfix' 'csqf' use quickfix window for cscope results\n" "'cscopetag' 'cst' use cscope for tag commands\n" "'cscopetagorder' 'csto' determines \":cstag\" search order\n" "'cscopeverbose' 'csverb' give messages when adding a cscope database\n" "'cursorcolumn'\t 'cuc'\t highlight the screen column of the cursor\n" "'cursorline'\t 'cul'\t highlight the screen line of the cursor\n" "'debug'\t\t\t set to \"msg\" to see all error messages\n" "'define'\t 'def' pattern to be used to find a macro definition\n" "'delcombine'\t 'deco' delete combining characters on their own\n" "'dictionary'\t 'dict' list of file names used for keyword completion\n" "'diff'\t\t\t use diff mode for the current window\n" "'diffexpr'\t 'dex' expression used to obtain a diff file\n" "'diffopt'\t 'dip' options for using diff mode\n" "'digraph'\t 'dg'\t enable the entering of digraphs in Insert mode\n" "'directory'\t 'dir' list of directory names for the swap file\n" "'display'\t 'dy'\t list of flags for how to display text\n" "'eadirection'\t 'ead' in which direction 'equalalways' works\n" "'edcompatible'\t 'ed'\t toggle flags of \":substitute\" command\n" "'encoding'\t 'enc' encoding used internally\n" "'endofline'\t 'eol' write for last line in file\n" "'equalalways'\t 'ea'\t windows are automatically made the same size\n" "'equalprg'\t 'ep'\t external program to use for \"=\" command\n" "'errorbells'\t 'eb'\t ring the bell for error messages\n" "'errorfile'\t 'ef'\t name of the errorfile for the QuickFix mode\n" "'errorformat'\t 'efm' description of the lines in the error file\n" "'esckeys'\t 'ek'\t recognize function keys in Insert mode\n" "'eventignore'\t 'ei'\t autocommand events that are ignored\n" "'expandtab'\t 'et'\t use spaces when is inserted\n" "'exrc'\t\t 'ex'\t read .vimrc and .exrc in the current directory\n" "'fileencoding'\t 'fenc' file encoding for multi-byte text\n" "'fileencodings' 'fencs' automatically detected character encodings\n" "'fileformat'\t 'ff'\t file format used for file I/O\n" "'fileformats'\t 'ffs' automatically detected values for 'fileformat'\n" "'filetype'\t 'ft'\t type of file, used for autocommands\n" "'fillchars'\t 'fcs' characters to use for displaying special items\n" "'fkmap'\t\t 'fk'\t Farsi keyboard mapping\n" "'foldclose'\t 'fcl' close a fold when the cursor leaves it\n" "'foldcolumn'\t 'fdc' width of the column used to indicate folds\n" "'foldenable'\t 'fen' set to display all folds open\n" "'foldexpr'\t 'fde' expression used when 'foldmethod' is \"expr\"\n" "'foldignore'\t 'fdi' ignore lines when 'foldmethod' is \"indent\"\n" "'foldlevel'\t 'fdl' close folds with a level higher than this\n" "'foldlevelstart' 'fdls' 'foldlevel' when starting to edit a file\n" "'foldmarker'\t 'fmr' markers used when 'foldmethod' is \"marker\"\n" "'foldmethod'\t 'fdm' folding type\n" "'foldminlines'\t 'fml' minimum number of lines for a fold to be " "closed\n" "'foldnestmax'\t 'fdn' maximum fold depth\n" "'foldopen'\t 'fdo' for which commands a fold will be opened\n" "'foldtext'\t 'fdt' expression used to display for a closed fold\n" "'formatlistpat' 'flp' pattern used to recognize a list header\n" "'formatoptions' 'fo'\t how automatic formatting is to be done\n" "'formatprg'\t 'fp'\t name of external program used with \"gq\" command\n" "'formatexpr'\t 'fex' expression used with \"gq\" command\n" "'fsync'\t\t 'fs'\t whether to invoke fsync() after file write\n" "'gdefault'\t 'gd'\t the \":substitute\" flag 'g' is default on\n" "'grepformat'\t 'gfm' format of 'grepprg' output\n" "'grepprg'\t 'gp'\t program to use for \":grep\"\n" "'guicursor'\t 'gcr' GUI: settings for cursor shape and blinking\n" "'guifont'\t 'gfn' GUI: Name(s) of font(s) to be used\n" "'guifontset'\t 'gfs' GUI: Names of multi-byte fonts to be used\n" "'guifontwide'\t 'gfw' list of font names for double-wide characters\n" "'guiheadroom'\t 'ghr' GUI: pixels room for window decorations\n" "'guioptions'\t 'go'\t GUI: Which components and options are used\n" "'guipty'\t\t GUI: try to use a pseudo-tty for \":!\" commands\n" "'guitablabel'\t 'gtl' GUI: custom label for a tab page\n" "'guitabtooltip' 'gtt' GUI: custom tooltip for a tab page\n" "'helpfile'\t 'hf'\t full path name of the main help file\n" "'helpheight'\t 'hh'\t minimum height of a new help window\n" "'helplang'\t 'hlg' preferred help languages\n" "'hidden'\t 'hid' don't unload buffer when it is |abandon|ed\n" "'highlight'\t 'hl'\t sets highlighting mode for various occasions\n" "'hlsearch'\t 'hls' highlight matches with last search pattern\n" "'history'\t 'hi'\t number of command-lines that are remembered\n" "'hkmap'\t\t 'hk'\t Hebrew keyboard mapping\n" "'hkmapp'\t 'hkp' phonetic Hebrew keyboard mapping\n" "'icon'\t\t\t let Vim set the text of the window icon\n" "'iconstring'\t\t string to use for the Vim icon text\n" "'ignorecase'\t 'ic'\t ignore case in search patterns\n" "'imactivatekey' 'imak' key that activates the X input method\n" "'imcmdline'\t 'imc' use IM when starting to edit a command line\n" "'imdisable'\t 'imd' do not use the IM in any mode\n" "'iminsert'\t 'imi' use :lmap or IM in Insert mode\n" "'imsearch'\t 'ims' use :lmap or IM when typing a search pattern\n" "'include'\t 'inc' pattern to be used to find an include file\n" "'includeexpr'\t 'inex' expression used to process an include line\n" "'incsearch'\t 'is'\t highlight match while typing search pattern\n" "'indentexpr'\t 'inde' expression used to obtain the indent of a line\n" "'indentkeys'\t 'indk' keys that trigger indenting with 'indentexpr'\n" "'infercase'\t 'inf' adjust case of match for keyword completion\n" "'insertmode'\t 'im'\t start the edit of a file in Insert mode\n" "'isfname'\t 'isf' characters included in file names and pathnames\n" "'isident'\t 'isi' characters included in identifiers\n" "'iskeyword'\t 'isk' characters included in keywords\n" "'isprint'\t 'isp' printable characters\n" "'joinspaces'\t 'js'\t two spaces after a period with a join command\n" "'key'\t\t\t encryption key\n" "'keymap'\t 'kmp' name of a keyboard mapping\n" "'keymodel'\t 'km'\t enable starting/stopping selection with keys\n" "'keywordprg'\t 'kp'\t program to use for the \"K\" command\n" "'langmap'\t 'lmap' alphabetic characters for other language mode\n" "'langmenu'\t 'lm'\t language to be used for the menus\n" "'laststatus'\t 'ls'\t tells when last window has status lines\n" "'lazyredraw'\t 'lz'\t don't redraw while executing macros\n" "'linebreak'\t 'lbr' wrap long lines at a blank\n" "'lines'\t\t\t number of lines in the display\n" "'linespace'\t 'lsp' number of pixel lines to use between characters\n" "'lisp'\t\t\t automatic indenting for Lisp\n" "'lispwords'\t 'lw'\t words that change how lisp indenting works\n" "'list'\t\t\t show and \n" "'listchars'\t 'lcs' characters for displaying in list mode\n" "'loadplugins'\t 'lpl' load plugin scripts when starting up\n" "'macatsui'\t\t Mac GUI: use ATSUI text drawing\n" "'magic'\t\t\t changes special characters in search patterns\n" "'makeef'\t 'mef' name of the errorfile for \":make\"\n" "'makeprg'\t 'mp'\t program to use for the \":make\" command\n" "'matchpairs'\t 'mps' pairs of characters that \"%\" can match\n" "'matchtime'\t 'mat' tenths of a second to show matching paren\n" "'maxcombine'\t 'mco' maximum nr of combining characters displayed\n" "'maxfuncdepth'\t 'mfd' maximum recursive depth for user functions\n" "'maxmapdepth'\t 'mmd' maximum recursive depth for mapping\n" "'maxmem'\t 'mm'\t maximum memory (in Kbyte) used for one buffer\n" "'maxmempattern' 'mmp' maximum memory (in Kbyte) used for pattern " "search\n" "'maxmemtot'\t 'mmt' maximum memory (in Kbyte) used for all buffers\n" "'menuitems'\t 'mis' maximum number of items in a menu\n" "'mkspellmem'\t 'msm' memory used before |:mkspell| compresses the " "tree\n" "'modeline'\t 'ml'\t recognize modelines at start or end of file\n" "'modelines'\t 'mls' number of lines checked for modelines\n" "'modifiable'\t 'ma'\t changes to the text are not possible\n" "'modified'\t 'mod' buffer has been modified\n" "'more'\t\t\t pause listings when the whole screen is filled\n" "'mouse'\t\t\t enable the use of mouse clicks\n" "'mousefocus'\t 'mousef' keyboard focus follows the mouse\n" "'mousehide'\t 'mh'\t hide mouse pointer while typing\n" "'mousemodel'\t 'mousem' changes meaning of mouse buttons\n" "'mouseshape'\t 'mouses' shape of the mouse pointer in different modes\n" "'mousetime'\t 'mouset' max time between mouse double-click\n" "'mzquantum'\t 'mzq' the interval between polls for MzScheme threads\n" "'nrformats'\t 'nf'\t number formats recognized for CTRL-A command\n" "'number'\t 'nu'\t print the line number in front of each line\n" "'numberwidth'\t 'nuw' number of columns used for the line number\n" "'omnifunc'\t 'ofu' function for filetype-specific completion\n" "'operatorfunc'\t 'opfunc' funtion to be called for |g@| operator\n" "'osfiletype'\t 'oft' operating system-specific filetype information\n" "'paragraphs'\t 'para' nroff macros that separate paragraphs\n" "'paste'\t\t\t allow pasting text\n" "'pastetoggle'\t 'pt'\t key code that causes 'paste' to toggle\n" "'patchexpr'\t 'pex' expression used to patch a file\n" "'patchmode'\t 'pm'\t keep the oldest version of a file\n" "'path'\t\t 'pa'\t list of directories searched with \"gf\" et.al.\n" "'preserveindent' 'pi'\t preserve the indent structure when reindenting\n" "'previewheight' 'pvh' height of the preview window\n" "'previewwindow' 'pvw' identifies the preview window\n" "'printdevice'\t 'pdev' name of the printer to be used for :hardcopy\n" "'printencoding' 'penc' encoding to be used for printing\n" "'printexpr'\t 'pexpr' expression used to print PostScript for :hardcopy\n" "'printfont'\t 'pfn' name of the font to be used for :hardcopy\n" "'printheader'\t 'pheader' format of the header used for :hardcopy\n" "'printmbcharset' 'pmbcs' CJK character set to be used for :hardcopy\n" "'printmbfont'\t 'pmbfn' font names to be used for CJK output of " ":hardcopy\n" "'printoptions'\t 'popt' controls the format of :hardcopy output\n" "'pumheight''\t 'ph'\t maximum height of the popup menu\n" "'quoteescape'\t 'qe'\t escape characters used in a string\n" "'readonly'\t 'ro'\t disallow writing the buffer\n" "'remap'\t\t\t allow mappings to work recursively\n" "'report'\t\t threshold for reporting nr. of lines changed\n" "'restorescreen' 'rs'\t Win32: restore screen when exiting\n" "'revins'\t 'ri'\t inserting characters will work backwards\n" "'rightleft'\t 'rl'\t window is right-to-left oriented\n" "'rightleftcmd'\t 'rlc' commands for which editing works right-to-left\n" "'ruler'\t\t 'ru'\t show cursor line and column in the status line\n" "'rulerformat'\t 'ruf' custom format for the ruler\n" "'runtimepath'\t 'rtp' list of directories used for runtime files\n" "'scroll'\t 'scr' lines to scroll with CTRL-U and CTRL-D\n" "'scrollbind'\t 'scb' scroll in window as other windows scroll\n" "'scrolljump'\t 'sj'\t minimum number of lines to scroll\n" "'scrolloff'\t 'so'\t minimum nr. of lines above and below cursor\n" "'scrollopt'\t 'sbo' how 'scrollbind' should behave\n" "'sections'\t 'sect' nroff macros that separate sections\n" "'secure'\t\t secure mode for reading .vimrc in current dir\n" "'selection'\t 'sel' what type of selection to use\n" "'selectmode'\t 'slm' when to use Select mode instead of Visual mode\n" "'sessionoptions' 'ssop' options for |:mksession|\n" "'shell'\t\t 'sh'\t name of shell to use for external commands\n" "'shellcmdflag'\t 'shcf' flag to shell to execute one command\n" "'shellpipe'\t 'sp'\t string to put output of \":make\" in error file\n" "'shellquote'\t 'shq' quote character(s) for around shell command\n" "'shellredir'\t 'srr' string to put output of filter in a temp file\n" "'shellslash'\t 'ssl' use forward slash for shell file names\n" "'shelltemp'\t 'stmp' whether to use a temp file for shell commands\n" "'shelltype'\t 'st'\t Amiga: influences how to use a shell\n" "'shellxquote'\t 'sxq' like 'shellquote', but include redirection\n" "'shiftround'\t 'sr'\t round indent to multiple of shiftwidth\n" "'shiftwidth'\t 'sw'\t number of spaces to use for (auto)indent step\n" "'shortmess'\t 'shm' list of flags, reduce length of messages\n" "'shortname'\t 'sn'\t non-MS-DOS: Filenames assumed to be 8.3 chars\n" "'showbreak'\t 'sbr' string to use at the start of wrapped lines\n" "'showcmd'\t 'sc'\t show (partial) command in status line\n" "'showfulltag'\t 'sft' show full tag pattern when completing tag\n" "'showmatch'\t 'sm'\t briefly jump to matching bracket if insert one\n" "'showmode'\t 'smd' message on status line to show current mode\n" "'showtabline'\t 'stal' tells when the tab pages line is displayed\n" "'sidescroll'\t 'ss'\t minimum number of columns to scroll horizontal\n" "'sidescrolloff' 'siso' min. nr. of columns to left and right of " "cursor\n" "'smartcase'\t 'scs' no ignore case when pattern has uppercase\n" "'smartindent'\t 'si'\t smart autoindenting for C programs\n" "'smarttab'\t 'sta' use 'shiftwidth' when inserting \n" "'softtabstop'\t 'sts' number of spaces that uses while editing\n" "'spell'\t\t\t enable spell checking\n" "'spellcapcheck' 'spc' pattern to locate end of a sentence\n" "'spellfile'\t 'spf' files where |zg| and |zw| store words\n" "'spelllang'\t 'spl' language(s) to do spell checking for\n" "'spellsuggest'\t 'sps' method(s) used to suggest spelling corrections\n" "'splitbelow'\t 'sb'\t new window from split is below the current one\n" "'splitright'\t 'spr' new window is put right of the current one\n" "'startofline'\t 'sol' commands move cursor to first blank in line\n" "'statusline'\t 'stl' custom format for the status line\n" "'suffixes'\t 'su'\t suffixes that are ignored with multiple match\n" "'suffixesadd'\t 'sua' suffixes added when searching for a file\n" "'swapfile'\t 'swf' whether to use a swapfile for a buffer\n" "'swapsync'\t 'sws' how to sync the swap file\n" "'switchbuf'\t 'swb' sets behavior when switching to another buffer\n" "'synmaxcol'\t 'smc' maximum column to find syntax items\n" "'syntax'\t 'syn' syntax to be loaded for current buffer\n" "'tabstop'\t 'ts'\t number of spaces that in file uses\n" "'tabline'\t 'tal' custom format for the console tab pages line\n" "'tabpagemax'\t 'tpm' maximum number of tab pages for |-p| and \"tab " "all\"\n" "'tagbsearch'\t 'tbs' use binary searching in tags files\n" "'taglength'\t 'tl'\t number of significant characters for a tag\n" "'tagrelative'\t 'tr'\t file names in tag file are relative\n" "'tags'\t\t 'tag' list of file names used by the tag command\n" "'tagstack'\t 'tgst' push tags onto the tag stack\n" "'term'\t\t\t name of the terminal\n" "'termbidi'\t 'tbidi' terminal takes care of bi-directionality\n" "'termencoding'\t 'tenc' character encoding used by the terminal\n" "'terse'\t\t\t shorten some messages\n" "'textauto'\t 'ta'\t obsolete, use 'fileformats'\n" "'textmode'\t 'tx'\t obsolete, use 'fileformat'\n" "'textwidth'\t 'tw'\t maximum width of text that is being inserted\n" "'thesaurus'\t 'tsr' list of thesaurus files for keyword completion\n" "'tildeop'\t 'top' tilde command \"~\" behaves like an operator\n" "'timeout'\t 'to'\t time out on mappings and key codes\n" "'timeoutlen'\t 'tm'\t time out time in milliseconds\n" "'title'\t\t\t let Vim set the title of the window\n" "'titlelen'\t\t percentage of 'columns' used for window title\n" "'titleold'\t\t old title, restored when exiting\n" "'titlestring'\t\t string to use for the Vim window title\n" "'toolbar'\t 'tb'\t GUI: which items to show in the toolbar\n" "'toolbariconsize' 'tbis' size of the toolbar icons (for GTK 2 only)\n" "'ttimeout'\t\t time out on mappings\n" "'ttimeoutlen'\t 'ttm' time out time for key codes in milliseconds\n" "'ttybuiltin'\t 'tbi' use built-in termcap before external termcap\n" "'ttyfast'\t 'tf'\t indicates a fast terminal connection\n" "'ttymouse'\t 'ttym' type of mouse codes generated\n" "'ttyscroll'\t 'tsl' maximum number of lines for a scroll\n" "'ttytype'\t 'tty' alias for 'term'\n" "'undolevels'\t 'ul'\t maximum number of changes that can be undone\n" "'updatecount'\t 'uc'\t after this many characters flush swap file\n" "'updatetime'\t 'ut'\t after this many milliseconds flush swap file\n" "'verbose'\t 'vbs' give informative messages\n" "'verbosefile'\t 'vfile' file to write messages in\n" "'viewdir'\t 'vdir' directory where to store files with :mkview\n" "'viewoptions'\t 'vop' specifies what to save for :mkview\n" "'viminfo'\t 'vi'\t use .viminfo file upon startup and exiting\n" "'virtualedit'\t 've'\t when to use virtual editing\n" "'visualbell'\t 'vb'\t use visual bell instead of beeping\n" "'warn'\t\t\t warn for shell command when buffer was changed\n" "'weirdinvert'\t 'wi'\t for terminals that have weird inversion method\n" "'whichwrap'\t 'ww'\t allow specified keys to cross line boundaries\n" "'wildchar'\t 'wc'\t command-line character for wildcard expansion\n" "'wildcharm'\t 'wcm' like 'wildchar' but also works when mapped\n" "'wildignore'\t 'wig' files matching these patterns are not completed\n" "'wildmenu'\t 'wmnu' use menu for command line completion\n" "'wildmode'\t 'wim' mode for 'wildchar' command-line expansion\n" "'wildoptions'\t 'wop' specifies how command line completion is done.\n" "'winaltkeys'\t 'wak' when the windows system handles ALT keys\n" "'winheight'\t 'wh'\t minimum number of lines for the current window\n" "'winfixheight'\t 'wfh' keep window height when opening/closing " "windows\n" "'winfixwidth'\t 'wfw' keep window width when opening/closing windows\n" "'winminheight'\t 'wmh' minimum number of lines for any window\n" "'winminwidth'\t 'wmw' minimal number of columns for any window\n" "'winwidth'\t 'wiw' minimal number of columns for current window\n" "'wrap'\t\t\t long lines wrap and continue on the next line\n" "'wrapmargin'\t 'wm'\t chars from the right where wrapping starts\n" "'wrapscan'\t 'ws'\t searches wrap around the end of the file\n" "'write'\t\t\t writing to a file is allowed\n" "'writeany'\t 'wa'\t write to file with no need for \"!\" override\n" "'writebackup'\t 'wb'\t make a backup before overwriting a file\n" "'writedelay'\t 'wd'\t delay this many msec for each char (for debug)\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:935 #, no-wrap msgid "*Q_ur*\t\tUndo/Redo commands\n" msgstr "" # type: Plain text #: quickref.txt:939 #, no-wrap msgid "" "|u|\t N u\t\tundo last N changes\n" "|CTRL-R| N CTRL-R\tredo last N undone changes\n" "|U|\t U\t\trestore last changed line\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:941 #, no-wrap msgid "*Q_et*\t\tExternal commands\n" msgstr "" # type: Plain text #: quickref.txt:946 #, no-wrap msgid "" "|:shell|\t:sh[ell]\tstart a shell\n" "|:!|\t\t:!{command}\texecute {command} with a shell\n" "|K|\t\t K\t\tlookup keyword under the cursor with\n" "\t\t\t\t 'keywordprg' program (default: \"man\")\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:948 #, no-wrap msgid "*Q_qf*\t\tQuickfix commands\n" msgstr "" # type: Plain text #: quickref.txt:969 #, no-wrap msgid "" "|:cc|\t\t:cc [nr]\tdisplay error [nr] (default is the same again)\n" "|:cnext|\t:cn\t\tdisplay the next error\n" "|:cprevious|\t:cp\t\tdisplay the previous error\n" "|:clist|\t:cl\t\tlist all errors\n" "|:cfile|\t:cf\t\tread errors from the file 'errorfile'\n" "|:cgetbuffer|\t:cgetb\t\tlike :cbuffer but don't jump to the first error\n" "|:cgetfile|\t:cg\t\tlike :cfile but don't jump to the first error\n" "|:cgetexpr|\t:cgete\t\tlike :cexpr but don't jump to the first error\n" "|:caddfile|\t:caddf\t\tadd errors from the error file to the current\n" "\t\t\t\t quickfix list\n" "|:caddexpr|\t:cad\t\tadd errors from an expression to the current\n" "\t\t\t\t quickfix list\n" "|:cbuffer|\t:cb\t\tread errors from text in a buffer\n" "|:cexpr|\t:cex\t\tread errors from an expression\n" "|:cquit|\t:cq\t\tquit without writing and return error code (to\n" "\t\t\t\t the compiler)\n" "|:make|\t\t:make [args]\tstart make, read errors, and jump to first\n" "\t\t\t\t error\n" "|:grep|\t\t:gr[ep] [args]\texecute 'grepprg' to find matches and jump to\n" "\t\t\t\t the first one.\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:971 #, no-wrap msgid "*Q_vc*\t\tVarious commands\n" msgstr "" # type: Plain text #: quickref.txt:990 #, no-wrap msgid "" "|CTRL-L|\t CTRL-L\tClear and redraw the screen.\n" "|CTRL-G|\t CTRL-G\tshow current file name (with path) and cursor\n" "\t\t\t\t position\n" "|ga|\t\t ga\t\tshow ascii value of character under cursor in\n" "\t\t\t\t decimal, hex, and octal\n" "|g8|\t\t g8\t\tfor utf-8 encoding: show byte sequence for\n" "\t\t\t\t character under cursor in hex.\n" "|g_CTRL-G|\t g CTRL-G\tshow cursor column, line, and character\n" "\t\t\t\t position\n" "|CTRL-C|\t CTRL-C\tduring searches: Interrupt the search\n" "|dos-CTRL-Break| CTRL-Break\tMS-DOS: during searches: Interrupt the " "search\n" "||\t\t \twhile entering a count: delete last character\n" "|:version|\t:ve[rsion]\tshow version information\n" "|:mode|\t\t:mode N\t\tMS-DOS: set screen mode to N (number, C80,\n" "\t\t\t\t C4350, etc.)\n" "|:normal|\t:norm[al][!] {commands}\n" "\t\t\t\tExecute Normal mode commands.\n" "|Q|\t\tQ\t\tswitch to \"Ex\" mode\n" msgstr "" # type: Plain text #: quickref.txt:997 #, no-wrap msgid "" "|:redir|\t:redir >{file}\t\tredirect messages to {file}\n" "|:silent|\t:silent[!] {command}\texecute {command} silently\n" "|:confirm|\t:confirm {command}\tquit, write, etc., asking about\n" "\t\t\t\t\tunsaved changes or read-only files.\n" "|:browse|\t:browse {command}\topen/read/write file, using a\n" "\t\t\t\t\tfile selection dialog\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:999 #, no-wrap msgid "*Q_ce*\t\tCommand-line editing\n" msgstr "" # type: Plain text #: quickref.txt:1002 #, no-wrap msgid "" "|c_|\t\t\t abandon command-line (if 'wildchar' is\n" "\t\t\t\t , type it twice)\n" msgstr "" # type: Plain text #: quickref.txt:1010 #, no-wrap msgid "" "|c_CTRL-V|\tCTRL-V {char}\t insert {char} literally\n" "|c_CTRL-V|\tCTRL-V {number} enter decimal value of character (up to\n" "\t\t\t\t three digits)\n" "|c_CTRL-K|\tCTRL-K {char1} {char2}\n" "\t\t\t\t enter digraph (See |Q_di|)\n" "|c_CTRL-R|\tCTRL-R {0-9a-z\"%#:-=}\n" "\t\t\t\t insert the contents of a register\n" msgstr "" # type: Plain text #: quickref.txt:1014 #, no-wrap msgid "" "|c_|\t/\t cursor left/right\n" "|c_|\t/ cursor one word left/right\n" "|c_CTRL-B|\tCTRL-B/CTRL-E\t cursor to beginning/end of command-line\n" msgstr "" # type: Plain text #: quickref.txt:1019 #, no-wrap msgid "" "|c_|\t\t\t delete the character in front of the cursor\n" "|c_|\t\t\t delete the character under the cursor\n" "|c_CTRL-W|\tCTRL-W\t\t delete the word in front of the cursor\n" "|c_CTRL-U|\tCTRL-U\t\t remove all characters\n" msgstr "" # type: Plain text #: quickref.txt:1024 #, no-wrap msgid "" "|c_|\t/\t recall older/newer command-line that starts\n" "\t\t\t\t with current command\n" "|c_|\t/\t recall older/newer command-line from " "history\n" "|:history|\t:his[tory]\t show older command-lines\n" msgstr "" # type: Plain text #: quickref.txt:1026 msgid "Context-sensitive completion on the command-line:" msgstr "" # type: Plain text #: quickref.txt:1042 #, no-wrap msgid "" "|c_wildchar|\t'wildchar' (default: )\n" "\t\t\t\tdo completion on the pattern in front of the\n" "\t\t\t\t cursor. If there are multiple matches,\n" "\t\t\t\t beep and show the first one; further\n" "\t\t\t\t 'wildchar' will show the next ones.\n" "|c_CTRL-D|\tCTRL-D\t\tlist all names that match the pattern in\n" "\t\t\t\t front of the cursor\n" "|c_CTRL-A|\tCTRL-A\t\tinsert all names that match pattern in front\n" "\t\t\t\t of cursor\n" "|c_CTRL-L|\tCTRL-L\t\tinsert longest common part of names that\n" "\t\t\t\t match pattern\n" "|c_CTRL-N|\tCTRL-N\t\tafter 'wildchar' with multiple matches: go\n" "\t\t\t\t to next match\n" "|c_CTRL-P|\tCTRL-P\t\tafter 'wildchar' with multiple matches: go\n" "\t\t\t\t to previous match\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1044 #, no-wrap msgid "*Q_ra*\t\tEx ranges\n" msgstr "" # type: Plain text #: quickref.txt:1048 #, no-wrap msgid "" "|:range|\t,\t\tseparates two line numbers\n" "|:range|\t;\t\tidem, set cursor to the first line number\n" "\t\t\t\tbefore interpreting the second one\n" msgstr "" # type: Plain text #: quickref.txt:1057 msgid "" "|:range|\t{number}\tan absolute line number |:range|\t.\t\tthe current line " "|:range|\t$\t\tthe last line in the file |:range|\t%\t\tequal to 1,$ (the " "entire file) |:range|\t*\t\tequal to '<,'> (visual area) " "|:range|\t't\t\tposition of mark t |:range|\t/{pattern}[/]\tthe next line " "where {pattern} matches |:range|\t?{pattern}[?]\tthe previous line where " "{pattern} matches" msgstr "" # type: Plain text #: quickref.txt:1062 #, no-wrap msgid "" "|:range|\t+[num]\t\tadd [num] to the preceding line number\n" "\t\t\t\t (default: 1)\n" "|:range|\t-[num]\t\tsubtract [num] from the preceding line\n" "\t\t\t\t number (default: 1)\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1064 #, no-wrap msgid "*Q_ex*\t\tSpecial Ex characters\n" msgstr "" # type: Plain text #: quickref.txt:1067 #, no-wrap msgid "" "|:bar|\t |\t\tseparates two commands (not for \":global\" and \":!\")\n" "|:quote| \"\t\tbegins comment\n" msgstr "" # type: Plain text #: quickref.txt:1082 #, no-wrap msgid "" "|:_%|\t %\t\tcurrent file name (only where a file name is expected)\n" "|:_#|\t #[num]\talternate file name [num] (only where a file name is\n" "\t\t\t expected)\n" "\tNote: The next four are typed literally; these are not special keys!\n" "|:| \tword under the cursor (only where a file name is\n" "\t\t\t expected)\n" "|:| \tWORD under the cursor (only where a file name is\n" "\t\t\t expected) (see |WORD|)\n" "|:| \tfile name under the cursor (only where a file name is\n" "\t\t\t expected)\n" "|:| \tfile name for autocommand (only where a file name is\n" "\t\t\t expected)\n" "|:| \tfile name of a \":source\"d file, within that file " "(only\n" "\t\t\t where a file name is expected)\n" msgstr "" # type: Plain text #: quickref.txt:1090 #, no-wrap msgid "" "\t\tAfter \"%\", \"#\", \"\", \"\" or \"\"\n" "\t\t|::p|\t :p\t\tfull path\n" "\t\t|::h|\t :h\t\thead (file name removed)\n" "\t\t|::t|\t :t\t\ttail (file name only)\n" "\t\t|::r|\t :r\t\troot (extension removed)\n" "\t\t|::e|\t :e\t\textension\n" "\t\t|::s|\t :s/{pat}/{repl}/\tsubstitute {pat} with {repl}\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1092 #, no-wrap msgid "*Q_st*\t\tStarting VIM\n" msgstr "" # type: Plain text #: quickref.txt:1099 #, no-wrap msgid "" "|-vim|\t vim [options]\t\tstart editing with an empty buffer\n" "|-file|\t vim [options] {file} ..\tstart editing one or more files\n" "|--|\t vim [options] -\t\tread file from stdin\n" "|-tag|\t vim [options] -t {tag}\tedit the file associated with {tag}\n" "|-qf|\t vim [options] -q [fname]\tstart editing in QuickFix mode,\n" "\t\t\t\t\t display the first error\n" msgstr "" # type: Plain text #: quickref.txt:1101 #, no-wrap msgid "\tMost useful Vim arguments (for full list see |startup-options|)\n" msgstr "" # type: Plain text #: quickref.txt:1103 #, no-wrap msgid "|-gui|\t-g\t\t start GUI (also allows other options)\n" msgstr "" # type: Plain text #: quickref.txt:1139 #, no-wrap msgid "" "|-+|\t+[num]\t\t put the cursor at line [num] (default: last line)\n" "|-+c|\t+{command}\t execute {command} after loading the file\n" "|-+/|\t+/{pat} {file} .. put the cursor at the first occurrence of {pat}\n" "|-v|\t-v\t\t Vi mode, start ex in Normal mode\n" "|-e|\t-e\t\t Ex mode, start vim in Ex mode\n" "|-R|\t-R\t\t Read-only mode, implies -n\n" "|-m|\t-m\t\t modifications not allowed (resets 'write' option)\n" "|-d|\t-d\t\t diff mode |diff|\n" "|-b|\t-b\t\t binary mode\n" "|-l|\t-l\t\t lisp mode\n" "|-A|\t-A\t\t Arabic mode ('arabic' is set)\n" "|-F|\t-F\t\t Farsi mode ('fkmap' and 'rightleft' are set)\n" "|-H|\t-H\t\t Hebrew mode ('hkmap' and 'rightleft' are set)\n" "|-V|\t-V\t\t Verbose, give informative messages\n" "|-C|\t-C\t\t Compatible, set the 'compatible' option\n" "|-N|\t-N\t\t Nocompatible, reset the 'compatible' option\n" "|-r|\t-r\t\t give list of swap files\n" "|-r|\t-r {file} ..\t recover aborted edit session\n" "|-n|\t-n\t\t do not create a swap file\n" "|-o|\t-o [num]\t open [num] windows (default: one for each file)\n" "|-f|\t-f\t\t GUI: foreground process, don't fork\n" "\t\t\t Amiga: do not restart VIM to open a window (for\n" "\t\t\t\te.g., mail)\n" "|-s|\t-s {scriptin}\t first read commands from the file {scriptin}\n" "|-w|\t-w {scriptout}\t write typed chars to file {scriptout} (append)\n" "|-W|\t-W {scriptout}\t write typed chars to file {scriptout} " "(overwrite)\n" "|-T|\t-T {terminal}\t set terminal name\n" "|-d|\t-d {device}\t Amiga: open {device} to be used as a console\n" "|-u|\t-u {vimrc}\t read inits from {vimrc} instead of other inits\n" "|-U|\t-U {gvimrc}\t idem, for when starting the GUI\n" "|-i|\t-i {viminfo}\t read info from {viminfo} instead of other files\n" "|---|\t--\t\t end of options, other arguments are file names\n" "|--help| --help\t show list of arguments and exit\n" "|--version| --version\t show version info and exit\n" "|--|\t-\t\t Read file from stdin.\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1141 #, no-wrap msgid "*Q_ed*\t\tEditing a file\n" msgstr "" # type: Plain text #: quickref.txt:1148 #, no-wrap msgid "" "\t Without !: Fail if changes has been made to the current buffer.\n" "\t With !: Discard any changes to the current buffer.\n" "|:edit_f| :e[dit][!] {file}\tEdit {file}.\n" "|:edit|\t :e[dit][!]\t\tReload the current file.\n" "|:enew|\t :ene[w][!]\t\tEdit a new, unnamed buffer.\n" "|:find| :fin[d][!] {file}\tFind {file} in 'path' and edit it.\n" msgstr "" # type: Plain text #: quickref.txt:1158 #, no-wrap msgid "" "|CTRL-^| N CTRL-^\t\tEdit alternate file N (equivalent to \":e #N\").\n" "|gf|\t gf or ]f\tEdit the file whose name is under the cursor\n" "|:pwd|\t :pwd\t\t\tPrint the current directory name.\n" "|:cd|\t :cd [path]\t\tChange the current directory to [path].\n" "|:cd-|\t :cd -\t\tBack to previous current directory.\n" "|:file|\t :f[ile]\t\tPrint the current file name and the cursor\n" "\t\t\t\t position.\n" "|:file|\t :f[ile] {name}\tSet the current file name to {name}.\n" "|:files| :files\t\tShow alternate file names.\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1160 #, no-wrap msgid "*Q_fl*\t\tUsing the argument list\t\t\t|argument-list|\n" msgstr "" # type: Plain text #: quickref.txt:1169 #, no-wrap msgid "" "|:args|\t :ar[gs]\t\tPrint the argument list, with the current file\n" "\t\t\t\t in \"[]\".\n" "|:all|\t :all or :sall\tOpen a window for every file in the arg list.\n" "|:wn|\t :wn[ext][!]\t\tWrite file and edit next file.\n" "|:wn|\t :wn[ext][!] {file}\tWrite to {file} and edit next file, unless\n" "\t\t\t\t {file} exists. With !, overwrite existing\n" "\t\t\t\t file.\n" "|:wN|\t :wN[ext][!] [file]\tWrite file and edit previous file.\n" msgstr "" # type: Plain text #: quickref.txt:1178 #, no-wrap msgid "" "\t in current window in new window\t~\n" "|:argument| :argu[ment] N\t :sar[gument] N\tEdit file N\n" "|:next|\t :n[ext]\t\t :sn[ext]\t\tEdit next file\n" "|:next_f| :n[ext] {arglist}\t :sn[ext] {arglist}\tdefine new arg list\n" "\t\t\t\t\t\t\t and edit first file\n" "|:Next|\t :N[ext]\t\t :sN[ext]\t\tEdit previous file\n" "|:first| :fir[st]\t\t :sfir[st]\t\tEdit first file\n" "|:last|\t :la[st]\t\t :sla[st]\t\tEdit last file\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1180 #, no-wrap msgid "*Q_wq*\t\tWriting and quitting\n" msgstr "" # type: Plain text #: quickref.txt:1192 #, no-wrap msgid "" "|:w|\t :[range]w[rite][!]\t\tWrite to the current file.\n" "|:w_f|\t :[range]w[rite] {file}\tWrite to {file}, unless it already\n" "\t\t\t\t\t exists.\n" "|:w_f|\t :[range]w[rite]! {file}\tWrite to {file}. Overwrite an existing\n" "\t\t\t\t\t file.\n" "|:w_a|\t :[range]w[rite][!] >>\t\tAppend to the current file.\n" "|:w_a|\t :[range]w[rite][!] >> {file}\tAppend to {file}.\n" "|:w_c|\t :[range]w[rite] !{cmd}\tExecute {cmd} with [range] lines as\n" "\t\t\t\t\t standard input.\n" "|:up|\t :[range]up[date][!]\t\twrite to current file if modified\n" "|:wall|\t :wa[ll][!]\t\t\twrite all changed buffers\n" msgstr "" # type: Plain text #: quickref.txt:1202 #, no-wrap msgid "" "|:q|\t :q[uit]\t\tQuit current buffer, unless changes have been\n" "\t\t\t\t made. Exit Vim when there are no other\n" "\t\t\t\t non-help buffers\n" "|:q|\t :q[uit]!\t\tQuit current buffer always, discard any\n" "\t\t\t\t changes. Exit Vim when there are no other\n" "\t\t\t\t non-help buffers\n" "|:qa|\t :qa[ll]\t\tExit Vim, unless changes have been made.\n" "|:qa|\t :qa[ll]!\t\tExit Vim always, discard any changes.\n" "|:cq|\t :cq\t\t\tQuit without writing and return error code.\n" msgstr "" # type: Plain text #: quickref.txt:1211 #, no-wrap msgid "" "|:wq|\t :wq[!]\t\tWrite the current file and exit.\n" "|:wq|\t :wq[!] {file}\t\tWrite to {file} and exit.\n" "|:xit|\t :x[it][!] [file]\tLike \":wq\" but write only when changes have\n" "\t\t\t\t been made\n" "|ZZ|\t ZZ\t\t\tSame as \":x\".\n" "|ZQ|\t ZQ\t\t\tSame as \":q!\".\n" "|:xall|\t :xa[ll][!] or :wqall[!]\n" "\t\t\t\tWrite all changed buffers and exit\n" msgstr "" # type: Plain text #: quickref.txt:1215 #, no-wrap msgid "" "|:stop|\t :st[op][!]\t\tSuspend VIM or start new shell. If 'aw' option\n" "\t\t\t\t is set and [!] not given write the buffer.\n" "|CTRL-Z| CTRL-Z\t\tSame as \":stop\"\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1217 #, no-wrap msgid "*Q_ac*\t\tAutomatic Commands\n" msgstr "" # type: Plain text #: quickref.txt:1219 msgid "" "|viminfo-file|\tRead registers, marks, history at startup, save when " "exiting." msgstr "" # type: Plain text #: quickref.txt:1224 msgid "" "|:rviminfo|\t:rv[iminfo] [file]\tRead info from viminfo file [file] " "|:rviminfo|\t:rv[iminfo]! [file]\tidem, overwrite existing info " "|:wviminfo|\t:wv[iminfo] [file]\tAdd info to viminfo file [file] " "|:wviminfo|\t:wv[iminfo]! [file]\tWrite info to viminfo file [file]" msgstr "" # type: Plain text #: quickref.txt:1226 msgid "|modeline|\tAutomatic option setting when editing a file" msgstr "" # type: Plain text #: quickref.txt:1230 #, no-wrap msgid "" "|modeline|\tvim:{set-arg}: ..\tIn the first and last lines of the\n" "\t\t\t\t\tfile (see 'ml' option), {set-arg} is\n" "\t\t\t\t\tgiven as an argument to \":set\"\n" msgstr "" # type: Plain text #: quickref.txt:1232 msgid "|autocommand|\tAutomatic execution of commands on certain events." msgstr "" # type: Plain text #: quickref.txt:1246 #, no-wrap msgid "" "|:autocmd|\t:au\t\t\tList all autocommands\n" "|:autocmd|\t:au {event}\t\tList all autocommands for {event}\n" "|:autocmd|\t:au {event} {pat}\tList all autocommands for {event} with\n" "\t\t\t\t\t{pat}\n" "|:autocmd|\t:au {event} {pat} {cmd}\tEnter new autocommands for {event}\n" "\t\t\t\t\twith {pat}\n" "|:autocmd|\t:au!\t\t\tRemove all autocommands\n" "|:autocmd|\t:au! {event}\t\tRemove all autocommands for {event}\n" "|:autocmd|\t:au! * {pat}\t\tRemove all autocommands for {pat}\n" "|:autocmd|\t:au! {event} {pat}\tRemove all autocommands for {event}\n" "\t\t\t\t\twith {pat}\n" "|:autocmd|\t:au! {event} {pat} {cmd} Remove all autocommands for {event}\n" "\t\t\t\t\twith {pat} and enter new one\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1248 #, no-wrap msgid "*Q_wi*\t\tMulti-window commands\n" msgstr "" # type: Plain text #: quickref.txt:1254 #, no-wrap msgid "" "|CTRL-W_s|\tCTRL-W s or :split\tSplit window into two parts\n" "|:split_f|\t:split {file}\t\tSplit window and edit {file} in one of\n" "\t\t\t\t\t them\n" "|:vsplit|\t:vsplit {file}\t\tSame, but split vertically\n" "|:vertical|\t:vertical {cmd}\t\tMake {cmd} split vertically\n" msgstr "" # type: Plain text #: quickref.txt:1267 #, no-wrap msgid "" "|:sfind|\t:sf[ind] {file}\t\tSplit window, find {file} in 'path'\n" "\t\t\t\t\t and edit it.\n" "|CTRL-W_]|\tCTRL-W ]\t\tSplit window and jump to tag under\n" "\t\t\t\t\t cursor\n" "|CTRL-W_f|\tCTRL-W f\t\tSplit window and edit file name under\n" "\t\t\t\t\t the cursor\n" "|CTRL-W_^|\tCTRL-W ^\t\tSplit window and edit alternate file\n" "|CTRL-W_n|\tCTRL-W n or :new\tCreate new empty window\n" "|CTRL-W_q|\tCTRL-W q or :q[uit]\tQuit editing and close window\n" "|CTRL-W_c|\tCTRL-W c or :cl[ose]\tMake buffer hidden and close window\n" "|CTRL-W_o|\tCTRL-W o or :on[ly]\tMake current window only one on the\n" "\t\t\t\t\t screen\n" msgstr "" # type: Plain text #: quickref.txt:1275 msgid "" "|CTRL-W_j|\tCTRL-W j\t\tMove cursor to window below |CTRL-W_k|\tCTRL-W " "k\t\tMove cursor to window above |CTRL-W_CTRL-W|\tCTRL-W CTRL-W\t\tMove " "cursor to window below (wrap) |CTRL-W_W|\tCTRL-W W\t\tMove cursor to window " "above (wrap) |CTRL-W_t|\tCTRL-W t\t\tMove cursor to top window " "|CTRL-W_b|\tCTRL-W b\t\tMove cursor to bottom window |CTRL-W_p|\tCTRL-W " "p\t\tMove cursor to previous active window" msgstr "" # type: Plain text #: quickref.txt:1279 msgid "" "|CTRL-W_r|\tCTRL-W r\t\tRotate windows downwards |CTRL-W_R|\tCTRL-W " "R\t\tRotate windows upwards |CTRL-W_x|\tCTRL-W x\t\tExchange current window " "with next one" msgstr "" # type: Plain text #: quickref.txt:1285 #, no-wrap msgid "" "|CTRL-W_=|\tCTRL-W =\t\tMake all windows equal height\n" "|CTRL-W_-|\tCTRL-W -\t\tDecrease current window height\n" "|CTRL-W_+|\tCTRL-W +\t\tIncrease current window height\n" "|CTRL-W__|\tCTRL-W _\t\tSet current window height (default:\n" "\t\t\t\t\t very high)\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1287 #, no-wrap msgid "*Q_bu*\t\tBuffer list commands\n" msgstr "" # type: Plain text #: quickref.txt:1289 msgid "|:buffers|\t:buffers or :files\tlist all known buffer and file names" msgstr "" # type: Plain text #: quickref.txt:1292 #, no-wrap msgid "" "|:ball|\t\t:ball\t or :sball\tedit all args/buffers\n" "|:unhide|\t:unhide or :sunhide\tedit all loaded buffers\n" msgstr "" # type: Plain text #: quickref.txt:1297 #, no-wrap msgid "" "|:badd|\t\t:badd {fname}\t\tadd file name {fname} to the list\n" "|:bunload|\t:bunload[!] [N]\t\tunload buffer [N] from memory\n" "|:bdelete|\t:bdelete[!] [N]\t\tunload buffer [N] and delete it from\n" "\t\t\t\t\t the buffer list\n" msgstr "" # type: Plain text #: quickref.txt:1306 #, no-wrap msgid "" "\t in current window in new window\t~\n" "|:buffer| :[N]buffer [N]\t :[N]sbuffer [N] to arg/buf N\n" "|:bnext| :[N]bnext [N]\t :[N]sbnext [N] to Nth next arg/buf\n" "|:bNext| :[N]bNext [N]\t :[N]sbNext [N] to Nth previous arg/buf\n" "|:bprevious| :[N]bprevious [N] :[N]sbprevious [N] to Nth previous " "arg/buf\n" "|:bfirst| :bfirst\t\t :sbfirst\t to first arg/buf\n" "|:blast| :blast\t\t :sblast\t to last arg/buf\n" "|:bmodified| :[N]bmod [N]\t :[N]sbmod [N]\t to Nth modified buf\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1308 #, no-wrap msgid "*Q_sy*\t\tSyntax Highlighting\n" msgstr "" # type: Plain text #: quickref.txt:1311 msgid "" "|:syn-on|\t:syntax on\t\tstart using syntax highlighting |:syn-off|\t:syntax " "off\t\tstop using syntax highlighting" msgstr "" # type: Plain text #: quickref.txt:1322 #, no-wrap msgid "" "|:syn-keyword|\t:syntax keyword {group-name} {keyword} ..\n" "\t\t\t\t\tadd a syntax keyword item\n" "|:syn-match|\t:syntax match {group-name} {pattern} ...\n" "\t\t\t\t\tadd syntax match item\n" "|:syn-region|\t:syntax region {group-name} {pattern} ...\n" "\t\t\t\t\tadd syntax region item\n" "|:syn-sync|\t:syntax sync [ccomment | lines {N} | ...]\n" "\t\t\t\t\ttell syntax how to sync\n" "|:syntax|\t:syntax [list]\t\tlist current syntax items\n" "|:syn-clear|\t:syntax clear\t\tclear all syntax info\n" msgstr "" # type: Plain text #: quickref.txt:1326 #, no-wrap msgid "" "|:highlight|\t:highlight clear\tclear all highlight info\n" "|:highlight|\t:highlight {group-name} {key}={arg} ..\n" "\t\t\t\t\tset highlighting for {group-name}\n" msgstr "" # type: Plain text #: quickref.txt:1332 #, no-wrap msgid "" "|:filetype|\t:filetype on\t\tswitch on file type detection, without\n" "\t\t\t\t\tsyntax highlighting\n" "|:filetype|\t:filetype plugin indent on\n" "\t\t\t\t\tswitch on file type detection, with\n" "\t\t\t\t\tautomatic indenting and settings\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1334 #, no-wrap msgid "*Q_gu*\t\tGUI commands\n" msgstr "" # type: Plain text #: quickref.txt:1337 #, no-wrap msgid "" "|:gui|\t\t:gui\t\t\tUNIX: start the GUI\n" "|:gui|\t\t:gui {fname} ..\t\tidem, and edit {fname} ..\n" msgstr "" # type: Plain text #: quickref.txt:1347 #, no-wrap msgid "" "|:menu|\t\t:menu\t\t\tlist all menus\n" "|:menu|\t\t:menu {mpath}\t\tlist menus starting with {mpath}\n" "|:menu|\t\t:menu {mpath} {rhs}\tadd menu {mpath}, giving {lhs}\n" "|:menu|\t\t:menu {pri} {mpath} {rhs}\n" "\t\t\t\t\tidem, with priorities {pri}\n" "|:menu|\t\t:menu ToolBar.{name} {rhs}\n" "\t\t\t\t\tadd toolbar item, giving {lhs}\n" "|:tmenu|\t:tmenu {mpath} {text}\tadd tooltip to menu {mpath}\n" "|:unmenu|\t:unmenu {mpath}\t\tremove menu {mpath}\n" "------------------------------------------------------------------------------\n" msgstr "" # type: Plain text #: quickref.txt:1349 #, no-wrap msgid "*Q_fo*\t\tFolding\n" msgstr "" # type: Plain text #: quickref.txt:1355 #, no-wrap msgid "" "|'foldmethod'|\tset foldmethod=manual\tmanual folding\n" "\t\tset foldmethod=indent\tfolding by indent\n" "\t\tset foldmethod=expr\tfolding by 'foldexpr'\n" "\t\tset foldmethod=syntax\tfolding by syntax regions\n" "\t\tset foldmethod=marker\tfolding by 'foldmarkers'\n" msgstr "" # type: Plain text #: quickref.txt:1360 #, no-wrap msgid "" "|zf|\t\tzf{motion}\t\toperator: Define a fold manually\n" "|:fold|\t\t:{range}fold\t\tdefine a fold for {range} lines\n" "|zd|\t\tzd\t\t\tdelete one fold under the cursor\n" "|zD|\t\tzD\t\t\tdelete all folds under the cursor\n" msgstr "" # type: Plain text #: quickref.txt:1365 #, no-wrap msgid "" "|zo|\t\tzo\t\t\topen one fold under the cursor\n" "|zO|\t\tzO\t\t\topen all folds under the cursor\n" "|zc|\t\tzc\t\t\tclose one fold under the cursor\n" "|zC|\t\tzC\t\t\tclose all folds under the cursor\n" msgstr "" # type: Plain text #: quickref.txt:1370 #, no-wrap msgid "" "|zm|\t\tzm\t\t\tfold more: decrease 'foldlevel'\n" "|zM|\t\tzM\t\t\tclose all folds: make 'foldlevel' zero\n" "|zr|\t\tzr\t\t\treduce folding: increase 'foldlevel'\n" "|zR|\t\tzR\t\t\topen all folds: make 'foldlevel' max.\n" msgstr "" # type: Plain text #: quickref.txt:1374 #, no-wrap msgid "" "|zn|\t\tzn\t\t\tfold none: reset 'foldenable'\n" "|zN|\t\tzN\t\t\tfold normal set 'foldenable'\n" "|zi|\t\tzi\t\t\tinvert 'foldenable'\n" msgstr "" # type: Plain text #: quickref.txt:1375 #, no-wrap msgid " vim:tw=78:ts=8:ft=help:norl:\n" msgstr ""