Vim documentation: index

main help file

*index.txt*	For Vim version 9.2.  Last change: 2026 Feb 14


		  VIM REFERENCE MANUAL	  by Bram Moolenaar



								*index*
This file contains a list of all commands for each mode, with a tag and a
short description.  The lists are sorted on ASCII value.

Tip: When looking for certain functionality, use a search command.  E.g.,
to look for deleting something, use: "/delete".

1. Insert mode				|insert-index|
2. Normal mode				|normal-index|
   2.1. Text objects			|objects|
   2.2. Window commands			|CTRL-W|
   2.3. Square bracket commands		|[|
   2.4. Commands starting with 'g'	|g|
   2.5. Commands starting with 'z'	|z|
   2.6. Operator-pending mode		|operator-pending-index|
3. Visual mode				|visual-index|
4. Command-line editing			|ex-edit-index|
5. Terminal-Job mode			|terminal-job-index|
6. EX commands				|ex-cmd-index|

For an overview of options see |option-list|.
For an overview of built-in functions see |functions|.
For a list of Vim variables see |vim-variable|.
For a complete listing of all help items see |help-tags|.

==============================================================================

1. Insert mode						*insert-index*

tag		char		action in Insert mode	
|i_CTRL-@|	CTRL-@		insert previously inserted text and stop
				insert
|i_CTRL-A|	CTRL-A		insert previously inserted text
		CTRL-B		not used |i_CTRL-B-gone|
|i_CTRL-C|	CTRL-C		quit insert mode, without checking for
				abbreviation, unless 'insertmode' set.
|i_CTRL-D|	CTRL-D		delete one shiftwidth of indent in the current
				line
|i_CTRL-E|	CTRL-E		insert the character which is below the cursor
		CTRL-F		not used (but by default it's in 'cinkeys' to
				re-indent the current line)
|i_CTRL-G_j|	CTRL-G CTRL-J	line down, to column where inserting started
|i_CTRL-G_j|	CTRL-G j	line down, to column where inserting started
|i_CTRL-G_j|	CTRL-G <Down>	line down, to column where inserting started
|i_CTRL-G_k|	CTRL-G CTRL-K	line up, to column where inserting started
|i_CTRL-G_k|	CTRL-G k	line up, to column where inserting started
|i_CTRL-G_k|	CTRL-G <Up>	line up, to column where inserting started
|i_CTRL-G_u|	CTRL-G u	start new undoable edit
|i_CTRL-G_U|	CTRL-G U	don't break undo with next cursor movement
|i_<BS>|	<BS>		delete character before the cursor
|i_digraph|	{char1}<BS>{char2}
				enter digraph (only when 'digraph' option set)
|i_CTRL-H|	CTRL-H		same as <BS>
|i_<Tab>|	<Tab>		insert a <Tab> character
|i_CTRL-I|	CTRL-I		same as <Tab>
|i_<NL>|	<NL>		same as <CR>
|i_CTRL-J|	CTRL-J		same as <CR>
|i_CTRL-K|	CTRL-K {char1} {char2}
				enter digraph
|i_CTRL-L|	CTRL-L		when 'insertmode' set: Leave Insert mode
|i_<CR>|	<CR>		begin new line
|i_CTRL-M|	CTRL-M		same as <CR>
|i_CTRL-N|	CTRL-N		find next match for keyword in front of the
				cursor
|i_CTRL-O|	CTRL-O		execute a single command and return to insert
				mode
|i_CTRL-P|	CTRL-P		find previous match for keyword in front of
				the cursor
|i_CTRL-Q|	CTRL-Q		same as CTRL-V, unless used for terminal
				control flow
|i_CTRL-SHIFT-Q|  CTRL-SHIFT-Q {char}
				like CTRL-Q unless |modifyOtherKeys| is active
|i_CTRL-R|	CTRL-R {register}
				insert the contents of a register
|i_CTRL-R_CTRL-R| CTRL-R CTRL-R {register}
				insert the contents of a register literally
|i_CTRL-R_CTRL-O| CTRL-R CTRL-O {register}
				insert the contents of a register literally
				and don't auto-indent
|i_CTRL-R_CTRL-P| CTRL-R CTRL-P {register}
				insert the contents of a register literally
				and fix indent.
		CTRL-S		not used or used for terminal control flow
|i_CTRL-T|	CTRL-T		insert one shiftwidth of indent in current
				line
|i_CTRL-U|	CTRL-U		delete all entered characters in the current
				line
|i_CTRL-V|	CTRL-V {char}	insert next non-digit literally
|i_CTRL-SHIFT-V|  CTRL-SHIFT-V {char}
				like CTRL-V unless |modifyOtherKeys| is active
|i_CTRL-V_digit| CTRL-V {number} insert three digit decimal number as a single
				byte.
|i_CTRL-W|	CTRL-W		delete word before the cursor
|i_CTRL-X|	CTRL-X {mode}	enter CTRL-X sub mode, see |i_CTRL-X_index|
|i_CTRL-Y|	CTRL-Y		insert the character which is above the cursor
|i_CTRL-Z|	CTRL-Z		when 'insertmode' set: suspend Vim
|i_<Esc>|	<Esc>		end insert mode (unless 'insertmode' set)
|i_CTRL-[|	CTRL-[		same as <Esc>
|i_CTRL-\_CTRL-N| CTRL-\ CTRL-N	go to Normal mode
|i_CTRL-\_CTRL-G| CTRL-\ CTRL-G	go to mode specified with 'insertmode'
		CTRL-\ a - z	reserved for extensions
		CTRL-\ others	not used
|i_CTRL-]|	CTRL-]		trigger abbreviation
|i_CTRL-^|	CTRL-^		toggle use of |:lmap| mappings
|i_CTRL-_|	CTRL-_		When 'allowrevins' set: change language
				(Hebrew, Farsi) {only when compiled with
				the |+rightleft| feature}

		<Space> to '~'	not used, except '0' and '^' followed by
				CTRL-D

|i_0_CTRL-D|	0 CTRL-D	delete all indent in the current line
|i_^_CTRL-D|	^ CTRL-D	delete all indent in the current line, restore
				it in the next line

|i_<Del>|	<Del>		delete character under the cursor

		Meta characters (0x80 to 0xff, 128 to 255)
				not used

|i_<Left>|	<Left>		cursor one character left
|i_<S-Left>|	<S-Left>	cursor one word left
|i_<C-Left>|	<C-Left>	cursor one word left
|i_<Right>|	<Right>		cursor one character right
|i_<S-Right>|	<S-Right>	cursor one word right
|i_<C-Right>|	<C-Right>	cursor one word right
|i_<Up>|	<Up>		cursor one line up
|i_<S-Up>|	<S-Up>		same as <PageUp>
|i_<Down>|	<Down>		cursor one line down
|i_<S-Down>|	<S-Down>	same as <PageDown>
|i_<Home>|	<Home>		cursor to start of line
|i_<C-Home>|	<C-Home>	cursor to start of file
|i_<End>|	<End>		cursor past end of line
|i_<C-End>|	<C-End>		cursor past end of file
|i_<PageUp>|	<PageUp>	one screenful backward
|i_<PageDown>|	<PageDown>	one screenful forward
|i_<F1>|	<F1>		same as <Help>
|i_<Help>|	<Help>		stop insert mode and display help window
|i_<Insert>|	<Insert>	toggle Insert/Replace mode
|i_<LeftMouse>|	<LeftMouse>	cursor at mouse click
|i_<ScrollWheelDown>|	<ScrollWheelDown>	move window three lines down
|i_<S-ScrollWheelDown>|	<S-ScrollWheelDown>	move window one page down
|i_<ScrollWheelUp>|	<ScrollWheelUp>		move window three lines up
|i_<S-ScrollWheelUp>|	<S-ScrollWheelUp>	move window one page up
|i_<ScrollWheelLeft>|	<ScrollWheelLeft>	move window six columns left
|i_<S-ScrollWheelLeft>|	<S-ScrollWheelLeft>	move window one page left
|i_<ScrollWheelRight>|	<ScrollWheelRight>	move window six columns right
|i_<S-ScrollWheelRight>| <S-ScrollWheelRight>	move window one page right


commands in CTRL-X submode				*i_CTRL-X_index*

|i_CTRL-X_CTRL-D|	CTRL-X CTRL-D	complete defined identifiers
|i_CTRL-X_CTRL-E|	CTRL-X CTRL-E	scroll up
|i_CTRL-X_CTRL-F|	CTRL-X CTRL-F	complete file names
|i_CTRL-X_CTRL-I|	CTRL-X CTRL-I	complete identifiers
|i_CTRL-X_CTRL-K|	CTRL-X CTRL-K	complete identifiers from dictionary
|i_CTRL-X_CTRL-L|	CTRL-X CTRL-L	complete whole lines
|i_CTRL-X_CTRL-N|	CTRL-X CTRL-N	next completion
|i_CTRL-X_CTRL-O|	CTRL-X CTRL-O	omni completion
|i_CTRL-X_CTRL-P|	CTRL-X CTRL-P	previous completion
|i_CTRL-X_CTRL-R|	CTRL-X CTRL-R	complete contents from registers
|i_CTRL-X_CTRL-S|	CTRL-X CTRL-S	spelling suggestions
|i_CTRL-X_CTRL-T|	CTRL-X CTRL-T	complete identifiers from thesaurus
|i_CTRL-X_CTRL-Y|	CTRL-X CTRL-Y	scroll down
|i_CTRL-X_CTRL-U|	CTRL-X CTRL-U	complete with 'completefunc'
|i_CTRL-X_CTRL-V|	CTRL-X CTRL-V	complete like in : command line
|i_CTRL-X_CTRL-Z|	CTRL-X CTRL-Z	stop completion, text is unchanged
|i_CTRL-X_CTRL-]|	CTRL-X CTRL-]	complete tags
|i_CTRL-X_s|		CTRL-X s	spelling suggestions

commands in completion mode (see |popupmenu-keys|)

|complete_CTRL-E| CTRL-E	stop completion and go back to original text
|complete_CTRL-Y| CTRL-Y	accept selected match and stop completion
		CTRL-L		insert one character from the current match
		<CR>		insert currently selected match
		<BS>		delete one character and redo search
		CTRL-H		same as <BS>
		<Up>		select the previous match
		<Down>		select the next match
		<PageUp>	select a match several entries back
		<PageDown>	select a match several entries forward
		other		stop completion and insert the typed character

==============================================================================

2. Normal mode						*normal-index*

CHAR	 any non-blank character
WORD	 a sequence of non-blank characters
N	 a number entered before the command
{motion} a cursor movement command
Nmove	 the text that is moved over with a {motion}
SECTION	 a section that possibly starts with '}' instead of '{'

note: 1 = cursor movement command; 2 = can be undone/redone

tag		char	      note action in Normal mode	
------------------------------------------------------------------------------
		CTRL-@		   not used
|CTRL-A|	CTRL-A		2  add N to number at/after cursor
|CTRL-B|	CTRL-B		1  scroll N screens Backwards
|CTRL-C|	CTRL-C		   interrupt current (search) command
|CTRL-D|	CTRL-D		   scroll Down N lines (default: half a screen)
|CTRL-E|	CTRL-E		   scroll N lines upwards (N lines Extra)
|CTRL-F|	CTRL-F		1  scroll N screens Forward
|CTRL-G|	CTRL-G		   display current file name and position
|<BS>|		<BS>		1  same as "h"
|CTRL-H|	CTRL-H		1  same as "h"
|<Tab>|		<Tab>		1  go to N newer entry in jump list
|CTRL-I|	CTRL-I		1  same as <Tab>
|<NL>|		<NL>		1  same as "j"
|<S-NL>|	<S-NL>		1  same as CTRL-F
|CTRL-J|	CTRL-J		1  same as "j"
		CTRL-K		   not used
|CTRL-L|	CTRL-L		   redraw screen
|<CR>|		<CR>		1  cursor to the first CHAR N lines lower
|<S-CR>|	<S-CR>		1  same as CTRL-F
|CTRL-M|	CTRL-M		1  same as <CR>
|CTRL-N|	CTRL-N		1  same as "j"
|CTRL-O|	CTRL-O		1  go to N older entry in jump list
|CTRL-P|	CTRL-P		1  same as "k"
		CTRL-Q		   not used, or used for terminal control flow
|CTRL-R|	CTRL-R		2  redo changes which were undone with 'u'
		CTRL-S		   not used, or used for terminal control flow
|CTRL-T|	CTRL-T		   jump to N older Tag in tag list
|CTRL-U|	CTRL-U		   scroll N lines Upwards (default: half a
				   screen)
|CTRL-V|	CTRL-V		   start blockwise Visual mode
|CTRL-W|	CTRL-W {char}	   window commands, see |CTRL-W|
|CTRL-X|	CTRL-X		2  subtract N from number at/after cursor
|CTRL-Y|	CTRL-Y		   scroll N lines downwards
|CTRL-Z|	CTRL-Z		   suspend program (or start new shell)
		CTRL-[ <Esc>	   not used
|CTRL-\_CTRL-N|	CTRL-\ CTRL-N	   go to Normal mode (no-op)
|CTRL-\_CTRL-G|	CTRL-\ CTRL-G	   go to mode specified with 'insertmode'
		CTRL-\ a - z	   reserved for extensions
		CTRL-\ others	   not used
|CTRL-]|	CTRL-]		   :ta to ident under cursor
|CTRL-^|	CTRL-^		   edit Nth alternate file (equivalent to
				   ":e #N")
		CTRL-_		   not used

|<Space>|	<Space>		1  same as "l"
|!|		!{motion}{filter}
				2  filter Nmove text through the {filter}
				   command
|!!|		!!{filter}	2  filter N lines through the {filter} command
|quote|		"{register}	   use {register} for next delete, yank or put
				   ({.%#:} only work with put)
|#|		#		1  search backward for the Nth occurrence of
				   the ident under the cursor
|$|		$		1  cursor to the end of Nth next line
|%|		%		1  find the next (curly/square) bracket on
				   this line and go to its match, or go to
				   matching comment bracket, or go to matching
				   preprocessor directive.
|N%|		{count}%	1  go to N percentage in the file
|&|		&		2  repeat last :s
|'|		'{a-zA-Z0-9}	1  cursor to the first CHAR on the line with
				   mark {a-zA-Z0-9}
|''|		''		1  cursor to the first CHAR of the line where
				   the cursor was before the latest jump.
|'(|		'(		1  cursor to the first CHAR on the line of the
				   start of the current sentence
|')|		')		1  cursor to the first CHAR on the line of the
				   end of the current sentence
|'<|		'<		1  cursor to the first CHAR of the line where
				   highlighted area starts/started in the
				   current buffer.
|'>|		'>		1  cursor to the first CHAR of the line where
				   highlighted area ends/ended in the current
				   buffer.
|'[|		'[		1  cursor to the first CHAR on the line of the
				   start of last operated text or start of put
				   text
|']|		']		1  cursor to the first CHAR on the line of the
				   end of last operated text or end of put
				   text
|'{|		'{		1  cursor to the first CHAR on the line of the
				   start of the current paragraph
|'}|		'}		1  cursor to the first CHAR on the line of the
				   end of the current paragraph
|(|		(		1  cursor N sentences backward
|)|		)		1  cursor N sentences forward
|star|		*		1  search forward for the Nth occurrence of
				   the ident under the cursor
|+|		+		1  same as <CR>
|<S-Plus>|	<S-+>		1  same as CTRL-F
|,|		,		1  repeat latest f, t, F or T in opposite
				   direction N times
|-|		-		1  cursor to the first CHAR N lines higher
|<S-Minus>|	<S-->		1  same as CTRL-B
|.|		.		2  repeat last change with count replaced with
				   N
|/|		/{pattern}<CR>	1  search forward for the Nth occurrence of
				   {pattern}
|/<CR>|		/<CR>		1  search forward for {pattern} of last search
|0|		0		1  cursor to the first char of the line
|count|		1		   prepend to command to give a count
|count|		2			"
|count|		3			"
|count|		4			"
|count|		5			"
|count|		6			"
|count|		7			"
|count|		8			"
|count|		9			"
|:|		:		1  start entering an Ex command
|N:|		{count}:	   start entering an Ex command with range
				   from current line to N-1 lines down
|;|		;		1  repeat latest f, t, F or T N times
|<|		<{motion}	2  shift Nmove lines one 'shiftwidth'
				   leftwards
|<<|		<<		2  shift N lines one 'shiftwidth' leftwards
|=|		={motion}	2  filter Nmove lines through "indent"
|==|		==		2  filter N lines through "indent"
|>|		>{motion}	2  shift Nmove lines one 'shiftwidth'
				   rightwards
|>>|		>>		2  shift N lines one 'shiftwidth' rightwards
|?|		?{pattern}<CR>	1  search backward for the Nth previous
				   occurrence of {pattern}
|?<CR>|		?<CR>		1  search backward for {pattern} of last search
|@|		@{a-z}		2  execute the contents of register {a-z}
				   N times
|@:|		@:		   repeat the previous ":" command N times
|@@|		@@		2  repeat the previous @{a-z} N times
|A|		A		2  append text after the end of the line N times
|B|		B		1  cursor N WORDS backward
|C|		["x]C		2  change from the cursor position to the end
				   of the line, and N-1 more lines [into
				   register x]; synonym for "c$"
|D|		["x]D		2  delete the characters under the cursor
				   until the end of the line and N-1 more
				   lines [into register x]; synonym for "d$"
|E|		E		1  cursor forward to the end of WORD N
|F|		F{char}		1  cursor to the Nth occurrence of {char} to
				   the left
|G|		G		1  cursor to line N, default last line
|H|		H		1  cursor to line N from top of screen
|I|		I		2  insert text before the first CHAR on the
				   line N times
|J|		J		2  Join N lines; default is 2
|K|		K		   lookup Keyword under the cursor with
				   'keywordprg'
|L|		L		1  cursor to line N from bottom of screen
|M|		M		1  cursor to middle line of screen
|N|		N		1  repeat the latest '/' or '?' N times in
				   opposite direction
|O|		O		2  begin a new line above the cursor and
				   insert text, repeat N times
|P|		["x]P		2  put the text [from register x] before the
				   cursor N times
|Q|		Q		   switch to "Ex" mode
|R|		R		2  enter replace mode: overtype existing
				   characters, repeat the entered text N-1
				   times
|S|		["x]S		2  delete N lines [into register x] and start
				   insert; synonym for "cc".
|T|		T{char}		1  cursor till after Nth occurrence of {char}
				   to the left
|U|		U		2  undo all latest changes on one line
|V|		V		   start linewise Visual mode
|W|		W		1  cursor N WORDS forward
|X|		["x]X		2  delete N characters before the cursor [into
				   register x]
|Y|		["x]Y		   yank N lines [into register x]; synonym for
				   "yy"
|ZZ|		ZZ		   write if buffer changed and close window
|ZQ|		ZQ		   close window without writing
|[|		[{char}		   square bracket command (see |[| below)
		\		   not used
|]|		]{char}		   square bracket command (see |]| below)
|^|		^		1  cursor to the first CHAR of the line
|_|		_		1  cursor to the first CHAR N - 1 lines lower
|`|		`{a-zA-Z0-9}	1  cursor to the mark {a-zA-Z0-9}
|`(|		`(		1  cursor to the start of the current sentence
|`)|		`)		1  cursor to the end of the current sentence
|`<|		`<		1  cursor to the start of the highlighted area
|`>|		`>		1  cursor to the end of the highlighted area
|`[|		`[		1  cursor to the start of last operated text
				   or start of putted text
|`]|		`]		1  cursor to the end of last operated text or
				   end of putted text
|``|		``		1  cursor to the position before latest jump
|`{|		`{		1  cursor to the start of the current paragraph
|`}|		`}		1  cursor to the end of the current paragraph
|a|		a		2  append text after the cursor N times
|b|		b		1  cursor N words backward
|c|		["x]c{motion}	2  delete Nmove text [into register x] and
				   start insert
|cc|		["x]cc		2  delete N lines [into register x] and start
				   insert
|d|		["x]d{motion}	2  delete Nmove text [into register x]
|dd|		["x]dd		2  delete N lines [into register x]
|do|		do		2  same as ":diffget"
|dp|		dp		2  same as ":diffput"
|e|		e		1  cursor forward to the end of word N
|f|		f{char}		1  cursor to Nth occurrence of {char} to the
				   right
|g|		g{char}		   extended commands, see |g| below
|h|		h		1  cursor N chars to the left
|i|		i		2  insert text before the cursor N times
|j|		j		1  cursor N lines downward
|k|		k		1  cursor N lines upward
|l|		l		1  cursor N chars to the right
|m|		m{A-Za-z}	   set mark {A-Za-z} at cursor position
|n|		n		1  repeat the latest '/' or '?' N times
|o|		o		2  begin a new line below the cursor and
				   insert text, repeat N times
|p|		["x]p		2  put the text [from register x] after the
				   cursor N times
|q|		q{0-9a-zA-Z"}	   record typed characters into named register
				   {0-9a-zA-Z"} (uppercase to append)
|q|		q		   (while recording) stops recording
|q:|		q:		   edit : command-line in command-line window
|q/|		q/		   edit / command-line in command-line window
|q?|		q?		   edit ? command-line in command-line window
|r|		r{char}		2  replace N chars with {char}
|s|		["x]s		2  (substitute) delete N characters [into
				   register x] and start insert
|t|		t{char}		1  cursor till before Nth occurrence of {char}
				   to the right
|u|		u		2  undo changes
|v|		v		   start characterwise Visual mode
|w|		w		1  cursor N words forward
|x|		["x]x		2  delete N characters under and after the
				   cursor [into register x]
|y|		["x]y{motion}	   yank Nmove text [into register x]
|yy|		["x]yy		   yank N lines [into register x]
|z|		z{char}		   commands starting with 'z', see |z| below
|{|		{		1  cursor N paragraphs backward
|bar|		|		1  cursor to column N
|}|		}		1  cursor N paragraphs forward
|~|		~		2  'tildeop' off: switch case of N characters
				   under cursor and move the cursor N
				   characters to the right
|~|		~{motion}	   'tildeop' on: switch case of Nmove text
|<C-End>|	<C-End>		1  same as "G"
|<C-Home>|	<C-Home>	1  same as "gg"
|<C-Left>|	<C-Left>	1  same as "b"
|<C-LeftMouse>|	<C-LeftMouse>	   ":ta" to the keyword at the mouse click
|<C-Right>|	<C-Right>	1  same as "w"
|<C-RightMouse>| <C-RightMouse>	   same as "CTRL-T"
|<C-Tab>|	<C-Tab>		   same as "g<Tab>"
|<Del>|		["x]<Del>	2  same as "x"
|N<Del>|	{count}<Del>	   remove the last digit from {count}
|<Down>|	<Down>		1  same as "j"
|<End>|		<End>		1  same as "$"
|<F1>|		<F1>		   same as <Help>
|<Help>|	<Help>		   open a help window
|<Home>|	<Home>		1  same as "0"
|<Insert>|	<Insert>	2  same as "i"
|<Left>|	<Left>		1  same as "h"
|<LeftMouse>|	<LeftMouse>	1  move cursor to the mouse click position
|<MiddleMouse>|	<MiddleMouse>	2  same as "gP" at the mouse click position
|<PageDown>|	<PageDown>	   same as CTRL-F
|<PageUp>|	<PageUp>	   same as CTRL-B
|<Right>|	<Right>		1  same as "l"
|<RightMouse>|	<RightMouse>	   start Visual mode, move cursor to the mouse
				   click position
|<S-Down>|	<S-Down>	1  same as CTRL-F
|<S-Left>|	<S-Left>	1  same as "b"
|<S-LeftMouse>|	<S-LeftMouse>	   same as "*" at the mouse click position
|<S-Right>|	<S-Right>	1  same as "w"
|<S-RightMouse>| <S-RightMouse>	   same as "#" at the mouse click position
|<S-Up>|	<S-Up>		1  same as CTRL-B
|<Undo>|	<Undo>		2  same as "u"
|<Up>|		<Up>		1  same as "k"
|<ScrollWheelDown>|	<ScrollWheelDown>	move window three lines down
|<S-ScrollWheelDown>|	<S-ScrollWheelDown>	move window one page down
|<ScrollWheelUp>|	<ScrollWheelUp>		move window three lines up
|<S-ScrollWheelUp>|	<S-ScrollWheelUp>	move window one page up
|<ScrollWheelLeft>|	<ScrollWheelLeft>	move window six columns left
|<S-ScrollWheelLeft>|	<S-ScrollWheelLeft>	move window one page left
|<ScrollWheelRight>|	<ScrollWheelRight>	move window six columns right
|<S-ScrollWheelRight>|	<S-ScrollWheelRight>	move window one page right

==============================================================================

2.1 Text objects						*objects*

These can be used after an operator or in Visual mode to select an object.

tag		command		   action in op-pending and Visual mode	
------------------------------------------------------------------------------
|v_aquote|	a"		   double quoted string
|v_a'|		a'		   single quoted string
|v_a(|		a(		   same as ab
|v_a)|		a)		   same as ab
|v_a<|		a<		   "a <>" from '<' to the matching '>'
|v_a>|		a>		   same as a<
|v_aB|		aB		   "a Block" from "[{" to "]}" (with brackets)
|v_aW|		aW		   "a WORD" (with white space)
|v_a[|		a[		   "a []" from '[' to the matching ']'
|v_a]|		a]		   same as a[
|v_a`|		a`		   string in backticks
|v_ab|		ab		   "a block" from "[(" to "])" (with braces)
|v_ap|		ap		   "a paragraph" (with white space)
|v_as|		as		   "a sentence" (with white space)
|v_at|		at		   "a tag block" (with white space)
|v_aw|		aw		   "a word" (with white space)
|v_a{|		a{		   same as aB
|v_a}|		a}		   same as aB
|v_iquote|	i"		   double quoted string without the quotes
|v_i'|		i'		   single quoted string without the quotes
|v_i(|		i(		   same as ib
|v_i)|		i)		   same as ib
|v_i<|		i<		   "inner <>" from '<' to the matching '>'
|v_i>|		i>		   same as i<
|v_iB|		iB		   "inner Block" from "[{" and "]}"
|v_iW|		iW		   "inner WORD"
|v_i[|		i[		   "inner []" from '[' to the matching ']'
|v_i]|		i]		   same as i[
|v_i`|		i`		   string in backticks without the backticks
|v_ib|		ib		   "inner block" from "[(" to "])"
|v_ip|		ip		   "inner paragraph"
|v_is|		is		   "inner sentence"
|v_it|		it		   "inner tag block"
|v_iw|		iw		   "inner word"
|v_i{|		i{		   same as iB
|v_i}|		i}		   same as iB

==============================================================================

2.2 Window commands						*CTRL-W*

tag		command		   action in Normal mode	
------------------------------------------------------------------------------
|CTRL-W_CTRL-B|	CTRL-W CTRL-B	   same as "CTRL-W b"
|CTRL-W_CTRL-C|	CTRL-W CTRL-C	   no-op
|CTRL-W_CTRL-D|	CTRL-W CTRL-D	   same as "CTRL-W d"
|CTRL-W_CTRL-F|	CTRL-W CTRL-F	   same as "CTRL-W f"
		CTRL-W CTRL-G	   same as "CTRL-W g .."
|CTRL-W_CTRL-H|	CTRL-W CTRL-H	   same as "CTRL-W h"
|CTRL-W_CTRL-I|	CTRL-W CTRL-I	   same as "CTRL-W i"
|CTRL-W_CTRL-J|	CTRL-W CTRL-J	   same as "CTRL-W j"
|CTRL-W_CTRL-K|	CTRL-W CTRL-K	   same as "CTRL-W k"
|CTRL-W_CTRL-L|	CTRL-W CTRL-L	   same as "CTRL-W l"
|CTRL-W_CTRL-N|	CTRL-W CTRL-N	   same as "CTRL-W n"
|CTRL-W_CTRL-O|	CTRL-W CTRL-O	   same as "CTRL-W o"
|CTRL-W_CTRL-P|	CTRL-W CTRL-P	   same as "CTRL-W p"
|CTRL-W_CTRL-Q|	CTRL-W CTRL-Q	   same as "CTRL-W q"
|CTRL-W_CTRL-R|	CTRL-W CTRL-R	   same as "CTRL-W r"
|CTRL-W_CTRL-S|	CTRL-W CTRL-S	   same as "CTRL-W s"
|CTRL-W_CTRL-T|	CTRL-W CTRL-T	   same as "CTRL-W t"
|CTRL-W_CTRL-V|	CTRL-W CTRL-V	   same as "CTRL-W v"
|CTRL-W_CTRL-W|	CTRL-W CTRL-W	   same as "CTRL-W w"
|CTRL-W_CTRL-X|	CTRL-W CTRL-X	   same as "CTRL-W x"
|CTRL-W_CTRL-Z|	CTRL-W CTRL-Z	   same as "CTRL-W z"
|CTRL-W_CTRL-]|	CTRL-W CTRL-]	   same as "CTRL-W ]"
|CTRL-W_CTRL-^|	CTRL-W CTRL-^	   same as "CTRL-W ^"
|CTRL-W_CTRL-_|	CTRL-W CTRL-_	   same as "CTRL-W _"
|CTRL-W_+|	CTRL-W +	   increase current window height N lines
|CTRL-W_-|	CTRL-W -	   decrease current window height N lines
|CTRL-W_:|	CTRL-W :	   same as |:|, edit a command line
|CTRL-W_<|	CTRL-W <	   decrease current window width N columns
|CTRL-W_=|	CTRL-W =	   make all windows the same height & width
|CTRL-W_>|	CTRL-W >	   increase current window width N columns
|CTRL-W_H|	CTRL-W H	   move current window to the far left
|CTRL-W_J|	CTRL-W J	   move current window to the very bottom
|CTRL-W_K|	CTRL-W K	   move current window to the very top
|CTRL-W_L|	CTRL-W L	   move current window to the far right
|CTRL-W_P|	CTRL-W P	   go to preview window
|CTRL-W_R|	CTRL-W R	   rotate windows upwards N times
|CTRL-W_S|	CTRL-W S	   same as "CTRL-W s"
|CTRL-W_T|	CTRL-W T	   move current window to a new tab page
|CTRL-W_W|	CTRL-W W	   go to N previous window (wrap around)
|CTRL-W_]|	CTRL-W ]	   split window and jump to tag under cursor
|CTRL-W_^|	CTRL-W ^	   split current window and edit alternate
				   file N
|CTRL-W__|	CTRL-W _	   set current window height to N (default:
				   very high)
|CTRL-W_b|	CTRL-W b	   go to bottom window
|CTRL-W_c|	CTRL-W c	   close current window (like |:close|)
|CTRL-W_d|	CTRL-W d	   split window and jump to definition under
				   the cursor
|CTRL-W_f|	CTRL-W f	   split window and edit file name under the
				   cursor
|CTRL-W_F|	CTRL-W F	   split window and edit file name under the
				   cursor and jump to the line number
				   following the file name.
|CTRL-W_g_CTRL-]| CTRL-W g CTRL-]  split window and do |:tjump| to tag under
				   cursor
|CTRL-W_g]|	CTRL-W g ]	   split window and do |:tselect| for tag
				   under cursor
|CTRL-W_g}|	CTRL-W g }	   do a |:ptjump| to the tag under the cursor
|CTRL-W_gf|	CTRL-W g f	   edit file name under the cursor in a new
				   tab page
|CTRL-W_gF|	CTRL-W g F	   edit file name under the cursor in a new
				   tab page and jump to the line number
				   following the file name.
|CTRL-W_gt|	CTRL-W g t	   same as `gt`: go to next tab page
|CTRL-W_gT|	CTRL-W g T	   same as `gT`: go to previous tab page
|CTRL-W_g<Tab>|	CTRL-W g <Tab>	   same as |g<Tab>|: go to last accessed tab
				   page.
|CTRL-W_h|	CTRL-W h	   go to Nth left window (stop at first window)
|CTRL-W_i|	CTRL-W i	   split window and jump to declaration of
				   identifier under the cursor
|CTRL-W_j|	CTRL-W j	   go N windows down (stop at last window)
|CTRL-W_k|	CTRL-W k	   go N windows up (stop at first window)
|CTRL-W_l|	CTRL-W l	   go to Nth right window (stop at last window)
|CTRL-W_n|	CTRL-W n	   open new window, N lines high
|CTRL-W_o|	CTRL-W o	   close all but current window (like |:only|)
|CTRL-W_p|	CTRL-W p	   go to previous (last accessed) window
|CTRL-W_q|	CTRL-W q	   quit current window (like |:quit|)
|CTRL-W_r|	CTRL-W r	   rotate windows downwards N times
|CTRL-W_s|	CTRL-W s	   split current window in two parts, new
				   window N lines high
|CTRL-W_t|	CTRL-W t	   go to top window
|CTRL-W_v|	CTRL-W v	   split current window vertically, new window
				   N columns wide
|CTRL-W_w|	CTRL-W w	   go to N next window (wrap around)
|CTRL-W_x|	CTRL-W x	   exchange current window with window N
				   (default: next window)
|CTRL-W_z|	CTRL-W z	   close preview window
|CTRL-W_bar|	CTRL-W |	   set window width to N columns
|CTRL-W_}|	CTRL-W }	   show tag under cursor in preview window
|CTRL-W_<Down>|	CTRL-W <Down>	   same as "CTRL-W j"
|CTRL-W_<Up>|	CTRL-W <Up>	   same as "CTRL-W k"
|CTRL-W_<Left>|	CTRL-W <Left>	   same as "CTRL-W h"
|CTRL-W_<Right>| CTRL-W <Right>	   same as "CTRL-W l"

==============================================================================

2.3 Square bracket commands					*[* *]*

tag		char	      note action in Normal mode	
------------------------------------------------------------------------------
|[_CTRL-D|	[ CTRL-D	   jump to first #define found in current and
				   included files matching the word under the
				   cursor, start searching at beginning of
				   current file
|[_CTRL-I|	[ CTRL-I	   jump to first line in current and included
				   files that contains the word under the
				   cursor, start searching at beginning of
				   current file
|[#|		[#		1  cursor to N previous unmatched #if, #else
				   or #ifdef
|['|		['		1  cursor to previous lowercase mark, on first
				   non-blank
|[(|		[(		1  cursor N times back to unmatched '('
|[star|		[*		1  same as "[/"
|[`|		[`		1  cursor to previous lowercase mark
|[/|		[/		1  cursor to N previous start of a C comment
|[D|		[D		   list all defines found in current and
				   included files matching the word under the
				   cursor, start searching at beginning of
				   current file
|[I|		[I		   list all lines found in current and
				   included files that contain the word under
				   the cursor, start searching at beginning of
				   current file
|[P|		[P		2  same as "[p"
|[[|		[[		1  cursor N sections backward
|[]|		[]		1  cursor N SECTIONS backward
|[c|		[c		1  cursor N times backwards to start of change
|[d|		[d		   show first #define found in current and
				   included files matching the word under the
				   cursor, start searching at beginning of
				   current file
|[f|		[f		   same as "gf"
|[i|		[i		   show first line found in current and
				   included files that contains the word under
				   the cursor, start searching at beginning of
				   current file
|[m|		[m		1  cursor N times back to start of member
				   function
|[p|		[p		2  like "P", but adjust indent to current line
|[s|		[s		1  move to the previous misspelled word
|[z|		[z		1  move to start of open fold
|[{|		[{		1  cursor N times back to unmatched '{'
|[<MiddleMouse>| [<MiddleMouse>	2  same as "[p"

|]_CTRL-D|	] CTRL-D	   jump to first #define found in current and
				   included files matching the word under the
				   cursor, start searching at cursor position
|]_CTRL-I|	] CTRL-I	   jump to first line in current and included
				   files that contains the word under the
				   cursor, start searching at cursor position
|]#|		]#		1  cursor to N next unmatched #endif or #else
|]'|		]'		1  cursor to next lowercase mark, on first
				   non-blank
|])|		])		1  cursor N times forward to unmatched ')'
|]star|		]*		1  same as "]/"
|]`|		]`		1  cursor to next lowercase mark
|]/|		]/		1  cursor to N next end of a C comment
|]D|		]D		   list all #defines found in current and
				   included files matching the word under the
				   cursor, start searching at cursor position
|]I|		]I		   list all lines found in current and
				   included files that contain the word under
				   the cursor, start searching at cursor
				   position
|]P|		]P		2  same as "[p"
|][|		][		1  cursor N SECTIONS forward
|]]|		]]		1  cursor N sections forward
|]c|		]c		1  cursor N times forward to start of change
|]d|		]d		   show first #define found in current and
				   included files matching the word under the
				   cursor, start searching at cursor position
|]f|		]f		   same as "gf"
|]i|		]i		   show first line found in current and
				   included files that contains the word under
				   the cursor, start searching at cursor
				   position
|]m|		]m		1  cursor N times forward to end of member
				   function
|]p|		]p		2  like "p", but adjust indent to current line
|]s|		]s		1  move to next misspelled word
|]z|		]z		1  move to end of open fold
|]}|		]}		1  cursor N times forward to unmatched '}'
|]<MiddleMouse>| ]<MiddleMouse>	2  same as "]p"

==============================================================================

2.4 Commands starting with 'g'						*g*

tag		char	      note action in Normal mode	
------------------------------------------------------------------------------
|g_CTRL-A|	g CTRL-A	   only when compiled with MEM_PROFILE
				   defined: dump a memory profile
|g_CTRL-G|	g CTRL-G	   show information about current cursor
				   position
|g_CTRL-H|	g CTRL-H	   start Select block mode
|g_CTRL-]|	g CTRL-]	   |:tjump| to the tag under the cursor
|g#|		g#		1  like "#", but without using "\<" and "\>"
|g$|		g$		1  when 'wrap' off go to rightmost character of
				   the current line that is on the screen;
				   when 'wrap' on go to the rightmost character
				   of the current screen line
|g&|		g&		2  repeat last ":s" on all lines
|g'|		g'{mark}	1  like |'| but without changing the jumplist
|g`|		g`{mark}	1  like |`| but without changing the jumplist
|gstar|		g*		1  like "*", but without using "\<" and "\>"
|g+|		g+		   go to newer text state N times
|g,|		g,		1  go to N newer position in change list
|g-|		g-		   go to older text state N times
|g0|		g0		1  when 'wrap' off go to leftmost character of
				   the current line that is on the screen;
				   when 'wrap' on go to the leftmost character
				   of the current screen line
|g8|		g8		   print hex value of bytes used in UTF-8
				   character under the cursor
|g;|		g;		1  go to N older position in change list
|g<|		g<		   display previous command output
|g?|		g?		2  Rot13 encoding operator
|g?g?|		g??		2  Rot13 encode current line
|g?g?|		g?g?		2  Rot13 encode current line
|gD|		gD		1  go to definition of word under the cursor
				   in current file
|gE|		gE		1  go backwards to the end of the previous
				   WORD
|gH|		gH		   start Select line mode
|gI|		gI		2  like "I", but always start in column 1
|gJ|		gJ		2  join lines without inserting space
|gN|		gN	      1,2  find the previous match with the last used
				   search pattern and Visually select it
|gP|		["x]gP		2  put the text [from register x] before the
				   cursor N times, leave the cursor after it
|gQ|		gQ		   switch to "Ex" mode with Vim editing
|gR|		gR		2  enter Virtual Replace mode
|gT|		gT		   go to the previous tab page
|gU|		gU{motion}	2  make Nmove text uppercase
|gV|		gV		   don't reselect the previous Visual area
				   when executing a mapping or menu in Select
				   mode
|g]|		g]		   :tselect on the tag under the cursor
|g^|		g^		1  when 'wrap' off go to leftmost non-white
				   character of the current line that is on
				   the screen; when 'wrap' on go to the
				   leftmost non-white character of the current
				   screen line
|g_|		g_		1  cursor to the last CHAR N - 1 lines lower
|ga|		ga		   print ascii value of character under the
				   cursor
|gd|		gd		1  go to definition of word under the cursor
				   in current function
|ge|		ge		1  go backwards to the end of the previous
				   word
|gf|		gf		   start editing the file whose name is under
				   the cursor
|gF|		gF		   start editing the file whose name is under
				   the cursor and jump to the line number
				   following the filename.
|gg|		gg		1  cursor to line N, default first line
|gh|		gh		   start Select mode
|gi|		gi		2  like "i", but first move to the |'^| mark
|gj|		gj		1  like "j", but when 'wrap' on go N screen
				   lines down
|gk|		gk		1  like "k", but when 'wrap' on go N screen
				   lines up
|gm|		gm		1  go to character at middle of the screenline
|gM|		gM		1  go to character at middle of the text line
|gn|		gn	      1,2  find the next match with the last used
				   search pattern and Visually select it
|go|		go		1  cursor to byte N in the buffer
|gp|		["x]gp		2  put the text [from register x] after the
				   cursor N times, leave the cursor after it
|gq|		gq{motion}	2  format Nmove text
|gr|		gr{char}	2  virtual replace N chars with {char}
|gs|		gs		   go to sleep for N seconds (default 1)
|gt|		gt		   go to the next tab page
|gu|		gu{motion}	2  make Nmove text lowercase
|gv|		gv		   reselect the previous Visual area
|gw|		gw{motion}	2  format Nmove text and keep cursor
|g@|		g@{motion}	   call 'operatorfunc'
|g~|		g~{motion}	2  swap case for Nmove text
|g<Down>|	g<Down>		1  same as "gj"
|g<End>|	g<End>		1  same as "g$" but go to the rightmost
				   non-blank character instead
|g<Home>|	g<Home>		1  same as "g0"
|g<LeftMouse>|	g<LeftMouse>	   same as <C-LeftMouse>
		g<MiddleMouse>	   same as <C-MiddleMouse>
|g<RightMouse>|	g<RightMouse>	   same as <C-RightMouse>
|g<Tab>|	g<Tab>		   go to the last accessed tab page.
|g<Up>|		g<Up>		1  same as "gk"

==============================================================================

2.5 Commands starting with 'z'						*z*

tag		char	      note action in Normal mode	
------------------------------------------------------------------------------
|z<CR>|		z<CR>		   redraw, cursor line to top of window,
				   cursor on first non-blank
|zN<CR>|	z{height}<CR>	   redraw, make window {height} lines high
|z+|		z+		   cursor on line N (default line below
				   window), otherwise like "z<CR>"
|z-|		z-		   redraw, cursor line at bottom of window,
				   cursor on first non-blank
|z.|		z.		   redraw, cursor line to center of window,
				   cursor on first non-blank
|z=|		z=		   give spelling suggestions
|zA|		zA		   open a closed fold or close an open fold
				   recursively
|zC|		zC		   close folds recursively
|zD|		zD		   delete folds recursively
|zE|		zE		   eliminate all folds
|zF|		zF		   create a fold for N lines
|zG|		zG		   temporarily mark word as correctly spelled
|zH|		zH		   when 'wrap' off scroll half a screenwidth
				   to the right
|zL|		zL		   when 'wrap' off scroll half a screenwidth
				   to the left
|zM|		zM		   set 'foldlevel' to zero
|zN|		zN		   set 'foldenable'
|zO|		zO		   open folds recursively
|zR|		zR		   set 'foldlevel' to the deepest fold
|zW|		zW		   temporarily mark word as incorrectly spelled
|zX|		zX		   re-apply 'foldlevel'
|z^|		z^		   cursor on line N (default line above
				   window), otherwise like "z-"
|za|		za		   open a closed fold, close an open fold
|zb|		zb		   redraw, cursor line at bottom of window
|zc|		zc		   close a fold
|zd|		zd		   delete a fold
|ze|		ze		   when 'wrap' off scroll horizontally to
				   position the cursor at the end (right side)
				   of the screen
|zf|		zf{motion}	   create a fold for Nmove text
|zg|		zg		   permanently mark word as correctly spelled
|zh|		zh		   when 'wrap' off scroll screen N characters
				   to the right
|zi|		zi		   toggle 'foldenable'
|zj|		zj		1  move to the start of the next fold
|zk|		zk		1  move to the end of the previous fold
|zl|		zl		   when 'wrap' off scroll screen N characters
				   to the left
|zm|		zm		   subtract one from 'foldlevel'
|zn|		zn		   reset 'foldenable'
|zo|		zo		   open fold
|zp|		zp		   paste in block-mode without trailing spaces
|zP|		zP		   paste in block-mode without trailing spaces
|zr|		zr		   add one to 'foldlevel'
|zs|		zs		   when 'wrap' off scroll horizontally to
				   position the cursor at the start (left
				   side) of the screen
|zt|		zt		   redraw, cursor line at top of window
|zuw|		zuw		   undo |zw|
|zug|		zug		   undo |zg|
|zuW|		zuW		   undo |zW|
|zuG|		zuG		   undo |zG|
|zv|		zv		   open enough folds to view the cursor line
|zw|		zw		   permanently mark word as incorrectly spelled
|zx|		zx		   re-apply 'foldlevel' and do "zv"
|zy|		zy		   yank without trailing spaces
|zz|		zz		   redraw, cursor line at center of window
|z<Left>|	z<Left>		   same as "zh"
|z<Right>|	z<Right>	   same as "zl"

==============================================================================

2.6 Operator-pending mode			*operator-pending-index*

These can be used after an operator, but before a {motion} has been entered.

tag		char		action in Operator-pending mode	
|o_v|		v		force operator to work characterwise
|o_V|		V		force operator to work linewise
|o_CTRL-V|	CTRL-V		force operator to work blockwise

==============================================================================

3. Visual mode						*visual-index*

Most commands in Visual mode are the same as in Normal mode.  The ones listed
here are those that are different.

tag		command	      note action in Visual mode	
------------------------------------------------------------------------------
|v_CTRL-\_CTRL-N| CTRL-\ CTRL-N	   stop Visual mode
|v_CTRL-\_CTRL-G| CTRL-\ CTRL-G	   go to mode specified with 'insertmode'
|v_CTRL-A|	CTRL-A		2  add N to number in highlighted text
|v_CTRL-C|	CTRL-C		   stop Visual mode
|v_CTRL-G|	CTRL-G		   toggle between Visual mode and Select mode
|v_<BS>|	<BS>		2  Select mode: delete highlighted area
|v_CTRL-H|	CTRL-H		2  same as <BS>
|v_CTRL-O|	CTRL-O		   switch from Select to Visual mode for one
				   command
|v_CTRL-V|	CTRL-V		   make Visual mode blockwise or stop Visual
				   mode
|v_CTRL-X|	CTRL-X		2  subtract N from number in highlighted text
|v_<Esc>|	<Esc>		   stop Visual mode
|v_CTRL-]|	CTRL-]		   jump to highlighted tag
|v_!|		!{filter}	2  filter the highlighted lines through the
				   external command {filter}
|v_:|		:		   start a command-line with the highlighted
				   lines as a range
|v_<|		<		2  shift the highlighted lines one
				   'shiftwidth' left
|v_=|		=		2  filter the highlighted lines through the
				   external program given with the 'equalprg'
				   option
|v_>|		>		2  shift the highlighted lines one
				   'shiftwidth' right
|v_b_A|		A		2  block mode: append same text in all lines,
				   after the highlighted area
|v_C|		C		2  delete the highlighted lines and start
				   insert
|v_D|		D		2  delete the highlighted lines
|v_b_I|		I		2  block mode: insert same text in all lines,
				   before the highlighted area
|v_J|		J		2  join the highlighted lines
|v_K|		K		   run 'keywordprg' on the highlighted area
|v_O|		O		   move horizontally to other corner of area
|v_P|		P		   replace highlighted area with register
				   contents; registers are unchanged
		Q		   does not start Ex mode
|v_R|		R		2  delete the highlighted lines and start
				   insert
|v_S|		S		2  delete the highlighted lines and start
				   insert
|v_U|		U		2  make highlighted area uppercase
|v_V|		V		   make Visual mode linewise or stop Visual
				   mode
|v_X|		X		2  delete the highlighted lines
|v_Y|		Y		   yank the highlighted lines
|v_aquote|	a"		   extend highlighted area with a double
				   quoted string
|v_a'|		a'		   extend highlighted area with a single
				   quoted string
|v_a(|		a(		   same as ab
|v_a)|		a)		   same as ab
|v_a<|		a<		   extend highlighted area with a <> block
|v_a>|		a>		   same as a<
|v_aB|		aB		   extend highlighted area with a {} block
|v_aW|		aW		   extend highlighted area with "a WORD"
|v_a[|		a[		   extend highlighted area with a [] block
|v_a]|		a]		   same as a[
|v_a`|		a`		   extend highlighted area with a backtick
				   quoted string
|v_ab|		ab		   extend highlighted area with a () block
|v_ap|		ap		   extend highlighted area with a paragraph
|v_as|		as		   extend highlighted area with a sentence
|v_at|		at		   extend highlighted area with a tag block
|v_aw|		aw		   extend highlighted area with "a word"
|v_a{|		a{		   same as aB
|v_a}|		a}		   same as aB
|v_c|		c		2  delete highlighted area and start insert
|v_d|		d		2  delete highlighted area
|v_g_CTRL-A|	g CTRL-A	2  add N to number in highlighted text
|v_g_CTRL-X|	g CTRL-X	2  subtract N from number in highlighted text
|v_gJ|		gJ		2  join the highlighted lines without
				   inserting spaces
|v_gq|		gq		2  format the highlighted lines
|v_gv|		gv		   exchange current and previous highlighted
				   area
|v_iquote|	i"		   extend highlighted area with a double
				   quoted string (without quotes)
|v_i'|		i'		   extend highlighted area with a single
				   quoted string (without quotes)
|v_i(|		i(		   same as ib
|v_i)|		i)		   same as ib
|v_i<|		i<		   extend highlighted area with inner <> block
|v_i>|		i>		   same as i<
|v_iB|		iB		   extend highlighted area with inner {} block
|v_iW|		iW		   extend highlighted area with "inner WORD"
|v_i[|		i[		   extend highlighted area with inner [] block
|v_i]|		i]		   same as i[
|v_i`|		i`		   extend highlighted area with a backtick
				   quoted string (without the backticks)
|v_ib|		ib		   extend highlighted area with inner () block
|v_ip|		ip		   extend highlighted area with inner paragraph
|v_is|		is		   extend highlighted area with inner sentence
|v_it|		it		   extend highlighted area with inner tag block
|v_iw|		iw		   extend highlighted area with "inner word"
|v_i{|		i{		   same as iB
|v_i}|		i}		   same as iB
|v_o|		o		   move cursor to other corner of area
|v_p|		p		   replace highlighted area with register
				   contents; deleted text in unnamed register
|v_r|		r		2  replace highlighted area with a character
|v_s|		s		2  delete highlighted area and start insert
|v_u|		u		2  make highlighted area lowercase
|v_v|		v		   make Visual mode characterwise or stop
				   Visual mode
|v_x|		x		2  delete the highlighted area
|v_y|		y		   yank the highlighted area
|v_~|		~		2  swap case for the highlighted area

==============================================================================

4. Command-line editing					*ex-edit-index*

Get to the command-line with the ':', '!', '/' or '?' commands.
Normal characters are inserted at the current cursor position.
"Completion" below refers to context-sensitive completion.  It will complete
file names, tags, commands etc. as appropriate.

tag		command		action in Command-line editing mode	
------------------------------------------------------------------------------
		CTRL-@		not used
|c_CTRL-A|	CTRL-A		do completion on the pattern in front of the
				cursor and insert all matches
|c_CTRL-B|	CTRL-B		cursor to begin of command-line
|c_CTRL-C|	CTRL-C		same as <Esc>
|c_CTRL-D|	CTRL-D		list completions that match the pattern in
				front of the cursor
|c_CTRL-E|	CTRL-E		cursor to end of command-line
'cedit'		CTRL-F		default value for 'cedit': opens the
				command-line window; otherwise not used
|c_CTRL-G|	CTRL-G		next match when 'incsearch' is active
|c_<BS>|	<BS>		delete the character in front of the cursor
|c_digraph|	{char1} <BS> {char2}
				enter digraph when 'digraph' is on
|c_CTRL-H|	CTRL-H		same as <BS>
|c_<Tab>|	<Tab>		if 'wildchar' is <Tab>: Do completion on
				the pattern in front of the cursor
|c_<S-Tab>|	<S-Tab>		same as CTRL-P
|c_wildchar|	'wildchar'	Do completion on the pattern in front of the
				cursor (default: <Tab>)
|c_CTRL-I|	CTRL-I		same as <Tab>
|c_<NL>|	<NL>		same as <CR>
|c_CTRL-J|	CTRL-J		same as <CR>
|c_CTRL-K|	CTRL-K {char1} {char2}
				enter digraph
|c_CTRL-L|	CTRL-L		do completion on the pattern in front of the
				cursor and insert the longest common part
|c_<CR>|	<CR>		execute entered command
|c_CTRL-M|	CTRL-M		same as <CR>
|c_CTRL-N|	CTRL-N		after using 'wildchar' with multiple matches:
				go to next match, otherwise: recall older
				command-line from history.
		CTRL-O		not used
|c_CTRL-P|	CTRL-P		after using 'wildchar' with multiple matches:
				go to previous match, otherwise: recall older
				command-line from history.
|c_CTRL-Q|	CTRL-Q		same as CTRL-V, unless it's used for terminal
				control flow
|c_CTRL-R|	CTRL-R {regname}
				insert the contents of a register or object
				under the cursor as if typed
|c_CTRL-R_CTRL-R| CTRL-R CTRL-R {regname}
|c_CTRL-R_CTRL-O| CTRL-R CTRL-O {regname}
				insert the contents of a register or object
				under the cursor literally
		CTRL-S		not used, or used for terminal control flow
|c_CTRL-T|	CTRL-T		previous match when 'incsearch' is active
|c_CTRL-U|	CTRL-U		remove all characters
|c_CTRL-V|	CTRL-V		insert next non-digit literally, insert three
				digit decimal number as a single byte.
|c_CTRL-W|	CTRL-W		delete the word in front of the cursor
		CTRL-X		not used (reserved for completion)
		CTRL-Y		copy (yank) modeless selection
		CTRL-Z		not used (reserved for suspend)
|c_<Esc>|	<Esc>		abandon command-line without executing it
|c_CTRL-[|	CTRL-[		same as <Esc>
|c_CTRL-\_CTRL-N| CTRL-\ CTRL-N	go to Normal mode, abandon command-line
|c_CTRL-\_CTRL-G| CTRL-\ CTRL-G	go to mode specified with 'insertmode',
				abandon command-line
		CTRL-\ a - d	reserved for extensions
|c_CTRL-\_e|	CTRL-\ e {expr} replace the command line with the result of
				{expr}
		CTRL-\ f - z	reserved for extensions
		CTRL-\ others	not used
|c_CTRL-]|	CTRL-]		trigger abbreviation
|c_CTRL-^|	CTRL-^		toggle use of |:lmap| mappings
|c_CTRL-_|	CTRL-_		when 'allowrevins' set: change language
				(Hebrew, Farsi)
|c_<Del>|	<Del>		delete the character under the cursor

|c_<Left>|	<Left>		cursor left
|c_<S-Left>|	<S-Left>	cursor one word left
|c_<C-Left>|	<C-Left>	cursor one word left
|c_<Right>|	<Right>		cursor right
|c_<S-Right>|	<S-Right>	cursor one word right
|c_<C-Right>|	<C-Right>	cursor one word right
|c_<Up>|	<Up>		recall previous command-line from history that
				matches pattern in front of the cursor
|c_<S-Up>|	<S-Up>		recall previous command-line from history
|c_<Down>|	<Down>		recall next command-line from history that
				matches pattern in front of the cursor
|c_<S-Down>|	<S-Down>	recall next command-line from history
|c_<Home>|	<Home>		cursor to start of command-line
|c_<End>|	<End>		cursor to end of command-line
|c_<PageDown>|	<PageDown>	same as <S-Down>
|c_<PageUp>|	<PageUp>	same as <S-Up>
|c_<Insert>|	<Insert>	toggle insert/overstrike mode
|c_<LeftMouse>|	<LeftMouse>	cursor at mouse click

commands in wildmenu mode (see 'wildmenu')

		<Up>		move up to parent / select the previous match
		<Down>		move down to submenu / select the next match
		<Left>		select the previous match / move up to parent
		<Right>		select the next match / move down to submenu
		<CR>		move into submenu when doing menu completion
		CTRL-E		stop completion and go back to original text
		CTRL-Y		accept selected match and stop completion
		other		stop completion and insert the typed character

commands in wildmenu mode with 'wildoptions' set to "pum"

		<PageUp>	select a match several entries back
		<PageDown>	select a match several entries forward

==============================================================================

5. Terminal-Job mode				*terminal-job-index*

Most Normal mode commands except for window commands (|CTRL-W|) do not work in
a terminal window. Switch to Terminal-Normal mode to use them.
This assumes 'termwinkey' is not set.

tag		char		action in Terminal-Job mode	
|t_CTRL-\_CTRL-N| CTRL-\ CTRL-N	switch to Terminal-Normal mode
|t_CTRL-W_N|	CTRL-W N	switch to Terminal-Normal mode
|t_CTRL-W_:|	CTRL-W :	enter an Ex command
|t_CTRL-W_.|	CTRL-W .	type CTRL-W in the terminal
		CTRL-W CTRL-\	send a CTRL-\ to the job in the terminal
|t_CTRL-W_quote|  CTRL-W " {register}
				paste register in the terminal
|t_CTRL-W_CTRL-C| CTRL-W CTRL-C	forcefully ends the job
|t_CTRL-W_CTRL-W| CTRL-W CTRL-W	move focus to the next window
|t_CTRL-W_gt|	CTRL-W gt	go to next tabpage, same as `gt`
|t_CTRL-W_gT|	CTRL-W gT	go to previous tabpage, same as `gT`


You found it, Arthur!				*holy-grail* *:smile*

==============================================================================

6. EX commands					*ex-cmd-index* *:index*

This is a brief but complete listing of all the ":" commands, without
mentioning any arguments.  The optional part of the command name is inside [].
The commands are sorted on the non-optional part of their name.

tag		command		action 
------------------------------------------------------------------------------
|:|		:		nothing
|:range|	:{range}	go to last line in {range}
|:!|		:!		filter lines or execute an external command
|:!!|		:!!		repeat last ":!" command
|:#|		:#		same as ":number"
|:&|		:&		repeat last ":substitute"
|:star|		:*		use the last Visual area, like :'<,'>
|:<|		:<		shift lines one 'shiftwidth' left
|:=|		:=		print the last line number
|:>|		:>		shift lines one 'shiftwidth' right
|:@|		:@		execute contents of a register
|:@@|		:@@		repeat the previous ":@"
|:2match|	:2mat[ch]	define a second match to highlight
|:3match|	:3mat[ch]	define a third match to highlight
|:Next|		:N[ext]		go to previous file in the argument list
|:Print|	:P[rint]	print lines
|:X|		:X		ask for encryption key
|:append|	:a[ppend]	append text
|:abbreviate|	:ab[breviate]	enter abbreviation
|:abclear|	:abc[lear]	remove all abbreviations
|:aboveleft|	:abo[veleft]	make split window appear left or above
|:abstract|	:abstract	declare a Vim9 abstract class
|:all|		:al[l]		open a window for each file in the argument
				list
|:amenu|	:am[enu]	enter new menu item for all modes
|:anoremenu|	:an[oremenu]	enter a new menu for all modes that will not
				be remapped
|:args|		:ar[gs]		print the argument list
|:argadd|	:arga[dd]	add items to the argument list
|:argdedupe|	:argded[upe]	remove duplicates from the argument list
|:argdelete|	:argd[elete]	delete items from the argument list
|:argedit|	:arge[dit]	add item to the argument list and edit it
|:argdo|	:argdo		do a command on all items in the argument list
|:argglobal|	:argg[lobal]	define the global argument list
|:arglocal|	:argl[ocal]	define a local argument list
|:argument|	:argu[ment]	go to specific file in the argument list
|:ascii|	:as[cii]	print ascii value of character under the cursor
|:autocmd|	:au[tocmd]	enter or show autocommands
|:augroup|	:aug[roup]	select the autocommand group to use
|:aunmenu|	:aun[menu]	remove menu for all modes
|:buffer|	:b[uffer]	go to specific buffer in the buffer list
|:bNext|	:bN[ext]	go to previous buffer in the buffer list
|:ball|		:ba[ll]		open a window for each buffer in the buffer list
|:badd|		:bad[d]		add buffer to the buffer list
|:balt|		:balt		like ":badd" but also set the alternate file
|:bdelete|	:bd[elete]	remove a buffer from the buffer list
|:behave|	:be[have]	set mouse and selection behavior
|:belowright|	:bel[owright]	make split window appear right or below
|:bfirst|	:bf[irst]	go to first buffer in the buffer list
|:blast|	:bl[ast]	go to last buffer in the buffer list
|:bmodified|	:bm[odified]	go to next buffer in the buffer list that has
				been modified
|:bnext|	:bn[ext]	go to next buffer in the buffer list
|:botright|	:bo[tright]	make split window appear at bottom or far right
|:bprevious|	:bp[revious]	go to previous buffer in the buffer list
|:brewind|	:br[ewind]	go to first buffer in the buffer list
|:break|	:brea[k]	break out of while loop
|:breakadd|	:breaka[dd]	add a debugger breakpoint
|:breakdel|	:breakd[el]	delete a debugger breakpoint
|:breaklist|	:breakl[ist]	list debugger breakpoints
|:browse|	:bro[wse]	use file selection dialog
|:bufdo|	:bufd[o]	execute command in each listed buffer
|:buffers|	:buffers	list all files in the buffer list
|:bunload|	:bun[load]	unload a specific buffer
|:bwipeout|	:bw[ipeout]	really delete a buffer
|:change|	:c[hange]	replace a line or series of lines
|:cNext|	:cN[ext]	go to previous error
|:cNfile|	:cNf[ile]	go to last error in previous file
|:cabbrev|	:ca[bbrev]	like ":abbreviate" but for Command-line mode
|:cabclear|	:cabc[lear]	clear all abbreviations for Command-line mode
|:cabove|	:cabo[ve]	go to error above current line
|:caddbuffer|	:cad[dbuffer]	add errors from buffer
|:caddexpr|	:cadde[xpr]	add errors from expr
|:caddfile|	:caddf[ile]	add error message to current quickfix list
|:cafter|	:caf[ter]	go to error after current cursor
|:call|		:cal[l]		call a function
|:catch|	:cat[ch]	part of a :try command
|:cbefore|	:cbe[fore]	go to error before current cursor
|:cbelow|	:cbel[ow]	go to error below current line
|:cbottom|	:cbo[ttom]	scroll to the bottom of the quickfix window
|:cbuffer|	:cb[uffer]	parse error messages and jump to first error
|:cc|		:cc		go to specific error
|:cclose|	:ccl[ose]	close quickfix window
|:cd|		:cd		change directory
|:cdo|		:cdo		execute command in each valid error list entry
|:cfdo|		:cfd[o]		execute command in each file in error list
|:center|	:ce[nter]	format lines at the center
|:cexpr|	:cex[pr]	read errors from expr and jump to first
|:cfile|	:cf[ile]	read file with error messages and jump to first
|:cfirst|	:cfir[st]	go to the specified error, default first one
|:cgetbuffer|	:cgetb[uffer]	get errors from buffer
|:cgetexpr|	:cgete[xpr]	get errors from expr
|:cgetfile|	:cg[etfile]	read file with error messages
|:changes|	:changes	print the change list
|:chdir|	:chd[ir]	change directory
|:checkpath|	:che[ckpath]	list included files
|:checktime|	:checkt[ime]	check timestamp of loaded buffers
|:chistory|	:chi[story]	list the error lists
|:class|	:class		start of a class declaration
|:clast|	:cla[st]	go to the specified error, default last one
|:clearjumps|	:cle[arjumps]	clear the jump list
|:clipreset|	:clip[reset]	reset 'clipmethod'
|:clist|	:cl[ist]	list all errors
|:close|	:clo[se]	close current window
|:cmap|		:cm[ap]		like ":map" but for Command-line mode
|:cmapclear|	:cmapc[lear]	clear all mappings for Command-line mode
|:cmenu|	:cme[nu]	add menu for Command-line mode
|:cnext|	:cn[ext]	go to next error
|:cnewer|	:cnew[er]	go to newer error list
|:cnfile|	:cnf[ile]	go to first error in next file
|:cnoremap|	:cno[remap]	like ":noremap" but for Command-line mode
|:cnoreabbrev|	:cnorea[bbrev]	like ":noreabbrev" but for Command-line mode
|:cnoremenu|	:cnoreme[nu]	like ":noremenu" but for Command-line mode
|:copy|		:co[py]		copy lines
|:colder|	:col[der]	go to older error list
|:colorscheme|	:colo[rscheme]	load a specific color scheme
|:command|	:com[mand]	create user-defined command
|:comclear|	:comc[lear]	clear all user-defined commands
|:compiler|	:comp[iler]	do settings for a specific compiler
|:continue|	:con[tinue]	go back to :while
|:confirm|	:conf[irm]	prompt user when confirmation required
|:const|	:cons[t]	create a variable as a constant
|:copen|	:cope[n]	open quickfix window
|:cprevious|	:cp[revious]	go to previous error
|:cpfile|	:cpf[ile]	go to last error in previous file
|:cquit|	:cq[uit]	quit Vim with an error code
|:crewind|	:cr[ewind]	go to the specified error, default first one
|:cscope|	:cs[cope]	execute cscope command
|:cstag|	:cst[ag]	use cscope to jump to a tag
|:cunmap|	:cu[nmap]	like ":unmap" but for Command-line mode
|:cunabbrev|	:cuna[bbrev]	like ":unabbrev" but for Command-line mode
|:cunmenu|	:cunme[nu]	remove menu for Command-line mode
|:cwindow|	:cw[indow]	open or close quickfix window
|:delete|	:d[elete]	delete lines
|:debug|	:deb[ug]	run a command in debugging mode
|:debuggreedy|	:debugg[reedy]	read debug mode commands from normal input
|:def|		:def		define a Vim9 user function
|:defcompile|	:defc[ompile]	compile Vim9 user functions in current script
|:defer|	:defe[r]	call function when current function is done
|:delcommand|	:delc[ommand]	delete user-defined command
|:delfunction|	:delf[unction]	delete a user function
|:delmarks|	:delm[arks]	delete marks
|:diffupdate|	:dif[fupdate]	update 'diff' buffers
|:diffget|	:diffg[et]	remove differences in current buffer
|:diffoff|	:diffo[ff]	switch off diff mode
|:diffpatch|	:diffp[atch]	apply a patch and show differences
|:diffput|	:diffpu[t]	remove differences in other buffer
|:diffsplit|	:diffs[plit]	show differences with another file
|:diffthis|	:difft[his]	make current window a diff window
|:digraphs|	:dig[raphs]	show or enter digraphs
|:display|	:di[splay]	display registers
|:disassemble|	:disa[ssemble]	disassemble Vim9 user function
|:djump|	:dj[ump]	jump to #define
|:dl|		:dl		short for |:delete| with the 'l' flag
|:dlist|	:dli[st]	list #defines
|:doautocmd|	:do[autocmd]	apply autocommands to current buffer
|:doautoall|	:doautoa[ll]	apply autocommands for all loaded buffers
|:dp|		:d[elete]p	short for |:delete| with the 'p' flag
|:drop|		:dr[op]		jump to window editing file or edit file in
				current window
|:dsearch|	:ds[earch]	list one #define
|:dsplit|	:dsp[lit]	split window and jump to #define
|:edit|		:e[dit]		edit a file
|:earlier|	:ea[rlier]	go to older change, undo
|:echo|		:ec[ho]		echoes the result of expressions
|:echoconsole|	:echoc[onsole]	like :echomsg but write to stdout
|:echoerr|	:echoe[rr]	like :echo, show like an error and use history
|:echohl|	:echoh[l]	set highlighting for echo commands
|:echomsg|	:echom[sg]	same as :echo, put message in history
|:echon|	:echon		same as :echo, but without <EOL>
|:echowindow|	:echow[indow]	same as :echomsg, but use a popup window
|:else|		:el[se]		part of an :if command
|:elseif|	:elsei[f]	part of an :if command
|:emenu|	:em[enu]	execute a menu by name
|:endclass|	:endclass	end of a class declaration
|:enddef|	:enddef		end of a user function started with :def
|:endenum|	:endenum	end of an enum declaration
|:endif|	:en[dif]	end previous :if
|:endinterface|	:endinterface	end of an interface declaration
|:endfor|	:endfo[r]	end previous :for
|:endfunction|	:endf[unction]	end of a user function started with :function
|:endtry|	:endt[ry]	end previous :try
|:endwhile|	:endw[hile]	end previous :while
|:enew|		:ene[w]		edit a new, unnamed buffer
|:enum|		:enum		start of an enum declaration
|:eval|		:ev[al]		evaluate an expression and discard the result
|:ex|		:ex		same as ":edit"
|:execute|	:exe[cute]	execute result of expressions
|:exit|		:exi[t]		same as ":xit"
|:export|	:exp[ort]	Vim9: export an item from a script
|:exusage|	:exu[sage]	overview of Ex commands
|:file|		:f[ile]		show or set the current file name
|:files|	:files		list all files in the buffer list
|:filetype|	:filet[ype]	switch file type detection on/off
|:filter|	:filt[er]	filter output of following command
|:find|		:fin[d]		find file in 'path' and edit it
|:final|	:final		declare an immutable variable in Vim9
|:finally|	:fina[lly]	part of a :try command
|:finish|	:fini[sh]	quit sourcing a Vim script
|:first|	:fir[st]	go to the first file in the argument list
|:fixdel|	:fix[del]	set key code of <Del>
|:fold|		:fo[ld]		create a fold
|:foldclose|	:foldc[lose]	close folds
|:folddoopen|	:foldd[oopen]	execute command on lines not in a closed fold
|:folddoclosed|	:folddoc[losed]	execute command on lines in a closed fold
|:foldopen|	:foldo[pen]	open folds
|:for|		:for		for loop
|:function|	:fu[nction]	define a user function
|:global|	:g[lobal]	execute commands for matching lines
|:goto|		:go[to]		go to byte in the buffer
|:grep|		:gr[ep]		run 'grepprg' and jump to first match
|:grepadd|	:grepa[dd]	like :grep, but append to current list
|:gui|		:gu[i]		start the GUI
|:gvim|		:gv[im]		start the GUI
|:hardcopy|	:ha[rdcopy]	send text to the printer
|:help|		:h[elp]		open a help window
|:helpclose|	:helpc[lose]	close one help window
|:helpfind|	:helpf[ind]	dialog to open a help window
|:helpgrep|	:helpg[rep]	like ":grep" but searches help files
|:helptags|	:helpt[ags]	generate help tags for a directory
|:highlight|	:hi[ghlight]	specify highlighting methods
|:hide|		:hid[e]		hide current buffer for a command
|:history|	:his[tory]	print a history list
|:horizontal|	:hor[izontal]	following window command work horizontally
|:insert|	:i[nsert]	insert text
|:iabbrev|	:ia[bbrev]	like ":abbrev" but for Insert mode
|:iabclear|	:iabc[lear]	like ":abclear" but for Insert mode
|:if|		:if		execute commands when condition met
|:ijump|	:ij[ump]	jump to definition of identifier
|:ilist|	:il[ist]	list lines where identifier matches
|:imap|		:im[ap]		like ":map" but for Insert mode
|:imapclear|	:imapc[lear]	like ":mapclear" but for Insert mode
|:imenu|	:ime[nu]	add menu for Insert mode
|:import|	:imp[ort]	Vim9: import an item from another script
|:inoremap|	:ino[remap]	like ":noremap" but for Insert mode
|:inoreabbrev|	:inorea[bbrev]	like ":noreabbrev" but for Insert mode
|:inoremenu|	:inoreme[nu]	like ":noremenu" but for Insert mode
|:intro|	:int[ro]	print the introductory message
|:interface|	:interface	start of an interface declaration
|:iput|		:ip[ut]		like |:put|, but adjust the indent to the
				current line
|:isearch|	:is[earch]	list one line where identifier matches
|:isplit|	:isp[lit]	split window and jump to definition of
				identifier
|:iunmap|	:iu[nmap]	like ":unmap" but for Insert mode
|:iunabbrev|	:iuna[bbrev]	like ":unabbrev" but for Insert mode
|:iunmenu|	:iunme[nu]	remove menu for Insert mode
|:join|		:j[oin]		join lines
|:jumps|	:ju[mps]	print the jump list
|:k|		:k		set a mark
|:keepalt|	:keepa[lt]	following command keeps the alternate file
|:keepmarks|	:kee[pmarks]	following command keeps marks where they are
|:keepjumps|	:keepj[umps]	following command keeps jumplist and marks
|:keeppatterns|	:keepp[atterns]	following command keeps search pattern history
|:lNext|	:lN[ext]	go to previous entry in location list
|:lNfile|	:lNf[ile]	go to last entry in previous file
|:list|		:l[ist]		print lines
|:labove|	:lab[ove]	go to location above current line
|:laddexpr|	:lad[dexpr]	add locations from expr
|:laddbuffer|	:laddb[uffer]	add locations from buffer
|:laddfile|	:laddf[ile]	add locations to current location list
|:lafter|	:laf[ter]	go to location after current cursor
|:last|		:la[st]		go to the last file in the argument list
|:language|	:lan[guage]	set the language (locale)
|:later|	:lat[er]	go to newer change, redo
|:lbefore|	:lbe[fore]	go to location before current cursor
|:lbelow|	:lbel[ow]	go to location below current line
|:lbottom|	:lbo[ttom]	scroll to the bottom of the location window
|:lbuffer|	:lb[uffer]	parse locations and jump to first location
|:lcd|		:lc[d]		change directory locally
|:lchdir|	:lch[dir]	change directory locally
|:lclose|	:lcl[ose]	close location window
|:lcscope|	:lcs[cope]	like ":cscope" but uses location list
|:ldo|		:ld[o]		execute command in valid location list entries
|:lfdo|		:lfd[o]		execute command in each file in location list
|:left|		:le[ft]		left align lines
|:leftabove|	:lefta[bove]	make split window appear left or above
|:legacy|	:leg[acy]	make following command use legacy script syntax
|:let|		:let		assign a value to a variable or option
|:lexpr|	:lex[pr]	read locations from expr and jump to first
|:lfile|	:lf[ile]	read file with locations and jump to first
|:lfirst|	:lfir[st]	go to the specified location, default first one
|:lgetbuffer|	:lgetb[uffer]	get locations from buffer
|:lgetexpr|	:lgete[xpr]	get locations from expr
|:lgetfile|	:lg[etfile]	read file with locations
|:lgrep|	:lgr[ep]	run 'grepprg' and jump to first match
|:lgrepadd|	:lgrepa[dd]	like :grep, but append to current list
|:lhelpgrep|	:lh[elpgrep]	like ":helpgrep" but uses location list
|:lhistory|	:lhi[story]	list the location lists
|:ll|		:ll		go to specific location
|:llast|	:lla[st]	go to the specified location, default last one
|:llist|	:lli[st]	list all locations
|:lmake|	:lmak[e]	execute external command 'makeprg' and parse
				error messages
|:lmap|		:lm[ap]		like ":map!" but includes Lang-Arg mode
|:lmapclear|	:lmapc[lear]	like ":mapclear!" but includes Lang-Arg mode
|:lnext|	:lne[xt]	go to next location
|:lnewer|	:lnew[er]	go to newer location list
|:lnfile|	:lnf[ile]	go to first location in next file
|:lnoremap|	:ln[oremap]	like ":noremap!" but includes Lang-Arg mode
|:loadkeymap|	:loadk[eymap]	load the following keymaps until EOF
|:loadview|	:lo[adview]	load view for current window from a file
|:lockmarks|	:loc[kmarks]	following command keeps marks where they are
|:lockvar|	:lockv[ar]	lock variables
|:lolder|	:lol[der]	go to older location list
|:lopen|	:lop[en]	open location window
|:lprevious|	:lp[revious]	go to previous location
|:lpfile|	:lpf[ile]	go to last location in previous file
|:lrewind|	:lr[ewind]	go to the specified location, default first one
|:ls|		:ls		list all buffers
|:ltag|		:lt[ag]		jump to tag and add matching tags to the
				location list
|:lunmap|	:lu[nmap]	like ":unmap!" but includes Lang-Arg mode
|:lua|		:lua		execute |Lua| command
|:luado|	:luad[o]	execute Lua command for each line
|:luafile|	:luaf[ile]	execute |Lua| script file
|:lvimgrep|	:lv[imgrep]	search for pattern in files
|:lvimgrepadd|	:lvimgrepa[dd]	like :vimgrep, but append to current list
|:lwindow|	:lw[indow]	open or close location window
|:move|		:m[ove]		move lines
|:mark|		:ma[rk]		set a mark
|:make|		:mak[e]		execute external command 'makeprg' and parse
				error messages
|:map|		:map		show or enter a mapping
|:mapclear|	:mapc[lear]	clear all mappings for Normal and Visual mode
|:marks|	:marks		list all marks
|:match|	:mat[ch]	define a match to highlight
|:menu|		:me[nu]		enter a new menu item
|:menutranslate|  :menut[ranslate] add a menu translation item
|:messages|	:mes[sages]	view previously displayed messages
|:mkexrc|	:mk[exrc]	write current mappings and settings to a file
|:mksession|	:mks[ession]	write session info to a file
|:mkspell|	:mksp[ell]	produce .spl spell file
|:mkvimrc|	:mkv[imrc]	write current mappings and settings to a file
|:mkview|	:mkvie[w]	write view of current window to a file
|:mode|		:mod[e]		show or change the screen mode
|:mzscheme|	:mz[scheme]	execute MzScheme command
|:mzfile|	:mzf[ile]	execute MzScheme script file
|:nbclose|	:nbc[lose]	close the current Netbeans session
|:nbkey|	:nb[key]	pass a key to Netbeans
|:nbstart|	:nbs[tart]	start a new Netbeans session
|:next|		:n[ext]		go to next file in the argument list
|:new|		:new		create a new empty window
|:nmap|		:nm[ap]		like ":map" but for Normal mode
|:nmapclear|	:nmapc[lear]	clear all mappings for Normal mode
|:nmenu|	:nme[nu]	add menu for Normal mode
|:nnoremap|	:nn[oremap]	like ":noremap" but for Normal mode
|:nnoremenu|	:nnoreme[nu]	like ":noremenu" but for Normal mode
|:noautocmd|	:noa[utocmd]	following commands don't trigger autocommands
|:noremap|	:no[remap]	enter a mapping that will not be remapped
|:nohlsearch|	:noh[lsearch]	suspend 'hlsearch' highlighting
|:noreabbrev|	:norea[bbrev]	enter an abbreviation that will not be
				remapped
|:noremenu|	:noreme[nu]	enter a menu that will not be remapped
|:normal|	:norm[al]	execute Normal mode commands
|:noswapfile|	:nos[wapfile]	following commands don't create a swap file
|:number|	:nu[mber]	print lines with line number
|:nunmap|	:nun[map]	like ":unmap" but for Normal mode
|:nunmenu|	:nunme[nu]	remove menu for Normal mode
|:oldfiles|	:ol[dfiles]	list files that have marks in the viminfo file
|:open|		:o[pen]		start open mode (not implemented)
|:omap|		:om[ap]		like ":map" but for Operator-pending mode
|:omapclear|	:omapc[lear]	remove all mappings for Operator-pending mode
|:omenu|	:ome[nu]	add menu for Operator-pending mode
|:only|		:on[ly]		close all windows except the current one
|:onoremap|	:ono[remap]	like ":noremap" but for Operator-pending mode
|:onoremenu|	:onoreme[nu]	like ":noremenu" but for Operator-pending mode
|:options|	:opt[ions]	open the options-window
|:ounmap|	:ou[nmap]	like ":unmap" but for Operator-pending mode
|:ounmenu|	:ounme[nu]	remove menu for Operator-pending mode
|:ownsyntax|	:ow[nsyntax]	set new local syntax highlight for this window
|:packadd|	:pa[ckadd]	add a plugin from 'packpath'
|:packloadall|	:packl[oadall]	load all packages under 'packpath'
|:pbuffer|	:pb[uffer]	edit buffer in the preview window
|:pclose|	:pc[lose]	close preview window
|:pedit|	:ped[it]	edit file in the preview window
|:perl|		:pe[rl]		execute Perl command
|:print|	:p[rint]	print lines
|:profdel|	:profd[el]	stop profiling a function or script
|:profile|	:prof[ile]	profiling functions and scripts
|:promptfind|	:pro[mptfind]	open GUI dialog for searching
|:promptrepl|	:promptr[epl]	open GUI dialog for search/replace
|:perldo|	:perld[o]	execute Perl command for each line
|:pop|		:po[p]		jump to older entry in tag stack
|:popup|	:popu[p]	popup a menu by name
|:ppop|		:pp[op]		":pop" in preview window
|:preserve|	:pre[serve]	write all text to swap file
|:previous|	:prev[ious]	go to previous file in argument list
|:psearch|	:ps[earch]	like ":ijump" but shows match in preview window
|:ptag|		:pt[ag]		show tag in preview window
|:ptNext|	:ptN[ext]	|:tNext| in preview window
|:ptfirst|	:ptf[irst]	|:trewind| in preview window
|:ptjump|	:ptj[ump]	|:tjump| and show tag in preview window
|:ptlast|	:ptl[ast]	|:tlast| in preview window
|:ptnext|	:ptn[ext]	|:tnext| in preview window
|:ptprevious|	:ptp[revious]	|:tprevious| in preview window
|:ptrewind|	:ptr[ewind]	|:trewind| in preview window
|:ptselect|	:pts[elect]	|:tselect| and show tag in preview window
|:public|	:public		prefix for a class or object member
|:put|		:pu[t]		insert contents of register in the text
|:pwd|		:pw[d]		print current directory
|:py3|		:py3		execute Python 3 command
|:python3|	:python3	same as :py3
|:py3do|	:py3d[o]	execute Python 3 command for each line
|:py3file|	:py3f[ile]	execute Python 3 script file
|:python|	:py[thon]	execute Python command
|:pydo|		:pyd[o]		execute Python command for each line
|:pyfile|	:pyf[ile]	execute Python script file
|:pyx|		:pyx		execute |python_x| command
|:pythonx|	:pythonx	same as :pyx
|:pyxdo|	:pyxd[o]	execute |python_x| command for each line
|:pyxfile|	:pyxf[ile]	execute |python_x| script file
|:quit|		:q[uit]		quit current window (when one window quit Vim)
|:quitall|	:quita[ll]	quit Vim
|:qall|		:qa[ll]		quit Vim
|:read|		:r[ead]		read file into the text
|:recover|	:rec[over]	recover a file from a swap file
|:redo|		:red[o]		redo one undone change
|:redir|	:redi[r]	redirect messages to a file or register
|:redraw|	:redr[aw]	  force a redraw of the display
|:redrawstatus|	:redraws[tatus]	  force a redraw of the status line(s)
|:redrawtabline|  :redrawt[abline]  force a redraw of the tabline
|:redrawtabpanel| :redrawtabp[anel] force a redraw of the tabpanel
|:registers|	:reg[isters]	display the contents of registers
|:resize|	:res[ize]	change current window height
|:retab|	:ret[ab]	change tab size
|:return|	:retu[rn]	return from a user function
|:rewind|	:rew[ind]	go to the first file in the argument list
|:right|	:ri[ght]	right align text
|:rightbelow|	:rightb[elow]	make split window appear right or below
|:ruby|		:rub[y]		execute Ruby command
|:rubydo|	:rubyd[o]	execute Ruby command for each line
|:rubyfile|	:rubyf[ile]	execute Ruby script file
|:rundo|	:rund[o]	read undo information from a file
|:runtime|	:ru[ntime]	source vim scripts in 'runtimepath'
|:rviminfo|	:rv[iminfo]	read from viminfo file
|:substitute|	:s[ubstitute]	find and replace text
|:sNext|	:sN[ext]	split window and go to previous file in
				argument list
|:sandbox|	:san[dbox]	execute a command in the sandbox
|:sargument|	:sa[rgument]	split window and go to specific file in
				argument list
|:sall|		:sal[l]		open a window for each file in argument list
|:saveas|	:sav[eas]	save file under another name.
|:sbuffer|	:sb[uffer]	split window and go to specific file in the
				buffer list
|:sbNext|	:sbN[ext]	split window and go to previous file in the
				buffer list
|:sball|	:sba[ll]	open a window for each file in the buffer list
|:sbfirst|	:sbf[irst]	split window and go to first file in the
				buffer list
|:sblast|	:sbl[ast]	split window and go to last file in buffer
				list
|:sbmodified|	:sbm[odified]	split window and go to modified file in the
				buffer list
|:sbnext|	:sbn[ext]	split window and go to next file in the buffer
				list
|:sbprevious|	:sbp[revious]	split window and go to previous file in the
				buffer list
|:sbrewind|	:sbr[ewind]	split window and go to first file in the
				buffer list
|:scriptnames|	:scr[iptnames]	list names of all sourced Vim scripts
|:scriptencoding| :scripte[ncoding]  encoding used in sourced Vim script
|:scriptversion|  :scriptv[ersion]   version of Vim script used
|:scscope|	:scs[cope]	split window and execute cscope command
|:set|		:se[t]		show or set options
|:setfiletype|	:setf[iletype]	set 'filetype', unless it was set already
|:setglobal|	:setg[lobal]	show global values of options
|:setlocal|	:setl[ocal]	show or set options locally
|:sfind|	:sf[ind]	split current window and edit file in 'path'
|:sfirst|	:sfir[st]	split window and go to first file in the
				argument list
|:shell|	:sh[ell]	escape to a shell
|:simalt|	:sim[alt]	Win32 GUI: simulate Windows ALT key
|:sign|		:sig[n]		manipulate signs
|:silent|	:sil[ent]	run a command silently
|:sleep|	:sl[eep]	do nothing for a few seconds
|:sleep!|	:sl[eep]!	do nothing for a few seconds, without the
				cursor visible
|:slast|	:sla[st]	split window and go to last file in the
				argument list
|:smagic|	:sm[agic]	:substitute with 'magic'
|:smap|		:smap		like ":map" but for Select mode
|:smapclear|	:smapc[lear]	remove all mappings for Select mode
|:smenu|	:sme[nu]	add menu for Select mode
|:smile|	:smi[le]	make the user happy
|:snext|	:sn[ext]	split window and go to next file in the
				argument list
|:snomagic|	:sno[magic]	:substitute with 'nomagic'
|:snoremap|	:snor[emap]	like ":noremap" but for Select mode
|:snoremenu|	:snoreme[nu]	like ":noremenu" but for Select mode
|:sort|		:sor[t]		sort lines
|:source|	:so[urce]	read Vim or Ex commands from a file
|:spelldump|	:spelld[ump]	split window and fill with all correct words
|:spellgood|	:spe[llgood]	add good word for spelling
|:spellinfo|	:spelli[nfo]	show info about loaded spell files
|:spellrare|	:spellra[re]	add rare word for spelling
|:spellrepall|	:spellr[epall]	replace all bad words like last |z=|
|:spellundo|	:spellu[ndo]	remove good or bad word
|:spellwrong|	:spellw[rong]	add spelling mistake
|:split|	:sp[lit]	split current window
|:sprevious|	:spr[evious]	split window and go to previous file in the
				argument list
|:srewind|	:sre[wind]	split window and go to first file in the
				argument list
|:stop|		:st[op]		suspend the editor or escape to a shell
|:stag|		:sta[g]		split window and jump to a tag
|:startinsert|	:star[tinsert]	start Insert mode
|:startgreplace|  :startg[replace] start Virtual Replace mode
|:startreplace|	:startr[eplace]	start Replace mode
|:static|	:static		prefix for a class member or function
|:stopinsert|	:stopi[nsert]	stop Insert mode
|:stjump|	:stj[ump]	do ":tjump" and split window
|:stselect|	:sts[elect]	do ":tselect" and split window
|:sunhide|	:sun[hide]	same as ":unhide"
|:sunmap|	:sunm[ap]	like ":unmap" but for Select mode
|:sunmenu|	:sunme[nu]	remove menu for Select mode
|:suspend|	:sus[pend]	same as ":stop"
|:sview|	:sv[iew]	split window and edit file read-only
|:swapname|	:sw[apname]	show the name of the current swap file
|:syntax|	:sy[ntax]	syntax highlighting
|:syntime|	:synti[me]	measure syntax highlighting speed
|:syncbind|	:sync[bind]	sync scroll binding
|:t|		:t		same as ":copy"
|:tNext|	:tN[ext]	jump to previous matching tag
|:tabNext|	:tabN[ext]	go to previous tab page
|:tabclose|	:tabc[lose]	close current tab page
|:tabdo|	:tabd[o]	execute command in each tab page
|:tabedit|	:tabe[dit]	edit a file in a new tab page
|:tabfind|	:tabf[ind]	find file in 'path', edit it in a new tab page
|:tabfirst|	:tabfir[st]	go to first tab page
|:tablast|	:tabl[ast]	go to last tab page
|:tabmove|	:tabm[ove]	move tab page to other position
|:tabnew|	:tabnew		edit a file in a new tab page
|:tabnext|	:tabn[ext]	go to next tab page
|:tabonly|	:tabo[nly]	close all tab pages except the current one
|:tabprevious|	:tabp[revious]	go to previous tab page
|:tabrewind|	:tabr[ewind]	go to first tab page
|:tabs|		:tabs		list the tab pages and what they contain
|:tab|		:tab		create new tab when opening new window
|:tag|		:ta[g]		jump to tag
|:tags|		:tags		show the contents of the tag stack
|:tcd|		:tc[d]		change directory for tab page
|:tchdir|	:tch[dir]	change directory for tab page
|:tcl|		:tcl		execute Tcl command
|:tcldo|	:tcld[o]	execute Tcl command for each line
|:tclfile|	:tclf[ile]	execute Tcl script file
|:tearoff|	:te[aroff]	tear-off a menu
|:terminal|	:ter[minal]	open a terminal window
|:tfirst|	:tf[irst]	jump to first matching tag
|:throw|	:th[row]	throw an exception
|:this|		:this		prefix for an object member during
				initialization (e.g. on |new()|)
|:tjump|	:tj[ump]	like ":tselect", but jump directly when there
				is only one match
|:tlast|	:tl[ast]	jump to last matching tag
|:tlmenu|	:tlm[enu]	add menu for Terminal-Job mode
|:tlnoremenu|	:tln[oremenu]	like ":noremenu" but for Terminal-Job mode
|:tlunmenu|	:tlu[nmenu]	remove menu for Terminal-Job mode
|:tmapclear|	:tmapc[lear]	remove all mappings for Terminal-Job mode
|:tmap|		:tma[p]		like ":map" but for Terminal-Job mode
|:tmenu|	:tm[enu]	define menu tooltip
|:tnext|	:tn[ext]	jump to next matching tag
|:tnoremap|	:tno[remap]	like ":noremap" but for Terminal-Job mode
|:topleft|	:to[pleft]	make split window appear at top or far left
|:tprevious|	:tp[revious]	jump to previous matching tag
|:trewind|	:tr[ewind]	jump to first matching tag
|:try|		:try		execute commands, abort on error or exception
|:tselect|	:ts[elect]	list matching tags and select one
|:tunmap|	:tunma[p]	like ":unmap" but for Terminal-Job mode
|:tunmenu|	:tu[nmenu]	remove menu tooltip
|:type|		:type		create a type alias
|:undo|		:u[ndo]		undo last change(s)
|:undojoin|	:undoj[oin]	join next change with previous undo block
|:undolist|	:undol[ist]	list leafs of the undo tree
|:unabbreviate|	:una[bbreviate]	remove abbreviation
|:unhide|	:unh[ide]	open a window for each loaded file in the
				buffer list
|:uniq|		:uni[q]		uniq lines
|:unlet|	:unl[et]	delete variable
|:unlockvar|	:unlo[ckvar]	unlock variables
|:unmap|	:unm[ap]	remove mapping
|:unmenu|	:unme[nu]	remove menu
|:unsilent|	:uns[ilent]	run a command not silently
|:update|	:up[date]	write buffer if modified
|:vglobal|	:v[global]	execute commands for not matching lines
|:var|		:var		variable declaration in Vim9
|:version|	:ve[rsion]	print version number and other info
|:verbose|	:verb[ose]	execute command with 'verbose' set
|:vertical|	:vert[ical]	make following command split vertically
|:vim9cmd|	:vim9[cmd]	make following command use Vim9 script syntax
|:vim9script|	:vim9s[cript]	indicates Vim9 script file
|:vimgrep|	:vim[grep]	search for pattern in files
|:vimgrepadd|	:vimgrepa[dd]	like :vimgrep, but append to current list
|:visual|	:vi[sual]	same as ":edit", but turns off "Ex" mode
|:viusage|	:viu[sage]	overview of Normal mode commands
|:view|		:vie[w]		edit a file read-only
|:vmap|		:vm[ap]		like ":map" but for Visual+Select mode
|:vmapclear|	:vmapc[lear]	remove all mappings for Visual+Select mode
|:vmenu|	:vme[nu]	add menu for Visual+Select mode
|:vnew|		:vne[w]		create a new empty window, vertically split
|:vnoremap|	:vn[oremap]	like ":noremap" but for Visual+Select mode
|:vnoremenu|	:vnoreme[nu]	like ":noremenu" but for Visual+Select mode
|:vsplit|	:vs[plit]	split current window vertically
|:vunmap|	:vu[nmap]	like ":unmap" but for Visual+Select mode
|:vunmenu|	:vunme[nu]	remove menu for Visual+Select mode
|:windo|	:wind[o]	execute command in each window
|:write|	:w[rite]	write to a file
|:wNext|	:wN[ext]	write to a file and go to previous file in
				argument list
|:wall|		:wa[ll]		write all (changed) buffers
|:while|	:wh[ile]	execute loop for as long as condition met
|:winsize|	:wi[nsize]	get or set window size (obsolete)
|:wincmd|	:winc[md]	execute a Window (CTRL-W) command
|:winpos|	:winp[os]	get or set window position
|:wlrestore|	:wl[restore]	restore the Wayland compositor connection
|:wnext|	:wn[ext]	write to a file and go to next file in
				argument list
|:wprevious|	:wp[revious]	write to a file and go to previous file in
				argument list
|:wq|		:wq		write to a file and quit window or Vim
|:wqall|	:wqa[ll]	write all changed buffers and quit Vim
|:wundo|	:wu[ndo]	write undo information to a file
|:wviminfo|	:wv[iminfo]	write to viminfo file
|:xit|		:x[it]		write if buffer changed and close window
|:xall|		:xa[ll]		same as ":wqall"
|:xmapclear|	:xmapc[lear]	remove all mappings for Visual mode
|:xmap|		:xm[ap]		like ":map" but for Visual mode
|:xmenu|	:xme[nu]	add menu for Visual mode
|:xrestore|	:xr[estore]	restores the X server connection
|:xnoremap|	:xn[oremap]	like ":noremap" but for Visual mode
|:xnoremenu|	:xnoreme[nu]	like ":noremenu" but for Visual mode
|:xunmap|	:xu[nmap]	like ":unmap" but for Visual mode
|:xunmenu|	:xunme[nu]	remove menu for Visual mode
|:yank|		:y[ank]		yank lines into a register
|:z|		:z		print some lines
|:~|		:~		repeat last ":substitute"


!	change.txt	line 1
!!	change.txt	line 2
#	pattern.txt	line 3
#{}	eval.txt	line 4
$	motion.txt	line 5
$HOME	options.txt	line 6
$HOME-use	version5.txt	line 7
$HOME-windows	options.txt	line 8
$MYGVIMRC	gui.txt	line 9
$MYVIMDIR	starting.txt	line 10
$MYVIMRC	starting.txt	line 11
$NoDefaultCurrentDirectoryInExePath	builtin.txt	line 12
$VIM	starting.txt	line 13
$VIM-use	version5.txt	line 14
$VIMRUNTIME	starting.txt	line 15
$VIM_POSIX	vi_diff.txt	line 16
$XDG_CONFIG_HOME	starting.txt	line 17
$quote	eval.txt	line 18
&#37;	motion.txt	line 19
&#37;:.	cmdline.txt	line 20
&#37;:8	cmdline.txt	line 21
&#37;:S	cmdline.txt	line 22
&#37;:e	cmdline.txt	line 23
&#37;:gs	cmdline.txt	line 24
&#37;:h	cmdline.txt	line 25
&#37;:p	cmdline.txt	line 26
&#37;:r	cmdline.txt	line 27
&#37;:s	cmdline.txt	line 28
&#37;:t	cmdline.txt	line 29
&#37;:~	cmdline.txt	line 30
&amp;	change.txt	line 31
''	motion.txt	line 32
''	motion.txt	line 33
'(	motion.txt	line 34
')	motion.txt	line 35
'.	motion.txt	line 36
'0	motion.txt	line 37
'&lt;	motion.txt	line 38
'&gt;	motion.txt	line 39
'A	motion.txt	line 40
'[	motion.txt	line 41
']	motion.txt	line 42
'^	motion.txt	line 43
'a	motion.txt	line 44
'ac'	options.txt	line 45
'acd'	options.txt	line 46
'acl'	options.txt	line 47
'act'	options.txt	line 48
'ai'	options.txt	line 49
'akm'	options.txt	line 50
'al'	options.txt	line 51
'aleph'	options.txt	line 52
'allowrevins'	options.txt	line 53
'altkeymap'	options.txt	line 54
'ambiwidth'	options.txt	line 55
'ambw'	options.txt	line 56
'anti'	options.txt	line 57
'antialias'	options.txt	line 58
'ap'	vi_diff.txt	line 59
'ar'	options.txt	line 60
'arab'	options.txt	line 61
'arabic'	options.txt	line 62
'arabicshape'	options.txt	line 63
'ari'	options.txt	line 64
'arshape'	options.txt	line 65
'as'	todo.txt	line 66
'asd'	options.txt	line 67
'autochdir'	options.txt	line 68
'autocomplete'	options.txt	line 69
'autocompletedelay'	options.txt	line 70
'autocompletetimeout'	options.txt	line 71
'autoindent'	options.txt	line 72
'autoprint'	vi_diff.txt	line 73
'autoread'	options.txt	line 74
'autosave'	todo.txt	line 75
'autoshelldir'	options.txt	line 76
'autowrite'	options.txt	line 77
'autowriteall'	options.txt	line 78
'aw'	options.txt	line 79
'awa'	options.txt	line 80
'b:context_ignore_makefile'	ft_context.txt	line 81
'b:context_include'	ft_context.txt	line 82
'b:mp_metafun'	ft_mp.txt	line 83
'background'	options.txt	line 84
'backspace'	options.txt	line 85
'backup'	options.txt	line 86
'backupcopy'	options.txt	line 87
'backupdir'	options.txt	line 88
'backupext'	options.txt	line 89
'backupskip'	options.txt	line 90
'balloondelay'	options.txt	line 91
'ballooneval'	options.txt	line 92
'balloonevalterm'	options.txt	line 93
'balloonexpr'	options.txt	line 94
'bdir'	options.txt	line 95
'bdlay'	options.txt	line 96
'beautify'	vi_diff.txt	line 97
'belloff'	options.txt	line 98
'beval'	options.txt	line 99
'bevalterm'	options.txt	line 100
'bex'	options.txt	line 101
'bexpr'	options.txt	line 102
'bf'	vi_diff.txt	line 103
'bg'	options.txt	line 104
'bh'	options.txt	line 105
'bin'	options.txt	line 106
'binary'	options.txt	line 107
'biosk'	options.txt	line 108
'bioskey'	options.txt	line 109
'bk'	options.txt	line 110
'bkc'	options.txt	line 111
'bl'	options.txt	line 112
'bo'	options.txt	line 113
'bomb'	options.txt	line 114
'breakat'	options.txt	line 115
'breakindent'	options.txt	line 116
'breakindentopt'	options.txt	line 117
'bri'	options.txt	line 118
'briopt'	options.txt	line 119
'brk'	options.txt	line 120
'browsedir'	options.txt	line 121
'bs'	options.txt	line 122
'bsdir'	options.txt	line 123
'bsk'	options.txt	line 124
'bt'	options.txt	line 125
'bufhidden'	options.txt	line 126
'buflisted'	options.txt	line 127
'buftype'	options.txt	line 128
'casemap'	options.txt	line 129
'cb'	options.txt	line 130
'cc'	options.txt	line 131
'ccv'	options.txt	line 132
'cd'	options.txt	line 133
'cdh'	options.txt	line 134
'cdhome'	options.txt	line 135
'cdpath'	options.txt	line 136
'cedit'	options.txt	line 137
'cf'	options.txt	line 138
'cfc'	options.txt	line 139
'cfu'	options.txt	line 140
'ch'	options.txt	line 141
'character'	intro.txt	line 142
'charconvert'	options.txt	line 143
'chi'	options.txt	line 144
'chistory'	options.txt	line 145
'ci'	options.txt	line 146
'cia'	options.txt	line 147
'cin'	options.txt	line 148
'cindent'	options.txt	line 149
'cink'	options.txt	line 150
'cinkeys'	options.txt	line 151
'cino'	options.txt	line 152
'cinoptions'	options.txt	line 153
'cinscopedecls'	options.txt	line 154
'cinsd'	options.txt	line 155
'cinw'	options.txt	line 156
'cinwords'	options.txt	line 157
'clipboard'	options.txt	line 158
'clipmethod'	options.txt	line 159
'cm'	options.txt	line 160
'cmdheight'	options.txt	line 161
'cmdwinheight'	options.txt	line 162
'cmp'	options.txt	line 163
'cms'	options.txt	line 164
'co'	options.txt	line 165
'cocu'	options.txt	line 166
'cole'	options.txt	line 167
'colorcolumn'	options.txt	line 168
'columns'	options.txt	line 169
'com'	options.txt	line 170
'comments'	options.txt	line 171
'commentstring'	options.txt	line 172
'compatible'	options.txt	line 173
'complete'	options.txt	line 174
'completefunc'	options.txt	line 175
'completefuzzycollect'	options.txt	line 176
'completeitemalign'	options.txt	line 177
'completeopt'	options.txt	line 178
'completepopup'	options.txt	line 179
'completeslash'	options.txt	line 180
'completetimeout'	options.txt	line 181
'concealcursor'	options.txt	line 182
'conceallevel'	options.txt	line 183
'confirm'	options.txt	line 184
'consk'	options.txt	line 185
'conskey'	options.txt	line 186
'copyindent'	options.txt	line 187
'cot'	options.txt	line 188
'cp'	options.txt	line 189
'cpm'	options.txt	line 190
'cpo'	options.txt	line 191
'cpoptions'	options.txt	line 192
'cpp'	options.txt	line 193
'cpt'	options.txt	line 194
'crb'	options.txt	line 195
'cryptmethod'	options.txt	line 196
'cscopepathcomp'	options.txt	line 197
'cscopeprg'	options.txt	line 198
'cscopequickfix'	options.txt	line 199
'cscoperelative'	options.txt	line 200
'cscopetag'	options.txt	line 201
'cscopetagorder'	options.txt	line 202
'cscopeverbose'	options.txt	line 203
'csl'	options.txt	line 204
'cspc'	options.txt	line 205
'csprg'	options.txt	line 206
'csqf'	options.txt	line 207
'csre'	options.txt	line 208
'cst'	options.txt	line 209
'csto'	options.txt	line 210
'csverb'	options.txt	line 211
'cto'	options.txt	line 212
'cuc'	options.txt	line 213
'cul'	options.txt	line 214
'culopt'	options.txt	line 215
'cursorbind'	options.txt	line 216
'cursorcolumn'	options.txt	line 217
'cursorline'	options.txt	line 218
'cursorlineopt'	options.txt	line 219
'cwh'	options.txt	line 220
'debug'	options.txt	line 221
'deco'	options.txt	line 222
'def'	options.txt	line 223
'define'	options.txt	line 224
'delcombine'	options.txt	line 225
'dex'	options.txt	line 226
'dg'	options.txt	line 227
'dia'	options.txt	line 228
'dict'	options.txt	line 229
'dictionary'	options.txt	line 230
'diff'	options.txt	line 231
'diffanchors'	options.txt	line 232
'diffexpr'	options.txt	line 233
'diffopt'	options.txt	line 234
'digraph'	options.txt	line 235
'dip'	options.txt	line 236
'dir'	options.txt	line 237
'directory'	options.txt	line 238
'display'	options.txt	line 239
'dy'	options.txt	line 240
'ea'	options.txt	line 241
'ead'	options.txt	line 242
'eadirection'	options.txt	line 243
'eb'	options.txt	line 244
'ed'	options.txt	line 245
'edcompatible'	options.txt	line 246
'ef'	options.txt	line 247
'efm'	options.txt	line 248
'ei'	options.txt	line 249
'eiw'	options.txt	line 250
'ek'	options.txt	line 251
'emo'	options.txt	line 252
'emoji'	options.txt	line 253
'enc'	options.txt	line 254
'encoding'	options.txt	line 255
'endoffile'	options.txt	line 256
'endofline'	options.txt	line 257
'eof'	options.txt	line 258
'eol'	options.txt	line 259
'ep'	options.txt	line 260
'equalalways'	options.txt	line 261
'equalprg'	options.txt	line 262
'errorbells'	options.txt	line 263
'errorfile'	options.txt	line 264
'errorformat'	options.txt	line 265
'esckeys'	options.txt	line 266
'et'	options.txt	line 267
'eventignore'	options.txt	line 268
'eventignorewin'	options.txt	line 269
'ex'	options.txt	line 270
'expandtab'	options.txt	line 271
'exrc'	options.txt	line 272
'fcl'	options.txt	line 273
'fcs'	options.txt	line 274
'fdc'	options.txt	line 275
'fde'	options.txt	line 276
'fdi'	options.txt	line 277
'fdl'	options.txt	line 278
'fdls'	options.txt	line 279
'fdm'	options.txt	line 280
'fdn'	options.txt	line 281
'fdo'	options.txt	line 282
'fdt'	options.txt	line 283
'fe'	options.txt	line 284
'fen'	options.txt	line 285
'fenc'	options.txt	line 286
'fencs'	options.txt	line 287
'fex'	options.txt	line 288
'ff'	options.txt	line 289
'ffs'	options.txt	line 290
'ffu'	options.txt	line 291
'fic'	options.txt	line 292
'fileencoding'	options.txt	line 293
'fileencodings'	options.txt	line 294
'fileformat'	options.txt	line 295
'fileformats'	options.txt	line 296
'fileignorecase'	options.txt	line 297
'filetype'	options.txt	line 298
'fillchars'	options.txt	line 299
'findfunc'	options.txt	line 300
'fixendofline'	options.txt	line 301
'fixeol'	options.txt	line 302
'fk'	options.txt	line 303
'fkmap'	options.txt	line 304
'fl'	vi_diff.txt	line 305
'flash'	vi_diff.txt	line 306
'flp'	options.txt	line 307
'fml'	options.txt	line 308
'fmr'	options.txt	line 309
'fo'	options.txt	line 310
'foldclose'	options.txt	line 311
'foldcolumn'	options.txt	line 312
'foldenable'	options.txt	line 313
'foldexpr'	options.txt	line 314
'foldignore'	options.txt	line 315
'foldlevel'	options.txt	line 316
'foldlevelstart'	options.txt	line 317
'foldmarker'	options.txt	line 318
'foldmethod'	options.txt	line 319
'foldminlines'	options.txt	line 320
'foldnestmax'	options.txt	line 321
'foldopen'	options.txt	line 322
'foldtext'	options.txt	line 323
'formatexpr'	options.txt	line 324
'formatlistpat'	options.txt	line 325
'formatoptions'	options.txt	line 326
'formatprg'	options.txt	line 327
'fp'	options.txt	line 328
'fs'	options.txt	line 329
'fsync'	options.txt	line 330
'ft'	options.txt	line 331
'g:context_extra_options'	ft_context.txt	line 332
'g:context_ignore_makefile'	ft_context.txt	line 333
'g:context_include'	ft_context.txt	line 334
'g:mf_other_macros'	ft_mp.txt	line 335
'g:mf_plain_macros'	ft_mp.txt	line 336
'g:mf_plain_modes'	ft_mp.txt	line 337
'g:mp_close_tag'	ft_mp.txt	line 338
'g:mp_metafun'	ft_mp.txt	line 339
'g:mp_mfplain_macros'	ft_mp.txt	line 340
'g:mp_open_tag'	ft_mp.txt	line 341
'g:mp_other_macros'	ft_mp.txt	line 342
'g:mp_plain_macros'	ft_mp.txt	line 343
'g:no_context_maps'	ft_context.txt	line 344
'g:no_mf_maps'	ft_mp.txt	line 345
'g:no_mp_maps'	ft_mp.txt	line 346
'gcr'	options.txt	line 347
'gd'	options.txt	line 348
'gdefault'	options.txt	line 349
'gfm'	options.txt	line 350
'gfn'	options.txt	line 351
'gfs'	options.txt	line 352
'gfw'	options.txt	line 353
'ghr'	options.txt	line 354
'gli'	options.txt	line 355
'go'	options.txt	line 356
'go-!'	options.txt	line 357
'go-A'	options.txt	line 358
'go-C'	options.txt	line 359
'go-F'	options.txt	line 360
'go-L'	options.txt	line 361
'go-M'	options.txt	line 362
'go-P'	options.txt	line 363
'go-R'	options.txt	line 364
'go-T'	options.txt	line 365
'go-a'	options.txt	line 366
'go-b'	options.txt	line 367
'go-c'	options.txt	line 368
'go-d'	options.txt	line 369
'go-e'	options.txt	line 370
'go-f'	options.txt	line 371
'go-g'	options.txt	line 372
'go-h'	options.txt	line 373
'go-i'	options.txt	line 374
'go-k'	options.txt	line 375
'go-l'	options.txt	line 376
'go-m'	options.txt	line 377
'go-p'	options.txt	line 378
'go-r'	options.txt	line 379
'go-s'	options.txt	line 380
'go-t'	options.txt	line 381
'go-v'	options.txt	line 382
'gp'	options.txt	line 383
'gr'	vi_diff.txt	line 384
'graphic'	vi_diff.txt	line 385
'grepformat'	options.txt	line 386
'grepprg'	options.txt	line 387
'gtl'	options.txt	line 388
'gtt'	options.txt	line 389
'guicursor'	options.txt	line 390
'guifont'	options.txt	line 391
'guifontset'	options.txt	line 392
'guifontwide'	options.txt	line 393
'guiheadroom'	options.txt	line 394
'guiligatures'	options.txt	line 395
'guioptions'	options.txt	line 396
'guipty'	options.txt	line 397
'guitablabel'	options.txt	line 398
'guitabtooltip'	options.txt	line 399
'hardtabs'	vi_diff.txt	line 400
'helpfile'	options.txt	line 401
'helpheight'	options.txt	line 402
'helplang'	options.txt	line 403
'hf'	options.txt	line 404
'hh'	options.txt	line 405
'hi'	options.txt	line 406
'hid'	options.txt	line 407
'hidden'	options.txt	line 408
'highlight'	options.txt	line 409
'history'	options.txt	line 410
'hk'	options.txt	line 411
'hkmap'	options.txt	line 412
'hkmapp'	options.txt	line 413
'hkp'	options.txt	line 414
'hl'	options.txt	line 415
'hlg'	options.txt	line 416
'hls'	options.txt	line 417
'hlsearch'	options.txt	line 418
'ht'	vi_diff.txt	line 419
'ic'	options.txt	line 420
'icon'	options.txt	line 421
'iconstring'	options.txt	line 422
'ignorecase'	options.txt	line 423
'im'	options.txt	line 424
'imactivatefunc'	options.txt	line 425
'imactivatekey'	options.txt	line 426
'imaf'	options.txt	line 427
'imak'	options.txt	line 428
'imc'	options.txt	line 429
'imcmdline'	options.txt	line 430
'imd'	options.txt	line 431
'imdisable'	options.txt	line 432
'imi'	options.txt	line 433
'iminsert'	options.txt	line 434
'ims'	options.txt	line 435
'imsearch'	options.txt	line 436
'imsf'	options.txt	line 437
'imst'	options.txt	line 438
'imstatusfunc'	options.txt	line 439
'imstyle'	options.txt	line 440
'inc'	options.txt	line 441
'include'	options.txt	line 442
'includeexpr'	options.txt	line 443
'incsearch'	options.txt	line 444
'inde'	options.txt	line 445
'indentexpr'	options.txt	line 446
'indentkeys'	options.txt	line 447
'indk'	options.txt	line 448
'inex'	options.txt	line 449
'inf'	options.txt	line 450
'infercase'	options.txt	line 451
'insertmode'	options.txt	line 452
'is'	options.txt	line 453
'isf'	options.txt	line 454
'isfname'	options.txt	line 455
'isi'	options.txt	line 456
'isident'	options.txt	line 457
'isk'	options.txt	line 458
'iskeyword'	options.txt	line 459
'isp'	options.txt	line 460
'isprint'	options.txt	line 461
'joinspaces'	options.txt	line 462
'jop'	options.txt	line 463
'js'	options.txt	line 464
'jumpoptions'	options.txt	line 465
'key'	options.txt	line 466
'keymap'	options.txt	line 467
'keymodel'	options.txt	line 468
'keyprotocol'	options.txt	line 469
'keywordprg'	options.txt	line 470
'km'	options.txt	line 471
'kmp'	options.txt	line 472
'kp'	options.txt	line 473
'kpc'	options.txt	line 474
'langmap'	options.txt	line 475
'langmenu'	options.txt	line 476
'langnoremap'	options.txt	line 477
'langremap'	options.txt	line 478
'laststatus'	options.txt	line 479
'lazyredraw'	options.txt	line 480
'lbr'	options.txt	line 481
'lcs'	options.txt	line 482
'lhi'	options.txt	line 483
'lhistory'	options.txt	line 484
'linebreak'	options.txt	line 485
'lines'	options.txt	line 486
'linespace'	options.txt	line 487
'lisp'	options.txt	line 488
'lispoptions'	options.txt	line 489
'lispwords'	options.txt	line 490
'list'	options.txt	line 491
'listchars'	options.txt	line 492
'lm'	options.txt	line 493
'lmap'	options.txt	line 494
'lnr'	options.txt	line 495
'loadplugins'	options.txt	line 496
'lop'	options.txt	line 497
'lpl'	options.txt	line 498
'lrm'	options.txt	line 499
'ls'	options.txt	line 500
'lsp'	options.txt	line 501
'luadll'	options.txt	line 502
'lw'	options.txt	line 503
'lz'	options.txt	line 504
'ma'	options.txt	line 505
'macatsui'	options.txt	line 506
'magic'	options.txt	line 507
'makeef'	options.txt	line 508
'makeencoding'	options.txt	line 509
'makeprg'	options.txt	line 510
'mat'	options.txt	line 511
'matchpairs'	options.txt	line 512
'matchtime'	options.txt	line 513
'maxcombine'	options.txt	line 514
'maxfuncdepth'	options.txt	line 515
'maxmapdepth'	options.txt	line 516
'maxmem'	options.txt	line 517
'maxmempattern'	options.txt	line 518
'maxmemtot'	options.txt	line 519
'maxsearchcount'	options.txt	line 520
'mco'	options.txt	line 521
'mef'	options.txt	line 522
'menc'	options.txt	line 523
'menuitems'	options.txt	line 524
'mesg'	vi_diff.txt	line 525
'messagesopt'	options.txt	line 526
'mfd'	options.txt	line 527
'mh'	options.txt	line 528
'mis'	options.txt	line 529
'mkspellmem'	options.txt	line 530
'ml'	options.txt	line 531
'mle'	options.txt	line 532
'mls'	options.txt	line 533
'mlst'	options.txt	line 534
'mm'	options.txt	line 535
'mmd'	options.txt	line 536
'mmp'	options.txt	line 537
'mmt'	options.txt	line 538
'mod'	options.txt	line 539
'modeline'	options.txt	line 540
'modelineexpr'	options.txt	line 541
'modelines'	options.txt	line 542
'modelinestrict'	options.txt	line 543
'modifiable'	options.txt	line 544
'modified'	options.txt	line 545
'mopt'	options.txt	line 546
'more'	options.txt	line 547
'mouse'	options.txt	line 548
'mousef'	options.txt	line 549
'mousefocus'	options.txt	line 550
'mousehide'	options.txt	line 551
'mousem'	options.txt	line 552
'mousemev'	options.txt	line 553
'mousemodel'	options.txt	line 554
'mousemoveevent'	options.txt	line 555
'mouses'	options.txt	line 556
'mouseshape'	options.txt	line 557
'mouset'	options.txt	line 558
'mousetime'	options.txt	line 559
'mp'	options.txt	line 560
'mps'	options.txt	line 561
'msc'	options.txt	line 562
'msm'	options.txt	line 563
'mzq'	options.txt	line 564
'mzquantum'	options.txt	line 565
'mzschemedll'	options.txt	line 566
'mzschemegcdll'	options.txt	line 567
'nf'	options.txt	line 568
'noac'	options.txt	line 569
'noacd'	options.txt	line 570
'noai'	options.txt	line 571
'noakm'	options.txt	line 572
'noallowrevins'	options.txt	line 573
'noaltkeymap'	options.txt	line 574
'noanti'	options.txt	line 575
'noantialias'	options.txt	line 576
'noar'	options.txt	line 577
'noarab'	options.txt	line 578
'noarabic'	options.txt	line 579
'noarabicshape'	options.txt	line 580
'noari'	options.txt	line 581
'noarshape'	options.txt	line 582
'noas'	todo.txt	line 583
'noasd'	options.txt	line 584
'noautochdir'	options.txt	line 585
'noautocomplete'	options.txt	line 586
'noautoindent'	options.txt	line 587
'noautoread'	options.txt	line 588
'noautosave'	todo.txt	line 589
'noautoshelldir'	options.txt	line 590
'noautowrite'	options.txt	line 591
'noautowriteall'	options.txt	line 592
'noaw'	options.txt	line 593
'noawa'	options.txt	line 594
'nobackup'	options.txt	line 595
'noballooneval'	options.txt	line 596
'noballoonevalterm'	options.txt	line 597
'nobeval'	options.txt	line 598
'nobevalterm'	options.txt	line 599
'nobin'	options.txt	line 600
'nobinary'	options.txt	line 601
'nobiosk'	options.txt	line 602
'nobioskey'	options.txt	line 603
'nobk'	options.txt	line 604
'nobl'	options.txt	line 605
'nobomb'	options.txt	line 606
'nobreakindent'	options.txt	line 607
'nobri'	options.txt	line 608
'nobuflisted'	options.txt	line 609
'nocdh'	options.txt	line 610
'nocdhome'	options.txt	line 611
'nocf'	options.txt	line 612
'noci'	options.txt	line 613
'nocin'	options.txt	line 614
'nocindent'	options.txt	line 615
'nocompatible'	options.txt	line 616
'noconfirm'	options.txt	line 617
'noconsk'	options.txt	line 618
'noconskey'	options.txt	line 619
'nocopyindent'	options.txt	line 620
'nocp'	options.txt	line 621
'nocrb'	options.txt	line 622
'nocscoperelative'	options.txt	line 623
'nocscopetag'	options.txt	line 624
'nocscopeverbose'	options.txt	line 625
'nocsre'	options.txt	line 626
'nocst'	options.txt	line 627
'nocsverb'	options.txt	line 628
'nocuc'	options.txt	line 629
'nocul'	options.txt	line 630
'nocursorbind'	options.txt	line 631
'nocursorcolumn'	options.txt	line 632
'nocursorline'	options.txt	line 633
'nodeco'	options.txt	line 634
'nodelcombine'	options.txt	line 635
'nodg'	options.txt	line 636
'nodiff'	options.txt	line 637
'nodigraph'	options.txt	line 638
'noea'	options.txt	line 639
'noeb'	options.txt	line 640
'noed'	options.txt	line 641
'noedcompatible'	options.txt	line 642
'noek'	options.txt	line 643
'noemo'	options.txt	line 644
'noemoji'	options.txt	line 645
'noendoffile'	options.txt	line 646
'noendofline'	options.txt	line 647
'noeof'	options.txt	line 648
'noeol'	options.txt	line 649
'noequalalways'	options.txt	line 650
'noerrorbells'	options.txt	line 651
'noesckeys'	options.txt	line 652
'noet'	options.txt	line 653
'noex'	options.txt	line 654
'noexpandtab'	options.txt	line 655
'noexrc'	options.txt	line 656
'nofen'	options.txt	line 657
'nofic'	options.txt	line 658
'nofileignorecase'	options.txt	line 659
'nofixendofline'	options.txt	line 660
'nofixeol'	options.txt	line 661
'nofk'	options.txt	line 662
'nofkmap'	options.txt	line 663
'nofoldenable'	options.txt	line 664
'nofs'	options.txt	line 665
'nofsync'	options.txt	line 666
'nogd'	options.txt	line 667
'nogdefault'	options.txt	line 668
'noguipty'	options.txt	line 669
'nohid'	options.txt	line 670
'nohidden'	options.txt	line 671
'nohk'	options.txt	line 672
'nohkmap'	options.txt	line 673
'nohkmapp'	options.txt	line 674
'nohkp'	options.txt	line 675
'nohls'	options.txt	line 676
'nohlsearch'	options.txt	line 677
'noic'	options.txt	line 678
'noicon'	options.txt	line 679
'noignorecase'	options.txt	line 680
'noim'	options.txt	line 681
'noimc'	options.txt	line 682
'noimcmdline'	options.txt	line 683
'noimd'	options.txt	line 684
'noimdisable'	options.txt	line 685
'noincsearch'	options.txt	line 686
'noinf'	options.txt	line 687
'noinfercase'	options.txt	line 688
'noinsertmode'	options.txt	line 689
'nois'	options.txt	line 690
'nojoinspaces'	options.txt	line 691
'nojs'	options.txt	line 692
'nolangnoremap'	options.txt	line 693
'nolangremap'	options.txt	line 694
'nolazyredraw'	options.txt	line 695
'nolbr'	options.txt	line 696
'nolinebreak'	options.txt	line 697
'nolisp'	options.txt	line 698
'nolist'	options.txt	line 699
'nolnr'	options.txt	line 700
'noloadplugins'	options.txt	line 701
'nolpl'	options.txt	line 702
'nolrm'	options.txt	line 703
'nolz'	options.txt	line 704
'noma'	options.txt	line 705
'nomacatsui'	options.txt	line 706
'nomagic'	options.txt	line 707
'nomh'	options.txt	line 708
'noml'	options.txt	line 709
'nomle'	options.txt	line 710
'nomlst'	options.txt	line 711
'nomod'	options.txt	line 712
'nomodeline'	options.txt	line 713
'nomodelineexpr'	options.txt	line 714
'nomodelinestrict'	options.txt	line 715
'nomodifiable'	options.txt	line 716
'nomodified'	options.txt	line 717
'nomore'	options.txt	line 718
'nomousef'	options.txt	line 719
'nomousefocus'	options.txt	line 720
'nomousehide'	options.txt	line 721
'nomousemev'	options.txt	line 722
'nomousemoveevent'	options.txt	line 723
'nonu'	options.txt	line 724
'nonumber'	options.txt	line 725
'noodev'	options.txt	line 726
'noopendevice'	options.txt	line 727
'nopaste'	options.txt	line 728
'nopi'	options.txt	line 729
'nopreserveindent'	options.txt	line 730
'nopreviewwindow'	options.txt	line 731
'noprompt'	options.txt	line 732
'nopvw'	options.txt	line 733
'noreadonly'	options.txt	line 734
'norelativenumber'	options.txt	line 735
'noremap'	options.txt	line 736
'norestorescreen'	options.txt	line 737
'norevins'	options.txt	line 738
'nori'	options.txt	line 739
'norightleft'	options.txt	line 740
'norl'	options.txt	line 741
'nornu'	options.txt	line 742
'noro'	options.txt	line 743
'nors'	options.txt	line 744
'noru'	options.txt	line 745
'noruler'	options.txt	line 746
'nosb'	options.txt	line 747
'nosc'	options.txt	line 748
'noscb'	options.txt	line 749
'noscf'	options.txt	line 750
'noscrollbind'	options.txt	line 751
'noscrollfocus'	options.txt	line 752
'noscs'	options.txt	line 753
'nosecure'	options.txt	line 754
'nosft'	options.txt	line 755
'noshellslash'	options.txt	line 756
'noshelltemp'	options.txt	line 757
'noshiftround'	options.txt	line 758
'noshortname'	options.txt	line 759
'noshowcmd'	options.txt	line 760
'noshowfulltag'	options.txt	line 761
'noshowmatch'	options.txt	line 762
'noshowmode'	options.txt	line 763
'nosi'	options.txt	line 764
'nosm'	options.txt	line 765
'nosmartcase'	options.txt	line 766
'nosmartindent'	options.txt	line 767
'nosmarttab'	options.txt	line 768
'nosmd'	options.txt	line 769
'nosmoothscroll'	options.txt	line 770
'nosms'	options.txt	line 771
'nosn'	options.txt	line 772
'nosol'	options.txt	line 773
'nospell'	options.txt	line 774
'nosplitbelow'	options.txt	line 775
'nosplitright'	options.txt	line 776
'nospr'	options.txt	line 777
'nosr'	options.txt	line 778
'nossl'	options.txt	line 779
'nosta'	options.txt	line 780
'nostartofline'	options.txt	line 781
'nostmp'	options.txt	line 782
'noswapfile'	options.txt	line 783
'noswf'	options.txt	line 784
'nota'	options.txt	line 785
'notagbsearch'	options.txt	line 786
'notagrelative'	options.txt	line 787
'notagstack'	options.txt	line 788
'notbi'	options.txt	line 789
'notbidi'	options.txt	line 790
'notbs'	options.txt	line 791
'notermbidi'	options.txt	line 792
'notermguicolors'	options.txt	line 793
'noterse'	options.txt	line 794
'notextauto'	options.txt	line 795
'notextmode'	options.txt	line 796
'notf'	options.txt	line 797
'notgc'	options.txt	line 798
'notgst'	options.txt	line 799
'notildeop'	options.txt	line 800
'notimeout'	options.txt	line 801
'notitle'	options.txt	line 802
'noto'	options.txt	line 803
'notop'	options.txt	line 804
'notr'	options.txt	line 805
'nottimeout'	options.txt	line 806
'nottybuiltin'	options.txt	line 807
'nottyfast'	options.txt	line 808
'notx'	options.txt	line 809
'noudf'	options.txt	line 810
'noundofile'	options.txt	line 811
'novb'	options.txt	line 812
'novice'	vi_diff.txt	line 813
'novisualbell'	options.txt	line 814
'nowa'	options.txt	line 815
'nowarn'	options.txt	line 816
'nowb'	options.txt	line 817
'noweirdinvert'	options.txt	line 818
'nowfh'	options.txt	line 819
'nowfw'	options.txt	line 820
'nowic'	options.txt	line 821
'nowildignorecase'	options.txt	line 822
'nowildmenu'	options.txt	line 823
'nowinfixheight'	options.txt	line 824
'nowinfixwidth'	options.txt	line 825
'nowiv'	options.txt	line 826
'nowlsteal'	options.txt	line 827
'nowmnu'	options.txt	line 828
'nowrap'	options.txt	line 829
'nowrapscan'	options.txt	line 830
'nowrite'	options.txt	line 831
'nowriteany'	options.txt	line 832
'nowritebackup'	options.txt	line 833
'nows'	options.txt	line 834
'nowst'	options.txt	line 835
'noxtermcodes'	options.txt	line 836
'nrformats'	options.txt	line 837
'nu'	options.txt	line 838
'number'	options.txt	line 839
'numberwidth'	options.txt	line 840
'nuw'	options.txt	line 841
'odev'	options.txt	line 842
'oft'	options.txt	line 843
'ofu'	options.txt	line 844
'omnifunc'	options.txt	line 845
'op'	vi_diff.txt	line 846
'open'	vi_diff.txt	line 847
'opendevice'	options.txt	line 848
'operatorfunc'	options.txt	line 849
'opfunc'	options.txt	line 850
'optimize'	vi_diff.txt	line 851
'option'	intro.txt	line 852
'osctimeoutlen'	options.txt	line 853
'osfiletype'	options.txt	line 854
'ost'	options.txt	line 855
'pa'	options.txt	line 856
'packpath'	options.txt	line 857
'para'	options.txt	line 858
'paragraphs'	options.txt	line 859
'paste'	options.txt	line 860
'pastetoggle'	options.txt	line 861
'patchexpr'	options.txt	line 862
'patchmode'	options.txt	line 863
'path'	options.txt	line 864
'pb'	options.txt	line 865
'pdev'	options.txt	line 866
'penc'	options.txt	line 867
'perldll'	options.txt	line 868
'pex'	options.txt	line 869
'pexpr'	options.txt	line 870
'pfn'	options.txt	line 871
'ph'	options.txt	line 872
'pheader'	options.txt	line 873
'pi'	options.txt	line 874
'pm'	options.txt	line 875
'pmbcs'	options.txt	line 876
'pmbfn'	options.txt	line 877
'pmw'	options.txt	line 878
'popt'	options.txt	line 879
'pp'	options.txt	line 880
'preserveindent'	options.txt	line 881
'previewheight'	options.txt	line 882
'previewpopup'	options.txt	line 883
'previewwindow'	options.txt	line 884
'printdevice'	options.txt	line 885
'printencoding'	options.txt	line 886
'printexpr'	options.txt	line 887
'printfont'	options.txt	line 888
'printheader'	options.txt	line 889
'printmbcharset'	options.txt	line 890
'printmbfont'	options.txt	line 891
'printoptions'	options.txt	line 892
'prompt'	options.txt	line 893
'pt'	options.txt	line 894
'pumborder'	options.txt	line 895
'pumheight'	options.txt	line 896
'pummaxwidth'	options.txt	line 897
'pumopt'	options.txt	line 898
'pumwidth'	options.txt	line 899
'pvh'	options.txt	line 900
'pvp'	options.txt	line 901
'pvw'	options.txt	line 902
'pw'	options.txt	line 903
'pythondll'	options.txt	line 904
'pythonhome'	options.txt	line 905
'pythonthreedll'	options.txt	line 906
'pythonthreehome'	options.txt	line 907
'pyx'	options.txt	line 908
'pyxversion'	options.txt	line 909
'qe'	options.txt	line 910
'qftf'	options.txt	line 911
'quickfixtextfunc'	options.txt	line 912
'quote	motion.txt	line 913
'quoteescape'	options.txt	line 914
'rdt'	options.txt	line 915
're'	options.txt	line 916
'readonly'	options.txt	line 917
'redraw'	vi_diff.txt	line 918
'redrawtime'	options.txt	line 919
'regexpengine'	options.txt	line 920
'relativenumber'	options.txt	line 921
'remap'	options.txt	line 922
'renderoptions'	options.txt	line 923
'report'	options.txt	line 924
'restorescreen'	options.txt	line 925
'revins'	options.txt	line 926
'ri'	options.txt	line 927
'rightleft'	options.txt	line 928
'rightleftcmd'	options.txt	line 929
'rl'	options.txt	line 930
'rlc'	options.txt	line 931
'rnu'	options.txt	line 932
'ro'	options.txt	line 933
'rop'	options.txt	line 934
'rs'	options.txt	line 935
'rtp'	options.txt	line 936
'ru'	options.txt	line 937
'rubydll'	options.txt	line 938
'ruf'	options.txt	line 939
'ruler'	options.txt	line 940
'rulerformat'	options.txt	line 941
'runtimepath'	options.txt	line 942
'sb'	options.txt	line 943
'sbo'	options.txt	line 944
'sbr'	options.txt	line 945
'sc'	options.txt	line 946
'scb'	options.txt	line 947
'scf'	options.txt	line 948
'scl'	options.txt	line 949
'scr'	options.txt	line 950
'scroll'	options.txt	line 951
'scrollbind'	options.txt	line 952
'scrollfocus'	options.txt	line 953
'scrolljump'	options.txt	line 954
'scrolloff'	options.txt	line 955
'scrolloffpad'	options.txt	line 956
'scrollopt'	options.txt	line 957
'scs'	options.txt	line 958
'sect'	options.txt	line 959
'sections'	options.txt	line 960
'secure'	options.txt	line 961
'sel'	options.txt	line 962
'selection'	options.txt	line 963
'selectmode'	options.txt	line 964
'sessionoptions'	options.txt	line 965
'sft'	options.txt	line 966
'sh'	options.txt	line 967
'shcf'	options.txt	line 968
'shell'	options.txt	line 969
'shellcmdflag'	options.txt	line 970
'shellpipe'	options.txt	line 971
'shellquote'	options.txt	line 972
'shellredir'	options.txt	line 973
'shellslash'	options.txt	line 974
'shelltemp'	options.txt	line 975
'shelltype'	options.txt	line 976
'shellxescape'	options.txt	line 977
'shellxquote'	options.txt	line 978
'shiftround'	options.txt	line 979
'shiftwidth'	options.txt	line 980
'shm'	options.txt	line 981
'shortmess'	options.txt	line 982
'shortname'	options.txt	line 983
'showbreak'	options.txt	line 984
'showcmd'	options.txt	line 985
'showcmdloc'	options.txt	line 986
'showfulltag'	options.txt	line 987
'showmatch'	options.txt	line 988
'showmode'	options.txt	line 989
'showtabline'	options.txt	line 990
'showtabpanel'	options.txt	line 991
'shq'	options.txt	line 992
'si'	options.txt	line 993
'sidescroll'	options.txt	line 994
'sidescrolloff'	options.txt	line 995
'signcolumn'	options.txt	line 996
'siso'	options.txt	line 997
'sj'	options.txt	line 998
'slm'	options.txt	line 999
'sloc'	options.txt	line 1000
'slow'	vi_diff.txt	line 1001
'slowopen'	vi_diff.txt	line 1002
'sm'	options.txt	line 1003
'smartcase'	options.txt	line 1004
'smartindent'	options.txt	line 1005
'smarttab'	options.txt	line 1006
'smc'	options.txt	line 1007
'smd'	options.txt	line 1008
'smoothscroll'	options.txt	line 1009
'sms'	options.txt	line 1010
'sn'	options.txt	line 1011
'so'	options.txt	line 1012
'softtabstop'	options.txt	line 1013
'sol'	options.txt	line 1014
'sop'	options.txt	line 1015
'sourceany'	vi_diff.txt	line 1016
'sp'	options.txt	line 1017
'spc'	options.txt	line 1018
'spell'	options.txt	line 1019
'spellcapcheck'	options.txt	line 1020
'spellfile'	options.txt	line 1021
'spelllang'	options.txt	line 1022
'spelloptions'	options.txt	line 1023
'spellsuggest'	options.txt	line 1024
'spf'	options.txt	line 1025
'spk'	options.txt	line 1026
'spl'	options.txt	line 1027
'splitbelow'	options.txt	line 1028
'splitkeep'	options.txt	line 1029
'splitright'	options.txt	line 1030
'spo'	options.txt	line 1031
'spr'	options.txt	line 1032
'sps'	options.txt	line 1033
'sr'	options.txt	line 1034
'srr'	options.txt	line 1035
'ss'	options.txt	line 1036
'ssl'	options.txt	line 1037
'ssop'	options.txt	line 1038
'st'	options.txt	line 1039
'sta'	options.txt	line 1040
'stal'	options.txt	line 1041
'startofline'	options.txt	line 1042
'statusline'	options.txt	line 1043
'statuslineopt'	options.txt	line 1044
'stl'	options.txt	line 1045
'stlo'	options.txt	line 1046
'stmp'	options.txt	line 1047
'stpl'	options.txt	line 1048
'sts'	options.txt	line 1049
'su'	options.txt	line 1050
'sua'	options.txt	line 1051
'suffixes'	options.txt	line 1052
'suffixesadd'	options.txt	line 1053
'sw'	options.txt	line 1054
'swapfile'	options.txt	line 1055
'swapsync'	options.txt	line 1056
'swb'	options.txt	line 1057
'swf'	options.txt	line 1058
'switchbuf'	options.txt	line 1059
'sws'	options.txt	line 1060
'sxe'	options.txt	line 1061
'sxq'	options.txt	line 1062
'syn'	options.txt	line 1063
'synmaxcol'	options.txt	line 1064
'syntax'	options.txt	line 1065
't_#2'	term.txt	line 1066
't_#4'	term.txt	line 1067
't_&#37;1'	term.txt	line 1068
't_&#37;i'	term.txt	line 1069
't_&amp;8'	term.txt	line 1070
't_8b'	term.txt	line 1071
't_8f'	term.txt	line 1072
't_8u'	term.txt	line 1073
't_@7'	term.txt	line 1074
't_AB'	term.txt	line 1075
't_AF'	term.txt	line 1076
't_AL'	term.txt	line 1077
't_AU'	term.txt	line 1078
't_BD'	term.txt	line 1079
't_BE'	term.txt	line 1080
't_BS'	term.txt	line 1081
't_CF'	term.txt	line 1082
't_CS'	term.txt	line 1083
't_CV'	term.txt	line 1084
't_Ce'	term.txt	line 1085
't_Co'	term.txt	line 1086
't_Cs'	term.txt	line 1087
't_DL'	term.txt	line 1088
't_Ds'	term.txt	line 1089
't_EC'	term.txt	line 1090
't_EI'	term.txt	line 1091
't_ES'	term.txt	line 1092
't_F1'	term.txt	line 1093
't_F2'	term.txt	line 1094
't_F3'	term.txt	line 1095
't_F4'	term.txt	line 1096
't_F5'	term.txt	line 1097
't_F6'	term.txt	line 1098
't_F7'	term.txt	line 1099
't_F8'	term.txt	line 1100
't_F9'	term.txt	line 1101
't_GP'	term.txt	line 1102
't_IE'	term.txt	line 1103
't_IS'	term.txt	line 1104
't_K1'	term.txt	line 1105
't_K3'	term.txt	line 1106
't_K4'	term.txt	line 1107
't_K5'	term.txt	line 1108
't_K6'	term.txt	line 1109
't_K7'	term.txt	line 1110
't_K8'	term.txt	line 1111
't_K9'	term.txt	line 1112
't_KA'	term.txt	line 1113
't_KB'	term.txt	line 1114
't_KC'	term.txt	line 1115
't_KD'	term.txt	line 1116
't_KE'	term.txt	line 1117
't_KF'	term.txt	line 1118
't_KG'	term.txt	line 1119
't_KH'	term.txt	line 1120
't_KI'	term.txt	line 1121
't_KJ'	term.txt	line 1122
't_KK'	term.txt	line 1123
't_KL'	term.txt	line 1124
't_PE'	term.txt	line 1125
't_PS'	term.txt	line 1126
't_RB'	term.txt	line 1127
't_RC'	term.txt	line 1128
't_RF'	term.txt	line 1129
't_RI'	term.txt	line 1130
't_RK'	term.txt	line 1131
't_RS'	term.txt	line 1132
't_RT'	term.txt	line 1133
't_RV'	term.txt	line 1134
't_Ri'	term.txt	line 1135
't_SC'	term.txt	line 1136
't_SH'	term.txt	line 1137
't_SI'	term.txt	line 1138
't_SR'	term.txt	line 1139
't_ST'	term.txt	line 1140
't_Sb'	term.txt	line 1141
't_Sf'	term.txt	line 1142
't_Si'	term.txt	line 1143
't_TE'	term.txt	line 1144
't_TI'	term.txt	line 1145
't_Te'	term.txt	line 1146
't_Ts'	term.txt	line 1147
't_Us'	term.txt	line 1148
't_VS'	term.txt	line 1149
't_WP'	term.txt	line 1150
't_WS'	term.txt	line 1151
't_XM'	term.txt	line 1152
't_ZH'	term.txt	line 1153
't_ZR'	term.txt	line 1154
't_al'	term.txt	line 1155
't_bc'	term.txt	line 1156
't_cd'	term.txt	line 1157
't_ce'	term.txt	line 1158
't_cl'	term.txt	line 1159
't_cm'	term.txt	line 1160
't_cs'	term.txt	line 1161
't_da'	term.txt	line 1162
't_db'	term.txt	line 1163
't_dl'	term.txt	line 1164
't_ds'	term.txt	line 1165
't_fd'	term.txt	line 1166
't_fe'	term.txt	line 1167
't_fs'	term.txt	line 1168
't_k1'	term.txt	line 1169
't_k2'	term.txt	line 1170
't_k3'	term.txt	line 1171
't_k4'	term.txt	line 1172
't_k5'	term.txt	line 1173
't_k6'	term.txt	line 1174
't_k7'	term.txt	line 1175
't_k8'	term.txt	line 1176
't_k9'	term.txt	line 1177
't_k;'	term.txt	line 1178
't_kB'	term.txt	line 1179
't_kD'	term.txt	line 1180
't_kI'	term.txt	line 1181
't_kN'	term.txt	line 1182
't_kP'	term.txt	line 1183
't_kb'	term.txt	line 1184
't_kd'	term.txt	line 1185
't_ke'	term.txt	line 1186
't_kh'	term.txt	line 1187
't_kl'	term.txt	line 1188
't_kr'	term.txt	line 1189
't_ks'	term.txt	line 1190
't_ku'	term.txt	line 1191
't_le'	term.txt	line 1192
't_mb'	term.txt	line 1193
't_md'	term.txt	line 1194
't_me'	term.txt	line 1195
't_mr'	term.txt	line 1196
't_ms'	term.txt	line 1197
't_nd'	term.txt	line 1198
't_op'	term.txt	line 1199
't_se'	term.txt	line 1200
't_so'	term.txt	line 1201
't_sr'	term.txt	line 1202
't_star7'	term.txt	line 1203
't_te'	term.txt	line 1204
't_ti'	term.txt	line 1205
't_ts'	term.txt	line 1206
't_u7'	term.txt	line 1207
't_ue'	term.txt	line 1208
't_us'	term.txt	line 1209
't_ut'	term.txt	line 1210
't_vb'	term.txt	line 1211
't_ve'	term.txt	line 1212
't_vi'	term.txt	line 1213
't_vs'	term.txt	line 1214
't_xn'	term.txt	line 1215
't_xo'	term.txt	line 1216
't_xs'	term.txt	line 1217
'ta'	options.txt	line 1218
'tabclose'	options.txt	line 1219
'tabline'	options.txt	line 1220
'tabpagemax'	options.txt	line 1221
'tabpanel'	options.txt	line 1222
'tabpanelopt'	options.txt	line 1223
'tabstop'	options.txt	line 1224
'tag'	options.txt	line 1225
'tagbsearch'	options.txt	line 1226
'tagcase'	options.txt	line 1227
'tagfunc'	options.txt	line 1228
'taglength'	options.txt	line 1229
'tagrelative'	options.txt	line 1230
'tags'	options.txt	line 1231
'tagstack'	options.txt	line 1232
'tal'	options.txt	line 1233
'tb'	options.txt	line 1234
'tbi'	options.txt	line 1235
'tbidi'	options.txt	line 1236
'tbis'	options.txt	line 1237
'tbs'	options.txt	line 1238
'tc'	options.txt	line 1239
'tcl'	options.txt	line 1240
'tcldll'	options.txt	line 1241
'tenc'	options.txt	line 1242
'term'	options.txt	line 1243
'termbidi'	options.txt	line 1244
'termencoding'	options.txt	line 1245
'termguicolors'	options.txt	line 1246
'termresize'	options.txt	line 1247
'termsync'	options.txt	line 1248
'termwinkey'	options.txt	line 1249
'termwinscroll'	options.txt	line 1250
'termwinsize'	options.txt	line 1251
'termwintype'	options.txt	line 1252
'terse'	options.txt	line 1253
'textauto'	options.txt	line 1254
'textmode'	options.txt	line 1255
'textwidth'	options.txt	line 1256
'tf'	options.txt	line 1257
'tfu'	options.txt	line 1258
'tgc'	options.txt	line 1259
'tgst'	options.txt	line 1260
'thesaurus'	options.txt	line 1261
'thesaurusfunc'	options.txt	line 1262
'tildeop'	options.txt	line 1263
'timeout'	options.txt	line 1264
'timeoutlen'	options.txt	line 1265
'title'	options.txt	line 1266
'titlelen'	options.txt	line 1267
'titleold'	options.txt	line 1268
'titlestring'	options.txt	line 1269
'tl'	options.txt	line 1270
'tm'	options.txt	line 1271
'to'	options.txt	line 1272
'toolbar'	options.txt	line 1273
'toolbariconsize'	options.txt	line 1274
'top'	options.txt	line 1275
'tpl'	options.txt	line 1276
'tplo'	options.txt	line 1277
'tpm'	options.txt	line 1278
'tr'	options.txt	line 1279
'trz'	options.txt	line 1280
'ts'	options.txt	line 1281
'tsl'	options.txt	line 1282
'tsr'	options.txt	line 1283
'tsrfu'	options.txt	line 1284
'tsy'	options.txt	line 1285
'ttimeout'	options.txt	line 1286
'ttimeoutlen'	options.txt	line 1287
'ttm'	options.txt	line 1288
'tty'	options.txt	line 1289
'ttybuiltin'	options.txt	line 1290
'ttyfast'	options.txt	line 1291
'ttym'	options.txt	line 1292
'ttymouse'	options.txt	line 1293
'ttyscroll'	options.txt	line 1294
'ttytype'	options.txt	line 1295
'tw'	options.txt	line 1296
'twk'	options.txt	line 1297
'tws'	options.txt	line 1298
'twsl'	options.txt	line 1299
'twt'	options.txt	line 1300
'tx'	options.txt	line 1301
'uc'	options.txt	line 1302
'udf'	options.txt	line 1303
'udir'	options.txt	line 1304
'ul'	options.txt	line 1305
'undodir'	options.txt	line 1306
'undofile'	options.txt	line 1307
'undolevels'	options.txt	line 1308
'undoreload'	options.txt	line 1309
'updatecount'	options.txt	line 1310
'updatetime'	options.txt	line 1311
'ur'	options.txt	line 1312
'ut'	options.txt	line 1313
'varsofttabstop'	options.txt	line 1314
'vartabstop'	options.txt	line 1315
'vb'	options.txt	line 1316
'vbs'	options.txt	line 1317
'vdir'	options.txt	line 1318
've'	options.txt	line 1319
'verbose'	options.txt	line 1320
'verbosefile'	options.txt	line 1321
'vfile'	options.txt	line 1322
'vi'	options.txt	line 1323
'viewdir'	options.txt	line 1324
'viewoptions'	options.txt	line 1325
'vif'	options.txt	line 1326
'viminfo'	options.txt	line 1327
'viminfofile'	options.txt	line 1328
'virtualedit'	options.txt	line 1329
'visualbell'	options.txt	line 1330
'vop'	options.txt	line 1331
'vsts'	options.txt	line 1332
'vts'	options.txt	line 1333
'w1200'	vi_diff.txt	line 1334
'w300'	vi_diff.txt	line 1335
'w9600'	vi_diff.txt	line 1336
'wa'	options.txt	line 1337
'wak'	options.txt	line 1338
'warn'	options.txt	line 1339
'wb'	options.txt	line 1340
'wc'	options.txt	line 1341
'wcm'	options.txt	line 1342
'wcr'	options.txt	line 1343
'wd'	options.txt	line 1344
'weirdinvert'	options.txt	line 1345
'wfb'	options.txt	line 1346
'wfh'	options.txt	line 1347
'wfw'	options.txt	line 1348
'wh'	options.txt	line 1349
'whichwrap'	options.txt	line 1350
'whl'	options.txt	line 1351
'wi'	options.txt	line 1352
'wic'	options.txt	line 1353
'wig'	options.txt	line 1354
'wildchar'	options.txt	line 1355
'wildcharm'	options.txt	line 1356
'wildignore'	options.txt	line 1357
'wildignorecase'	options.txt	line 1358
'wildmenu'	options.txt	line 1359
'wildmode'	options.txt	line 1360
'wildoptions'	options.txt	line 1361
'wim'	options.txt	line 1362
'winaltkeys'	options.txt	line 1363
'wincolor'	options.txt	line 1364
'window'	options.txt	line 1365
'winfixbuf'	options.txt	line 1366
'winfixheight'	options.txt	line 1367
'winfixwidth'	options.txt	line 1368
'winheight'	options.txt	line 1369
'winhighlight'	options.txt	line 1370
'winminheight'	options.txt	line 1371
'winminwidth'	options.txt	line 1372
'winptydll'	options.txt	line 1373
'winwidth'	options.txt	line 1374
'wiv'	options.txt	line 1375
'wiw'	options.txt	line 1376
'wlseat'	options.txt	line 1377
'wlsteal'	options.txt	line 1378
'wltimeoutlen'	options.txt	line 1379
'wm'	options.txt	line 1380
'wmh'	options.txt	line 1381
'wmnu'	options.txt	line 1382
'wmw'	options.txt	line 1383
'wop'	options.txt	line 1384
'wrap'	options.txt	line 1385
'wrapmargin'	options.txt	line 1386
'wrapscan'	options.txt	line 1387
'write'	options.txt	line 1388
'writeany'	options.txt	line 1389
'writebackup'	options.txt	line 1390
'writedelay'	options.txt	line 1391
'ws'	options.txt	line 1392
'wse'	options.txt	line 1393
'wst'	options.txt	line 1394
'wtm'	options.txt	line 1395
'ww'	options.txt	line 1396
'xtermcodes'	options.txt	line 1397
'{	motion.txt	line 1398
'}	motion.txt	line 1399
(	motion.txt	line 1400
)	motion.txt	line 1401
+	motion.txt	line 1402
++bad	editing.txt	line 1403
++bin	editing.txt	line 1404
++builtin_terms	various.txt	line 1405
++edit	editing.txt	line 1406
++enc	editing.txt	line 1407
++ff	editing.txt	line 1408
++nobin	editing.txt	line 1409
++opt	editing.txt	line 1410
+ARP	various.txt	line 1411
+GUI_Athena	various.txt	line 1412
+GUI_GTK	various.txt	line 1413
+GUI_Motif	various.txt	line 1414
+GUI_Photon	various.txt	line 1415
+GUI_neXtaw	various.txt	line 1416
+X11	various.txt	line 1417
+acl	various.txt	line 1418
+arabic	various.txt	line 1419
+autochdir	various.txt	line 1420
+autocmd	various.txt	line 1421
+autoservername	various.txt	line 1422
+balloon_eval	various.txt	line 1423
+balloon_eval_term	various.txt	line 1424
+browse	various.txt	line 1425
+byte_offset	various.txt	line 1426
+channel	various.txt	line 1427
+cindent	various.txt	line 1428
+clientserver	various.txt	line 1429
+clipboard	various.txt	line 1430
+clipboard_provider	various.txt	line 1431
+clipboard_working	various.txt	line 1432
+cmd	editing.txt	line 1433
+cmdline_compl	various.txt	line 1434
+cmdline_hist	various.txt	line 1435
+cmdline_info	various.txt	line 1436
+cmdwin	various.txt	line 1437
+comments	various.txt	line 1438
+conceal	various.txt	line 1439
+cryptv	various.txt	line 1440
+cscope	various.txt	line 1441
+cursorbind	various.txt	line 1442
+cursorshape	various.txt	line 1443
+debug	various.txt	line 1444
+dialog_con	various.txt	line 1445
+dialog_con_gui	various.txt	line 1446
+dialog_gui	various.txt	line 1447
+diff	various.txt	line 1448
+digraphs	various.txt	line 1449
+directx	various.txt	line 1450
+dnd	various.txt	line 1451
+emacs_tags	various.txt	line 1452
+eval	various.txt	line 1453
+ex_extra	various.txt	line 1454
+extra_search	various.txt	line 1455
+farsi	various.txt	line 1456
+feature-list	various.txt	line 1457
+file_in_path	various.txt	line 1458
+find_in_path	various.txt	line 1459
+float	various.txt	line 1460
+folding	various.txt	line 1461
+footer	various.txt	line 1462
+fork	various.txt	line 1463
+gettext	various.txt	line 1464
+hangul_input	various.txt	line 1465
+iconv	various.txt	line 1466
+iconv/dyn	various.txt	line 1467
+insert_expand	various.txt	line 1468
+ipv6	various.txt	line 1469
+job	various.txt	line 1470
+jumplist	various.txt	line 1471
+keymap	various.txt	line 1472
+lambda	various.txt	line 1473
+langmap	various.txt	line 1474
+libcall	various.txt	line 1475
+linebreak	various.txt	line 1476
+lispindent	various.txt	line 1477
+listcmds	various.txt	line 1478
+localmap	various.txt	line 1479
+lua	various.txt	line 1480
+lua/dyn	various.txt	line 1481
+menu	various.txt	line 1482
+mksession	various.txt	line 1483
+modify_fname	various.txt	line 1484
+mouse	various.txt	line 1485
+mouse_dec	various.txt	line 1486
+mouse_gpm	various.txt	line 1487
+mouse_gpm/dyn	various.txt	line 1488
+mouse_jsbterm	various.txt	line 1489
+mouse_netterm	various.txt	line 1490
+mouse_pterm	various.txt	line 1491
+mouse_sgr	various.txt	line 1492
+mouse_sysmouse	various.txt	line 1493
+mouse_urxvt	various.txt	line 1494
+mouse_xterm	various.txt	line 1495
+mouseshape	various.txt	line 1496
+multi_byte	various.txt	line 1497
+multi_byte_ime	various.txt	line 1498
+multi_lang	various.txt	line 1499
+mzscheme	various.txt	line 1500
+mzscheme/dyn	various.txt	line 1501
+netbeans_intg	various.txt	line 1502
+num64	various.txt	line 1503
+ole	various.txt	line 1504
+packages	various.txt	line 1505
+path_extra	various.txt	line 1506
+perl	various.txt	line 1507
+perl/dyn	various.txt	line 1508
+persistent_undo	various.txt	line 1509
+popupwin	various.txt	line 1510
+postscript	various.txt	line 1511
+printer	various.txt	line 1512
+profile	various.txt	line 1513
+python	various.txt	line 1514
+python/dyn	various.txt	line 1515
+python3	various.txt	line 1516
+python3/dyn	various.txt	line 1517
+python3/dyn-stable	various.txt	line 1518
+quickfix	various.txt	line 1519
+reltime	various.txt	line 1520
+rightleft	various.txt	line 1521
+ruby	various.txt	line 1522
+ruby/dyn	various.txt	line 1523
+scrollbind	various.txt	line 1524
+signs	various.txt	line 1525
+smartindent	various.txt	line 1526
+socketserver	various.txt	line 1527
+sodium	various.txt	line 1528
+sound	various.txt	line 1529
+spell	various.txt	line 1530
+startuptime	various.txt	line 1531
+statusline	various.txt	line 1532
+sun_workshop	various.txt	line 1533
+syntax	various.txt	line 1534
+system()	various.txt	line 1535
+tabpanel	various.txt	line 1536
+tag_any_white	various.txt	line 1537
+tag_binary	various.txt	line 1538
+tag_old_static	various.txt	line 1539
+tcl	various.txt	line 1540
+tcl/dyn	various.txt	line 1541
+termguicolors	various.txt	line 1542
+terminal	various.txt	line 1543
+terminfo	various.txt	line 1544
+termresponse	various.txt	line 1545
+textobjects	various.txt	line 1546
+textprop	various.txt	line 1547
+tgetent	various.txt	line 1548
+timers	various.txt	line 1549
+title	various.txt	line 1550
+toolbar	various.txt	line 1551
+unix	builtin.txt	line 1552
+user_commands	various.txt	line 1553
+vartabs	various.txt	line 1554
+vertsplit	various.txt	line 1555
+vim9script	various.txt	line 1556
+viminfo	various.txt	line 1557
+virtualedit	various.txt	line 1558
+visual	various.txt	line 1559
+visualextra	various.txt	line 1560
+vreplace	various.txt	line 1561
+vtp	various.txt	line 1562
+wayland	various.txt	line 1563
+wayland_clipboard	various.txt	line 1564
+wildignore	various.txt	line 1565
+wildmenu	various.txt	line 1566
+windows	various.txt	line 1567
+writebackup	various.txt	line 1568
+xattr	various.txt	line 1569
+xfontset	various.txt	line 1570
+xim	various.txt	line 1571
+xpm	various.txt	line 1572
+xpm_w32	various.txt	line 1573
+xsmp	various.txt	line 1574
+xsmp_interact	various.txt	line 1575
+xterm_clipboard	various.txt	line 1576
+xterm_save	various.txt	line 1577
,	motion.txt	line 1578
-	motion.txt	line 1579
-+	starting.txt	line 1580
-+/	starting.txt	line 1581
-+c	starting.txt	line 1582
-+reverse	gui_x11.txt	line 1583
-+rv	gui_x11.txt	line 1584
--	starting.txt	line 1585
--clean	starting.txt	line 1587
--clientserver	remote.txt	line 1588
--cmd	starting.txt	line 1589
--echo-wid	starting.txt	line 1590
--gui-dialog-file	starting.txt	line 1591
--help	starting.txt	line 1592
--literal	starting.txt	line 1593
--log	starting.txt	line 1594
--nofork	starting.txt	line 1595
--noplugin	starting.txt	line 1596
--not-a-term	starting.txt	line 1597
--remote	remote.txt	line 1598
--remote-expr	remote.txt	line 1599
--remote-send	remote.txt	line 1600
--remote-silent	remote.txt	line 1601
--remote-tab	remote.txt	line 1602
--remote-tab-silent	remote.txt	line 1603
--remote-tab-wait	remote.txt	line 1604
--remote-tab-wait-silent	remote.txt	line 1605
--remote-wait	remote.txt	line 1606
--remote-wait-silent	remote.txt	line 1607
--role	starting.txt	line 1608
--serverlist	remote.txt	line 1609
--servername	remote.txt	line 1610
--socketid	starting.txt	line 1611
--startuptime	starting.txt	line 1612
--ttyfail	starting.txt	line 1613
--version	starting.txt	line 1614
--windowid	starting.txt	line 1615
-&gt;	eval.txt	line 1616
-?	starting.txt	line 1617
-A	starting.txt	line 1618
-C	starting.txt	line 1619
-D	starting.txt	line 1620
-E	starting.txt	line 1621
-F	starting.txt	line 1622
-H	starting.txt	line 1623
-L	starting.txt	line 1624
-M	starting.txt	line 1625
-N	starting.txt	line 1626
-O	starting.txt	line 1627
-P	starting.txt	line 1628
-R	starting.txt	line 1629
-S	starting.txt	line 1630
-T	starting.txt	line 1631
-U	starting.txt	line 1632
-V	starting.txt	line 1633
-W	starting.txt	line 1634
-X	starting.txt	line 1635
-Y	starting.txt	line 1636
-Z	starting.txt	line 1637
-b	starting.txt	line 1638
-background	gui_x11.txt	line 1639
-bg	gui_x11.txt	line 1640
-boldfont	gui_x11.txt	line 1641
-borderwidth	gui_x11.txt	line 1642
-bw	gui_x11.txt	line 1643
-c	starting.txt	line 1644
-d	starting.txt	line 1645
-dev	starting.txt	line 1646
-display	gui_x11.txt	line 1647
-e	starting.txt	line 1648
-f	starting.txt	line 1649
-fg	gui_x11.txt	line 1650
-file	starting.txt	line 1651
-fn	gui_x11.txt	line 1652
-font	gui_x11.txt	line 1653
-foreground	gui_x11.txt	line 1654
-g	starting.txt	line 1655
-geom	gui_x11.txt	line 1656
-geometry	gui_x11.txt	line 1657
-geometry-example	gui_x11.txt	line 1658
-gui	gui_x11.txt	line 1659
-h	starting.txt	line 1660
-i	starting.txt	line 1661
-iconic	gui_x11.txt	line 1662
-italicfont	gui_x11.txt	line 1663
-l	starting.txt	line 1664
-m	starting.txt	line 1665
-menufont	gui_x11.txt	line 1666
-menufontset	gui_x11.txt	line 1667
-menuheight	gui_x11.txt	line 1668
-mf	gui_x11.txt	line 1669
-mh	gui_x11.txt	line 1670
-n	starting.txt	line 1671
-nb	starting.txt	line 1672
-o	starting.txt	line 1673
-p	starting.txt	line 1674
-q	starting.txt	line 1675
-qf	starting.txt	line 1676
-r	starting.txt	line 1677
-register	if_ole.txt	line 1678
-reverse	gui_x11.txt	line 1679
-rv	gui_x11.txt	line 1680
-s	starting.txt	line 1681
-s-ex	starting.txt	line 1682
-scrollbarwidth	gui_x11.txt	line 1683
-silent	if_ole.txt	line 1684
-sw	gui_x11.txt	line 1685
-t	starting.txt	line 1686
-tag	starting.txt	line 1687
-u	starting.txt	line 1688
-ul	gui_x11.txt	line 1689
-unregister	if_ole.txt	line 1690
-v	starting.txt	line 1691
-vim	starting.txt	line 1692
-w	starting.txt	line 1693
-w_nr	starting.txt	line 1694
-x	starting.txt	line 1695
-xrm	gui_x11.txt	line 1696
-y	starting.txt	line 1697
.	repeat.txt	line 1698
...	userfunc.txt	line 1699
.Xdefaults	gui_x11.txt	line 1700
.aff	spell.txt	line 1701
.dic	spell.txt	line 1702
.exrc	starting.txt	line 1703
.gvimrc	gui.txt	line 1704
.netrwbook	pi_netrw.txt	line 1705
.netrwhist	pi_netrw.txt	line 1706
.vimrc	starting.txt	line 1707
/	pattern.txt	line 1708
/$	pattern.txt	line 1709
/.	pattern.txt	line 1710
//	version7.txt	line 1711
//;	pattern.txt	line 1712
/&lt;CR&gt;	pattern.txt	line 1713
/[[.	pattern.txt	line 1714
/[[=	pattern.txt	line 1715
/[\n]	pattern.txt	line 1716
/[]	pattern.txt	line 1717
/\	pattern.txt	line 1718
/\$	pattern.txt	line 1719
/\&#37;#	pattern.txt	line 1720
/\&#37;#=	pattern.txt	line 1721
/\&#37;$	pattern.txt	line 1722
/\&#37;'m	pattern.txt	line 1723
/\&#37;(	pattern.txt	line 1724
/\&#37;(\)	pattern.txt	line 1725
/\&#37;&lt;'m	pattern.txt	line 1726
/\&#37;&lt;c	pattern.txt	line 1727
/\&#37;&lt;l	pattern.txt	line 1728
/\&#37;&lt;v	pattern.txt	line 1729
/\&#37;&gt;'m	pattern.txt	line 1730
/\&#37;&gt;c	pattern.txt	line 1731
/\&#37;&gt;l	pattern.txt	line 1732
/\&#37;&gt;v	pattern.txt	line 1733
/\&#37;C	pattern.txt	line 1734
/\&#37;U	pattern.txt	line 1735
/\&#37;V	pattern.txt	line 1736
/\&#37;[]	pattern.txt	line 1737
/\&#37;^	pattern.txt	line 1738
/\&#37;c	pattern.txt	line 1739
/\&#37;d	pattern.txt	line 1740
/\&#37;l	pattern.txt	line 1741
/\&#37;o	pattern.txt	line 1742
/\&#37;u	pattern.txt	line 1743
/\&#37;v	pattern.txt	line 1744
/\&#37;x	pattern.txt	line 1745
/\&amp;	pattern.txt	line 1746
/\(	pattern.txt	line 1747
/\(\)	pattern.txt	line 1748
/\)	pattern.txt	line 1749
/\+	pattern.txt	line 1750
/\.	pattern.txt	line 1751
/\1	pattern.txt	line 1752
/\2	pattern.txt	line 1753
/\3	pattern.txt	line 1754
/\9	pattern.txt	line 1755
/\&lt;	pattern.txt	line 1756
/\=	pattern.txt	line 1757
/\&gt;	pattern.txt	line 1758
/\?	pattern.txt	line 1759
/\@!	pattern.txt	line 1760
/\@&lt;!	pattern.txt	line 1761
/\@&lt;=	pattern.txt	line 1762
/\@=	pattern.txt	line 1763
/\@&gt;	pattern.txt	line 1764
/\A	pattern.txt	line 1765
/\C	pattern.txt	line 1766
/\D	pattern.txt	line 1767
/\F	pattern.txt	line 1768
/\H	pattern.txt	line 1769
/\I	pattern.txt	line 1770
/\K	pattern.txt	line 1771
/\L	pattern.txt	line 1772
/\M	pattern.txt	line 1773
/\O	pattern.txt	line 1774
/\P	pattern.txt	line 1775
/\S	pattern.txt	line 1776
/\U	pattern.txt	line 1777
/\V	pattern.txt	line 1778
/\W	pattern.txt	line 1779
/\X	pattern.txt	line 1780
/\Z	pattern.txt	line 1781
/\[]	pattern.txt	line 1782
/\\	pattern.txt	line 1783
/\]	pattern.txt	line 1784
/\^	pattern.txt	line 1785
/\_	pattern.txt	line 1786
/\_$	pattern.txt	line 1787
/\_.	pattern.txt	line 1788
/\_A	pattern.txt	line 1789
/\_D	pattern.txt	line 1790
/\_F	pattern.txt	line 1791
/\_H	pattern.txt	line 1792
/\_I	pattern.txt	line 1793
/\_K	pattern.txt	line 1794
/\_L	pattern.txt	line 1795
/\_O	pattern.txt	line 1796
/\_P	pattern.txt	line 1797
/\_S	pattern.txt	line 1798
/\_U	pattern.txt	line 1799
/\_W	pattern.txt	line 1800
/\_X	pattern.txt	line 1801
/\_[]	pattern.txt	line 1802
/\_^	pattern.txt	line 1803
/\_a	pattern.txt	line 1804
/\_d	pattern.txt	line 1805
/\_f	pattern.txt	line 1806
/\_h	pattern.txt	line 1807
/\_i	pattern.txt	line 1808
/\_k	pattern.txt	line 1809
/\_l	pattern.txt	line 1810
/\_o	pattern.txt	line 1811
/\_p	pattern.txt	line 1812
/\_s	pattern.txt	line 1813
/\_u	pattern.txt	line 1814
/\_w	pattern.txt	line 1815
/\_x	pattern.txt	line 1816
/\a	pattern.txt	line 1817
/\b	pattern.txt	line 1818
/\bar	pattern.txt	line 1819
/\c	pattern.txt	line 1820
/\d	pattern.txt	line 1821
/\e	pattern.txt	line 1822
/\f	pattern.txt	line 1823
/\h	pattern.txt	line 1824
/\i	pattern.txt	line 1825
/\k	pattern.txt	line 1826
/\l	pattern.txt	line 1827
/\m	pattern.txt	line 1828
/\n	pattern.txt	line 1829
/\o	pattern.txt	line 1830
/\p	pattern.txt	line 1831
/\r	pattern.txt	line 1832
/\s	pattern.txt	line 1833
/\star	pattern.txt	line 1834
/\t	pattern.txt	line 1835
/\u	pattern.txt	line 1836
/\v	pattern.txt	line 1837
/\w	pattern.txt	line 1838
/\x	pattern.txt	line 1839
/\z(	syntax.txt	line 1840
/\z(\)	syntax.txt	line 1841
/\z1	syntax.txt	line 1842
/\z2	syntax.txt	line 1843
/\z3	syntax.txt	line 1844
/\z4	syntax.txt	line 1845
/\z5	syntax.txt	line 1846
/\z6	syntax.txt	line 1847
/\z7	syntax.txt	line 1848
/\z8	syntax.txt	line 1849
/\z9	syntax.txt	line 1850
/\ze	pattern.txt	line 1851
/\zs	pattern.txt	line 1852
/\{	pattern.txt	line 1853
/\{-	pattern.txt	line 1854
/\~	pattern.txt	line 1855
/^	pattern.txt	line 1856
/_&lt;Tab&gt;	cmdline.txt	line 1857
/_CTRL-G	cmdline.txt	line 1858
/_CTRL-L	cmdline.txt	line 1859
/_CTRL-T	cmdline.txt	line 1860
/atom	pattern.txt	line 1861
/bar	pattern.txt	line 1862
/branch	pattern.txt	line 1863
/character-classes	pattern.txt	line 1864
/collection	pattern.txt	line 1865
/concat	pattern.txt	line 1866
/dyn	various.txt	line 1867
/ignorecase	pattern.txt	line 1868
/magic	pattern.txt	line 1869
/multi	pattern.txt	line 1870
/ordinary-atom	pattern.txt	line 1871
/pattern	pattern.txt	line 1872
/piece	pattern.txt	line 1873
/star	pattern.txt	line 1874
/zero-width	pattern.txt	line 1875
/~	pattern.txt	line 1876
0	motion.txt	line 1877
01.1	usr_01.txt	line 1878
01.2	usr_01.txt	line 1879
01.3	usr_01.txt	line 1880
01.4	usr_01.txt	line 1881
02.1	usr_02.txt	line 1882
02.2	usr_02.txt	line 1883
02.3	usr_02.txt	line 1884
02.4	usr_02.txt	line 1885
02.5	usr_02.txt	line 1886
02.6	usr_02.txt	line 1887
02.7	usr_02.txt	line 1888
02.8	usr_02.txt	line 1889
03.1	usr_03.txt	line 1890
03.10	usr_03.txt	line 1891
03.2	usr_03.txt	line 1892
03.3	usr_03.txt	line 1893
03.4	usr_03.txt	line 1894
03.5	usr_03.txt	line 1895
03.6	usr_03.txt	line 1896
03.7	usr_03.txt	line 1897
03.8	usr_03.txt	line 1898
03.9	usr_03.txt	line 1899
04.1	usr_04.txt	line 1900
04.10	usr_04.txt	line 1901
04.2	usr_04.txt	line 1902
04.3	usr_04.txt	line 1903
04.4	usr_04.txt	line 1904
04.5	usr_04.txt	line 1905
04.6	usr_04.txt	line 1906
04.7	usr_04.txt	line 1907
04.8	usr_04.txt	line 1908
04.9	usr_04.txt	line 1909
05.1	usr_05.txt	line 1910
05.2	usr_05.txt	line 1911
05.3	usr_05.txt	line 1912
05.4	usr_05.txt	line 1913
05.5	usr_05.txt	line 1914
05.6	usr_05.txt	line 1915
05.7	usr_05.txt	line 1916
05.8	usr_05.txt	line 1917
05.9	usr_05.txt	line 1918
06.1	usr_06.txt	line 1919
06.2	usr_06.txt	line 1920
06.3	usr_06.txt	line 1921
06.4	usr_06.txt	line 1922
06.5	usr_06.txt	line 1923
06.6	usr_06.txt	line 1924
07.1	usr_07.txt	line 1925
07.2	usr_07.txt	line 1926
07.3	usr_07.txt	line 1927
07.4	usr_07.txt	line 1928
07.5	usr_07.txt	line 1929
07.6	usr_07.txt	line 1930
07.7	usr_07.txt	line 1931
08.1	usr_08.txt	line 1932
08.2	usr_08.txt	line 1933
08.3	usr_08.txt	line 1934
08.4	usr_08.txt	line 1935
08.5	usr_08.txt	line 1936
08.6	usr_08.txt	line 1937
08.7	usr_08.txt	line 1938
08.8	usr_08.txt	line 1939
08.9	usr_08.txt	line 1940
09.1	usr_09.txt	line 1941
09.2	usr_09.txt	line 1942
09.3	usr_09.txt	line 1943
09.4	usr_09.txt	line 1944
0o	eval.txt	line 1945
0x	eval.txt	line 1946
10.1	usr_10.txt	line 1947
10.2	usr_10.txt	line 1948
10.3	usr_10.txt	line 1949
10.4	usr_10.txt	line 1950
10.5	usr_10.txt	line 1951
10.6	usr_10.txt	line 1952
10.7	usr_10.txt	line 1953
10.8	usr_10.txt	line 1954
10.9	usr_10.txt	line 1955
11.1	usr_11.txt	line 1956
11.2	usr_11.txt	line 1957
11.3	usr_11.txt	line 1958
11.4	usr_11.txt	line 1959
12.1	usr_12.txt	line 1960
12.2	usr_12.txt	line 1961
12.3	usr_12.txt	line 1962
12.4	usr_12.txt	line 1963
12.5	usr_12.txt	line 1964
12.6	usr_12.txt	line 1965
12.7	usr_12.txt	line 1966
12.8	usr_12.txt	line 1967
1gD	pattern.txt	line 1968
1gd	pattern.txt	line 1969
20.1	usr_20.txt	line 1970
20.2	usr_20.txt	line 1971
20.3	usr_20.txt	line 1972
20.4	usr_20.txt	line 1973
20.5	usr_20.txt	line 1974
21.1	usr_21.txt	line 1975
21.2	usr_21.txt	line 1976
21.3	usr_21.txt	line 1977
21.4	usr_21.txt	line 1978
21.5	usr_21.txt	line 1979
21.6	usr_21.txt	line 1980
22.1	usr_22.txt	line 1981
22.2	usr_22.txt	line 1982
22.3	usr_22.txt	line 1983
22.4	usr_22.txt	line 1984
23.1	usr_23.txt	line 1985
23.2	usr_23.txt	line 1986
23.3	usr_23.txt	line 1987
23.4	usr_23.txt	line 1988
23.5	usr_23.txt	line 1989
24.1	usr_24.txt	line 1990
24.10	usr_24.txt	line 1991
24.2	usr_24.txt	line 1992
24.3	usr_24.txt	line 1993
24.4	usr_24.txt	line 1994
24.5	usr_24.txt	line 1995
24.6	usr_24.txt	line 1996
24.7	usr_24.txt	line 1997
24.8	usr_24.txt	line 1998
24.9	usr_24.txt	line 1999
25.1	usr_25.txt	line 2000
25.2	usr_25.txt	line 2001
25.3	usr_25.txt	line 2002
25.4	usr_25.txt	line 2003
25.5	usr_25.txt	line 2004
26.1	usr_26.txt	line 2005
26.2	usr_26.txt	line 2006
26.3	usr_26.txt	line 2007
26.4	usr_26.txt	line 2008
27.1	usr_27.txt	line 2009
27.2	usr_27.txt	line 2010
27.3	usr_27.txt	line 2011
27.4	usr_27.txt	line 2012
27.5	usr_27.txt	line 2013
27.6	usr_27.txt	line 2014
27.7	usr_27.txt	line 2015
27.8	usr_27.txt	line 2016
27.9	usr_27.txt	line 2017
28.1	usr_28.txt	line 2018
28.10	usr_28.txt	line 2019
28.2	usr_28.txt	line 2020
28.3	usr_28.txt	line 2021
28.4	usr_28.txt	line 2022
28.5	usr_28.txt	line 2023
28.6	usr_28.txt	line 2024
28.7	usr_28.txt	line 2025
28.8	usr_28.txt	line 2026
28.9	usr_28.txt	line 2027
29.1	usr_29.txt	line 2028
29.2	usr_29.txt	line 2029
29.3	usr_29.txt	line 2030
29.4	usr_29.txt	line 2031
29.5	usr_29.txt	line 2032
2html.vim	syntax.txt	line 2033
30.1	usr_30.txt	line 2034
30.2	usr_30.txt	line 2035
30.3	usr_30.txt	line 2036
30.4	usr_30.txt	line 2037
30.5	usr_30.txt	line 2038
30.6	usr_30.txt	line 2039
31.1	usr_31.txt	line 2040
31.2	usr_31.txt	line 2041
31.3	usr_31.txt	line 2042
31.4	usr_31.txt	line 2043
31.5	usr_31.txt	line 2044
32.1	usr_32.txt	line 2045
32.2	usr_32.txt	line 2046
32.3	usr_32.txt	line 2047
32.4	usr_32.txt	line 2048
40.1	usr_40.txt	line 2049
40.2	usr_40.txt	line 2050
40.3	usr_40.txt	line 2051
41.1	usr_41.txt	line 2052
41.10	usr_41.txt	line 2053
41.11	usr_41.txt	line 2054
41.12	usr_41.txt	line 2055
41.2	usr_41.txt	line 2056
41.3	usr_41.txt	line 2057
41.4	usr_41.txt	line 2058
41.5	usr_41.txt	line 2059
41.6	usr_41.txt	line 2060
41.7	usr_41.txt	line 2061
41.8	usr_41.txt	line 2062
41.9	usr_41.txt	line 2063
42	usr_42.txt	line 2064
42.1	usr_42.txt	line 2065
42.2	usr_42.txt	line 2066
42.3	usr_42.txt	line 2067
42.4	usr_42.txt	line 2068
43.1	usr_43.txt	line 2069
43.2	usr_43.txt	line 2070
44.1	usr_44.txt	line 2071
44.10	usr_44.txt	line 2072
44.11	usr_44.txt	line 2073
44.12	usr_44.txt	line 2074
44.2	usr_44.txt	line 2075
44.3	usr_44.txt	line 2076
44.4	usr_44.txt	line 2077
44.5	usr_44.txt	line 2078
44.6	usr_44.txt	line 2079
44.7	usr_44.txt	line 2080
44.8	usr_44.txt	line 2081
44.9	usr_44.txt	line 2082
45.1	usr_45.txt	line 2083
45.2	usr_45.txt	line 2084
45.3	usr_45.txt	line 2085
45.4	usr_45.txt	line 2086
45.5	usr_45.txt	line 2087
50.1	usr_50.txt	line 2088
50.2	usr_50.txt	line 2089
50.3	usr_50.txt	line 2090
51.1	usr_51.txt	line 2091
51.2	usr_51.txt	line 2092
51.3	usr_51.txt	line 2093
51.4	usr_51.txt	line 2094
52.1	usr_52.txt	line 2095
52.2	usr_52.txt	line 2096
52.3	usr_52.txt	line 2097
52.4	usr_52.txt	line 2098
52.5	usr_52.txt	line 2099
52.6	usr_52.txt	line 2100
8g8	various.txt	line 2101
90.1	usr_90.txt	line 2102
90.2	usr_90.txt	line 2103
90.3	usr_90.txt	line 2104
90.4	usr_90.txt	line 2105
90.5	usr_90.txt	line 2106
:	cmdline.txt	line 2107
:!	various.txt	line 2108
:!!	various.txt	line 2109
:!cmd	various.txt	line 2110
:!start	os_win32.txt	line 2111
:#	various.txt	line 2112
:#!	various.txt	line 2113
:$	cmdline.txt	line 2114
:&#37;	cmdline.txt	line 2115
:&amp;	change.txt	line 2116
:&amp;&amp;	change.txt	line 2117
:''	cmdline.txt	line 2118
:'(	cmdline.txt	line 2119
:')	cmdline.txt	line 2120
:'.	cmdline.txt	line 2121
:'&lt;	cmdline.txt	line 2122
:'&gt;	cmdline.txt	line 2123
:'X	cmdline.txt	line 2124
:'[	cmdline.txt	line 2125
:']	cmdline.txt	line 2126
:'^	cmdline.txt	line 2127
:'quote	cmdline.txt	line 2128
:'x	cmdline.txt	line 2129
:'{	cmdline.txt	line 2130
:'}	cmdline.txt	line 2131
:++	vim9.txt	line 2132
:,	cmdline.txt	line 2133
:--	vim9.txt	line 2134
:.	cmdline.txt	line 2135
:/	cmdline.txt	line 2136
:0file	editing.txt	line 2137
:2match	pattern.txt	line 2138
:3match	pattern.txt	line 2139
::.	cmdline.txt	line 2140
::8	cmdline.txt	line 2141
::S	cmdline.txt	line 2142
::e	cmdline.txt	line 2143
::gs	cmdline.txt	line 2144
::h	cmdline.txt	line 2145
::p	cmdline.txt	line 2146
::r	cmdline.txt	line 2147
::s	cmdline.txt	line 2148
::t	cmdline.txt	line 2149
::~	cmdline.txt	line 2150
:;	cmdline.txt	line 2151
:&lt;	change.txt	line 2152
:&lt;abuf&gt;	cmdline.txt	line 2153
:&lt;afile&gt;	cmdline.txt	line 2154
:&lt;amatch&gt;	cmdline.txt	line 2155
:&lt;cWORD&gt;	cmdline.txt	line 2156
:&lt;cexpr&gt;	cmdline.txt	line 2157
:&lt;cfile&gt;	cmdline.txt	line 2158
:&lt;client&gt;	cmdline.txt	line 2159
:&lt;cword&gt;	cmdline.txt	line 2160
:&lt;script&gt;	cmdline.txt	line 2161
:&lt;sfile&gt;	cmdline.txt	line 2162
:&lt;sflnum&gt;	cmdline.txt	line 2163
:&lt;slnum&gt;	cmdline.txt	line 2164
:&lt;stack&gt;	cmdline.txt	line 2165
:=	various.txt	line 2166
:&gt;	change.txt	line 2167
:?	cmdline.txt	line 2168
:@	repeat.txt	line 2169
:@:	repeat.txt	line 2170
:@@	repeat.txt	line 2171
:AdaLines	ft_ada.txt	line 2172
:AdaRainbow	ft_ada.txt	line 2173
:AdaSpaces	ft_ada.txt	line 2174
:AdaTagDir	ft_ada.txt	line 2175
:AdaTagFile	ft_ada.txt	line 2176
:AdaTypes	ft_ada.txt	line 2177
:Arguments	terminal.txt	line 2178
:Asm	terminal.txt	line 2179
:Break	terminal.txt	line 2180
:Cargo	ft_rust.txt	line 2181
:Cbench	ft_rust.txt	line 2182
:Cbuild	ft_rust.txt	line 2183
:Cclean	ft_rust.txt	line 2184
:Cdoc	ft_rust.txt	line 2185
:Cfilter	quickfix.txt	line 2186
:Cinit	ft_rust.txt	line 2187
:Cinstall	ft_rust.txt	line 2188
:Clear	terminal.txt	line 2189
:CompilerSet	usr_51.txt	line 2190
:ConTeXt	ft_context.txt	line 2191
:ConTeXtJobsStatus	ft_context.txt	line 2192
:ConTeXtLog	ft_context.txt	line 2193
:ConTeXtStopJobs	ft_context.txt	line 2194
:Continue	terminal.txt	line 2195
:Cpublish	ft_rust.txt	line 2196
:Crun	ft_rust.txt	line 2197
:Cruntarget	ft_rust.txt	line 2198
:Csearch	ft_rust.txt	line 2199
:Ctest	ft_rust.txt	line 2200
:Cupdate	ft_rust.txt	line 2201
:DiffOrig	diff.txt	line 2202
:DoMatchParen	pi_paren.txt	line 2203
:Down	terminal.txt	line 2204
:Evaluate	terminal.txt	line 2205
:Explore	pi_netrw.txt	line 2206
:Finish	terminal.txt	line 2207
:FixBeginfigs	ft_mp.txt	line 2208
:Frame	terminal.txt	line 2209
:GLVS	pi_getscript.txt	line 2210
:Gdb	terminal.txt	line 2211
:GetLatestVimScripts_dat	pi_getscript.txt	line 2212
:GnatFind	ft_ada.txt	line 2213
:GnatPretty	ft_ada.txt	line 2214
:GnatTags	ft_ada.txt	line 2215
:HelpToc	helphelp.txt	line 2216
:Hexplore	pi_netrw.txt	line 2217
:Justify	usr_25.txt	line 2218
:LP	pi_logipat.txt	line 2219
:LPE	pi_logipat.txt	line 2220
:LPF	pi_logipat.txt	line 2221
:Launch	eval.txt	line 2222
:Lexplore	pi_netrw.txt	line 2223
:Lfilter	quickfix.txt	line 2224
:LogiPat	pi_logipat.txt	line 2225
:Man	filetype.txt	line 2226
:ManReload	filetype.txt	line 2227
:MkVimball	pi_vimball.txt	line 2228
:N	editing.txt	line 2229
:Nexplore	pi_netrw.txt	line 2230
:Next	editing.txt	line 2231
:NoMatchParen	pi_paren.txt	line 2232
:Nr	pi_netrw.txt	line 2233
:Nread	pi_netrw.txt	line 2234
:Ns	pi_netrw.txt	line 2235
:Nsource	pi_netrw.txt	line 2236
:Ntree	pi_netrw.txt	line 2237
:Nw	pi_netrw.txt	line 2238
:Nwrite	pi_netrw.txt	line 2239
:Open	eval.txt	line 2240
:Over	terminal.txt	line 2241
:P	various.txt	line 2242
:Pexplore	pi_netrw.txt	line 2243
:Print	various.txt	line 2244
:Program	terminal.txt	line 2245
:Rexplore	pi_netrw.txt	line 2246
:RmVimball	pi_vimball.txt	line 2247
:Run	terminal.txt	line 2248
:RunOrContinue	terminal.txt	line 2249
:RustEmitAsm	ft_rust.txt	line 2250
:RustEmitIr	ft_rust.txt	line 2251
:RustExpand	ft_rust.txt	line 2252
:RustFmt	ft_rust.txt	line 2253
:RustFmtRange	ft_rust.txt	line 2254
:RustInfo	ft_rust.txt	line 2255
:RustInfoClipboard	ft_rust.txt	line 2256
:RustInfoToFile	ft_rust.txt	line 2257
:RustPlay	ft_rust.txt	line 2258
:RustRun	ft_rust.txt	line 2259
:RustTest	ft_rust.txt	line 2260
:Sexplore	pi_netrw.txt	line 2261
:Source	terminal.txt	line 2262
:Step	terminal.txt	line 2263
:Stop	terminal.txt	line 2264
:TOhtml	syntax.txt	line 2265
:TarDiff	pi_tar.txt	line 2266
:Tbreak	terminal.txt	line 2267
:Termdebug	terminal.txt	line 2268
:TermdebugCommand	terminal.txt	line 2269
:Texplore	pi_netrw.txt	line 2270
:ToggleBreak	terminal.txt	line 2271
:Tutor	pi_tutor.txt	line 2272
:URLOpen	eval.txt	line 2273
:Until	terminal.txt	line 2274
:Up	terminal.txt	line 2275
:UseVimball	pi_vimball.txt	line 2276
:Var	terminal.txt	line 2277
:Vexplore	pi_netrw.txt	line 2278
:VimballList	pi_vimball.txt	line 2279
:Vimuntar	pi_tar.txt	line 2280
:Winbar	terminal.txt	line 2281
:X	editing.txt	line 2282
:XMLent	insert.txt	line 2283
:XMLns	insert.txt	line 2284
:[range]	motion.txt	line 2285
:\bar	cmdline.txt	line 2286
:_!	cmdline.txt	line 2287
:_#	cmdline.txt	line 2288
:_##	cmdline.txt	line 2289
:_#0	cmdline.txt	line 2290
:_#&lt;	cmdline.txt	line 2291
:_#n	cmdline.txt	line 2292
:_&#37;	cmdline.txt	line 2293
:_&#37;&#37;	cmdline.txt	line 2294
:_&#37;&#37;&#37;	cmdline.txt	line 2295
:_&#37;&#37;0	cmdline.txt	line 2296
:_&#37;&#37;&lt;	cmdline.txt	line 2297
:_&#37;&#37;n	cmdline.txt	line 2298
:_&#37;:	cmdline.txt	line 2299
:_&#37;&lt;	cmdline.txt	line 2300
:a	insert.txt	line 2301
:ab	map.txt	line 2302
:abbreviate	map.txt	line 2303
:abbreviate-&lt;buffer&gt;	map.txt	line 2304
:abbreviate-local	map.txt	line 2305
:abbreviate-verbose	map.txt	line 2306
:abc	map.txt	line 2307
:abclear	map.txt	line 2308
:abo	windows.txt	line 2309
:aboveleft	windows.txt	line 2310
:abstract	vim9class.txt	line 2311
:al	windows.txt	line 2312
:all	windows.txt	line 2313
:am	gui.txt	line 2314
:amenu	gui.txt	line 2315
:an	gui.txt	line 2316
:anoremenu	gui.txt	line 2317
:append	insert.txt	line 2318
:ar	editing.txt	line 2319
:arg	editing.txt	line 2320
:arga	editing.txt	line 2321
:argadd	editing.txt	line 2322
:argd	editing.txt	line 2323
:argded	editing.txt	line 2324
:argdedupe	editing.txt	line 2325
:argdelete	editing.txt	line 2326
:argdo	editing.txt	line 2327
:arge	editing.txt	line 2328
:argedit	editing.txt	line 2329
:argglobal	editing.txt	line 2330
:arglocal	editing.txt	line 2331
:args	editing.txt	line 2332
:args_f	editing.txt	line 2333
:args_f!	editing.txt	line 2334
:argu	editing.txt	line 2335
:argument	editing.txt	line 2336
:as	various.txt	line 2337
:ascii	various.txt	line 2338
:au	autocmd.txt	line 2339
:aug	autocmd.txt	line 2340
:augroup	autocmd.txt	line 2341
:augroup-delete	autocmd.txt	line 2342
:aun	gui.txt	line 2343
:aunmenu	gui.txt	line 2344
:autocmd	autocmd.txt	line 2345
:autocmd-block	autocmd.txt	line 2346
:autocmd-verbose	autocmd.txt	line 2347
:b	windows.txt	line 2348
:bN	windows.txt	line 2349
:bNext	windows.txt	line 2350
:ba	windows.txt	line 2351
:bad	windows.txt	line 2352
:badd	windows.txt	line 2353
:ball	windows.txt	line 2354
:balt	windows.txt	line 2355
:bar	cmdline.txt	line 2356
:bd	windows.txt	line 2357
:bdel	windows.txt	line 2358
:bdelete	windows.txt	line 2359
:be	gui.txt	line 2360
:behave	gui.txt	line 2361
:bel	windows.txt	line 2362
:belowright	windows.txt	line 2363
:bf	windows.txt	line 2364
:bfirst	windows.txt	line 2365
:bl	windows.txt	line 2366
:blast	windows.txt	line 2367
:bm	windows.txt	line 2368
:bmodified	windows.txt	line 2369
:bn	windows.txt	line 2370
:bnext	windows.txt	line 2371
:bo	windows.txt	line 2372
:botright	windows.txt	line 2373
:bp	windows.txt	line 2374
:bprevious	windows.txt	line 2375
:br	windows.txt	line 2376
:bre	windows.txt	line 2377
:brea	eval.txt	line 2378
:break	eval.txt	line 2379
:breaka	repeat.txt	line 2380
:breakadd	repeat.txt	line 2381
:breakd	repeat.txt	line 2382
:breakdel	repeat.txt	line 2383
:breakl	repeat.txt	line 2384
:breaklist	repeat.txt	line 2385
:brewind	windows.txt	line 2386
:bro	editing.txt	line 2387
:browse	editing.txt	line 2388
:browse-set	options.txt	line 2389
:bu	windows.txt	line 2390
:buf	windows.txt	line 2391
:bufdo	windows.txt	line 2392
:buffer	windows.txt	line 2393
:buffer-!	windows.txt	line 2394
:buffers	windows.txt	line 2395
:bun	windows.txt	line 2396
:bunload	windows.txt	line 2397
:bw	windows.txt	line 2398
:bwipe	windows.txt	line 2399
:bwipeout	windows.txt	line 2400
:c	change.txt	line 2401
:cN	quickfix.txt	line 2402
:cNext	quickfix.txt	line 2403
:cNf	quickfix.txt	line 2404
:cNfile	quickfix.txt	line 2405
:ca	map.txt	line 2406
:cab	map.txt	line 2407
:cabbrev	map.txt	line 2408
:cabc	map.txt	line 2409
:cabclear	map.txt	line 2410
:cabo	quickfix.txt	line 2411
:cabove	quickfix.txt	line 2412
:cad	quickfix.txt	line 2413
:cadd	quickfix.txt	line 2414
:caddbuffer	quickfix.txt	line 2415
:cadde	quickfix.txt	line 2416
:caddexpr	quickfix.txt	line 2417
:caddf	quickfix.txt	line 2418
:caddfile	quickfix.txt	line 2419
:caf	quickfix.txt	line 2420
:cafter	quickfix.txt	line 2421
:cal	userfunc.txt	line 2422
:call	userfunc.txt	line 2423
:cat	eval.txt	line 2424
:catch	eval.txt	line 2425
:cb	quickfix.txt	line 2426
:cbe	quickfix.txt	line 2427
:cbefore	quickfix.txt	line 2428
:cbel	quickfix.txt	line 2429
:cbelow	quickfix.txt	line 2430
:cbo	quickfix.txt	line 2431
:cbottom	quickfix.txt	line 2432
:cbuffer	quickfix.txt	line 2433
:cc	quickfix.txt	line 2434
:ccl	quickfix.txt	line 2435
:cclose	quickfix.txt	line 2436
:cd	editing.txt	line 2437
:cd-	editing.txt	line 2438
:cdo	quickfix.txt	line 2439
:ce	change.txt	line 2440
:center	change.txt	line 2441
:cex	quickfix.txt	line 2442
:cexpr	quickfix.txt	line 2443
:cf	quickfix.txt	line 2444
:cfd	quickfix.txt	line 2445
:cfdo	quickfix.txt	line 2446
:cfi	quickfix.txt	line 2447
:cfile	quickfix.txt	line 2448
:cfir	quickfix.txt	line 2449
:cfirst	quickfix.txt	line 2450
:cg	quickfix.txt	line 2451
:cgetb	quickfix.txt	line 2452
:cgetbuffer	quickfix.txt	line 2453
:cgete	quickfix.txt	line 2454
:cgetexpr	quickfix.txt	line 2455
:cgetfile	quickfix.txt	line 2456
:ch	change.txt	line 2457
:change	change.txt	line 2458
:changes	motion.txt	line 2459
:chd	editing.txt	line 2460
:chdir	editing.txt	line 2461
:che	tagsrch.txt	line 2462
:chec	tagsrch.txt	line 2463
:check	tagsrch.txt	line 2464
:checkpath	tagsrch.txt	line 2465
:checkt	editing.txt	line 2466
:checktime	editing.txt	line 2467
:chi	quickfix.txt	line 2468
:chistory	quickfix.txt	line 2469
:cl	quickfix.txt	line 2470
:cla	quickfix.txt	line 2471
:class	vim9class.txt	line 2472
:clast	quickfix.txt	line 2473
:cle	motion.txt	line 2474
:clearjumps	motion.txt	line 2475
:clip	various.txt	line 2476
:clipreset	various.txt	line 2477
:clist	quickfix.txt	line 2478
:clo	windows.txt	line 2479
:close	windows.txt	line 2480
:cm	map.txt	line 2481
:cmap	map.txt	line 2482
:cmap_l	map.txt	line 2483
:cmapc	map.txt	line 2484
:cmapclear	map.txt	line 2485
:cme	gui.txt	line 2486
:cmenu	gui.txt	line 2487
:cn	quickfix.txt	line 2488
:cne	quickfix.txt	line 2489
:cnew	quickfix.txt	line 2490
:cnewer	quickfix.txt	line 2491
:cnext	quickfix.txt	line 2492
:cnf	quickfix.txt	line 2493
:cnfile	quickfix.txt	line 2494
:cno	map.txt	line 2495
:cnor	map.txt	line 2496
:cnorea	map.txt	line 2497
:cnoreabbrev	map.txt	line 2498
:cnoremap	map.txt	line 2499
:cnoreme	gui.txt	line 2500
:cnoremenu	gui.txt	line 2501
:co	change.txt	line 2502
:col	quickfix.txt	line 2503
:colder	quickfix.txt	line 2504
:colo	syntax.txt	line 2505
:colorscheme	syntax.txt	line 2506
:com	map.txt	line 2507
:comc	map.txt	line 2508
:comclear	map.txt	line 2509
:command	map.txt	line 2510
:command-addr	map.txt	line 2511
:command-bang	map.txt	line 2512
:command-bar	map.txt	line 2513
:command-buffer	map.txt	line 2514
:command-complete	map.txt	line 2515
:command-completion	map.txt	line 2516
:command-completion-custom	map.txt	line 2517
:command-completion-customlist	map.txt	line 2518
:command-count	map.txt	line 2519
:command-keepscript	map.txt	line 2520
:command-modifiers	map.txt	line 2521
:command-nargs	map.txt	line 2522
:command-range	map.txt	line 2523
:command-register	map.txt	line 2524
:command-repl	map.txt	line 2525
:command-verbose	map.txt	line 2526
:comment	cmdline.txt	line 2527
:comp	quickfix.txt	line 2528
:compiler	quickfix.txt	line 2529
:con	eval.txt	line 2530
:conf	editing.txt	line 2531
:confirm	editing.txt	line 2532
:cons	eval.txt	line 2533
:const	eval.txt	line 2534
:continue	eval.txt	line 2535
:cope	quickfix.txt	line 2536
:copen	quickfix.txt	line 2537
:copy	change.txt	line 2538
:count_quit	windows.txt	line 2539
:cp	quickfix.txt	line 2540
:cpf	quickfix.txt	line 2541
:cpfile	quickfix.txt	line 2542
:cprev	quickfix.txt	line 2543
:cprevious	quickfix.txt	line 2544
:cq	quickfix.txt	line 2545
:cquit	quickfix.txt	line 2546
:cr	quickfix.txt	line 2547
:crewind	quickfix.txt	line 2548
:cs	if_cscop.txt	line 2549
:cscope	if_cscop.txt	line 2550
:cstag	if_cscop.txt	line 2551
:cu	map.txt	line 2552
:cun	map.txt	line 2553
:cuna	map.txt	line 2554
:cunabbrev	map.txt	line 2555
:cunmap	map.txt	line 2556
:cunme	gui.txt	line 2557
:cunmenu	gui.txt	line 2558
:cw	quickfix.txt	line 2559
:cwindow	quickfix.txt	line 2560
:d	change.txt	line 2561
:de	change.txt	line 2562
:debug	repeat.txt	line 2563
:debug-name	repeat.txt	line 2564
:debugg	repeat.txt	line 2565
:debuggreedy	repeat.txt	line 2566
:def	vim9.txt	line 2567
:defc	vim9.txt	line 2568
:defcompile	vim9.txt	line 2569
:defe	userfunc.txt	line 2570
:defer	userfunc.txt	line 2571
:del	change.txt	line 2572
:delc	map.txt	line 2573
:delcommand	map.txt	line 2574
:delcr	todo.txt	line 2575
:delete	change.txt	line 2576
:delf	userfunc.txt	line 2577
:delfunction	userfunc.txt	line 2578
:delm	motion.txt	line 2579
:delmarks	motion.txt	line 2580
:di	change.txt	line 2581
:dif	diff.txt	line 2582
:diff	diff.txt	line 2583
:diffg	diff.txt	line 2584
:diffget	diff.txt	line 2585
:diffo	diff.txt	line 2586
:diffoff	diff.txt	line 2587
:diffp	diff.txt	line 2588
:diffpatch	diff.txt	line 2589
:diffpu	diff.txt	line 2590
:diffput	diff.txt	line 2591
:diffs	diff.txt	line 2592
:diffsplit	diff.txt	line 2593
:difft	diff.txt	line 2594
:diffthis	diff.txt	line 2595
:diffupdate	diff.txt	line 2596
:dig	digraph.txt	line 2597
:digraphs	digraph.txt	line 2598
:dis	change.txt	line 2599
:disa	vim9.txt	line 2600
:disassemble	vim9.txt	line 2601
:display	change.txt	line 2602
:dj	tagsrch.txt	line 2603
:djump	tagsrch.txt	line 2604
:dl	change.txt	line 2605
:dli	tagsrch.txt	line 2606
:dlist	tagsrch.txt	line 2607
:do	autocmd.txt	line 2608
:doau	autocmd.txt	line 2609
:doaut	autocmd.txt	line 2610
:doautoa	autocmd.txt	line 2611
:doautoall	autocmd.txt	line 2612
:doautocmd	autocmd.txt	line 2613
:dp	change.txt	line 2614
:dr	windows.txt	line 2615
:drop	windows.txt	line 2616
:ds	tagsrch.txt	line 2617
:dsearch	tagsrch.txt	line 2618
:dsp	tagsrch.txt	line 2619
:dsplit	tagsrch.txt	line 2620
:e	editing.txt	line 2621
:e#	editing.txt	line 2622
:ea	undo.txt	line 2623
:earlier	undo.txt	line 2624
:ec	eval.txt	line 2625
:echo	eval.txt	line 2626
:echo-redraw	eval.txt	line 2627
:echoc	eval.txt	line 2628
:echoconsole	eval.txt	line 2629
:echoe	eval.txt	line 2630
:echoerr	eval.txt	line 2631
:echoh	eval.txt	line 2632
:echohl	eval.txt	line 2633
:echom	eval.txt	line 2634
:echomsg	eval.txt	line 2635
:echon	eval.txt	line 2636
:echow	eval.txt	line 2637
:echowin	eval.txt	line 2638
:echowindow	eval.txt	line 2639
:edit	editing.txt	line 2640
:edit!	editing.txt	line 2641
:edit!_f	editing.txt	line 2642
:edit_#	editing.txt	line 2643
:edit_f	editing.txt	line 2644
:el	eval.txt	line 2645
:else	eval.txt	line 2646
:elsei	eval.txt	line 2647
:elseif	eval.txt	line 2648
:em	gui.txt	line 2649
:emenu	gui.txt	line 2650
:en	eval.txt	line 2651
:end	eval.txt	line 2652
:endclass	vim9class.txt	line 2653
:enddef	vim9.txt	line 2654
:endenum	vim9class.txt	line 2655
:endf	userfunc.txt	line 2656
:endfo	eval.txt	line 2657
:endfor	eval.txt	line 2658
:endfunction	userfunc.txt	line 2659
:endif	eval.txt	line 2660
:endinterface	vim9class.txt	line 2661
:endt	eval.txt	line 2662
:endtry	eval.txt	line 2663
:endw	eval.txt	line 2664
:endwhile	eval.txt	line 2665
:ene	editing.txt	line 2666
:ene!	editing.txt	line 2667
:enew	editing.txt	line 2668
:enew!	editing.txt	line 2669
:enum	vim9class.txt	line 2670
:eval	eval.txt	line 2671
:ex	editing.txt	line 2672
:exe	eval.txt	line 2673
:exe-comment	eval.txt	line 2674
:execute	eval.txt	line 2675
:exi	editing.txt	line 2676
:exit	editing.txt	line 2677
:exp	vim9.txt	line 2678
:export	vim9.txt	line 2679
:exu	helphelp.txt	line 2680
:exusage	helphelp.txt	line 2681
:f	editing.txt	line 2682
:fi	editing.txt	line 2683
:file	editing.txt	line 2684
:file_f	editing.txt	line 2685
:filename	editing.txt	line 2686
:files	windows.txt	line 2687
:filet	filetype.txt	line 2688
:filetype	filetype.txt	line 2689
:filetype-indent-off	filetype.txt	line 2690
:filetype-indent-on	filetype.txt	line 2691
:filetype-off	filetype.txt	line 2692
:filetype-overview	filetype.txt	line 2693
:filetype-plugin-off	filetype.txt	line 2694
:filetype-plugin-on	filetype.txt	line 2695
:filt	various.txt	line 2696
:filter	various.txt	line 2697
:fin	editing.txt	line 2698
:fina	eval.txt	line 2699
:final	vim9.txt	line 2700
:finally	eval.txt	line 2701
:find	editing.txt	line 2702
:fini	repeat.txt	line 2703
:finish	repeat.txt	line 2704
:fir	editing.txt	line 2705
:first	editing.txt	line 2706
:fix	options.txt	line 2707
:fixdel	options.txt	line 2708
:fo	fold.txt	line 2709
:fold	fold.txt	line 2710
:foldc	fold.txt	line 2711
:foldclose	fold.txt	line 2712
:foldd	fold.txt	line 2713
:folddo	fold.txt	line 2714
:folddoc	fold.txt	line 2715
:folddoclosed	fold.txt	line 2716
:folddoopen	fold.txt	line 2717
:foldo	fold.txt	line 2718
:foldopen	fold.txt	line 2719
:for	eval.txt	line 2720
:fu	userfunc.txt	line 2721
:func-abort	userfunc.txt	line 2722
:func-closure	userfunc.txt	line 2723
:func-dict	userfunc.txt	line 2724
:func-range	userfunc.txt	line 2725
:function	userfunc.txt	line 2726
:function-verbose	userfunc.txt	line 2727
:g	repeat.txt	line 2728
:global	repeat.txt	line 2729
:go	motion.txt	line 2730
:goto	motion.txt	line 2731
:gr	quickfix.txt	line 2732
:grep	quickfix.txt	line 2733
:grepa	quickfix.txt	line 2734
:grepadd	quickfix.txt	line 2735
:gu	gui_x11.txt	line 2736
:gui	gui_x11.txt	line 2737
:gv	gui_x11.txt	line 2738
:gvim	gui_x11.txt	line 2739
:h	helphelp.txt	line 2740
:ha	print.txt	line 2741
:hardcopy	print.txt	line 2742
:help	helphelp.txt	line 2743
:helpc	helphelp.txt	line 2744
:helpclose	helphelp.txt	line 2745
:helpf	helphelp.txt	line 2746
:helpfind	helphelp.txt	line 2747
:helpg	helphelp.txt	line 2748
:helpgrep	helphelp.txt	line 2749
:helpt	helphelp.txt	line 2750
:helptags	helphelp.txt	line 2751
:hi	syntax.txt	line 2752
:hi-clear	syntax.txt	line 2753
:hi-default	syntax.txt	line 2754
:hi-link	syntax.txt	line 2755
:hi-normal	syntax.txt	line 2756
:hi-normal-cterm	syntax.txt	line 2757
:hide	windows.txt	line 2758
:highlight	syntax.txt	line 2759
:highlight-default	syntax.txt	line 2760
:highlight-link	syntax.txt	line 2761
:highlight-normal	syntax.txt	line 2762
:highlight-verbose	syntax.txt	line 2763
:his	cmdline.txt	line 2764
:history	cmdline.txt	line 2765
:history-indexing	cmdline.txt	line 2766
:hor	windows.txt	line 2767
:horizontal	windows.txt	line 2768
:i	insert.txt	line 2769
:ia	map.txt	line 2770
:iabbrev	map.txt	line 2771
:iabc	map.txt	line 2772
:iabclear	map.txt	line 2773
:if	eval.txt	line 2774
:ij	tagsrch.txt	line 2775
:ijump	tagsrch.txt	line 2776
:il	tagsrch.txt	line 2777
:ilist	tagsrch.txt	line 2778
:im	map.txt	line 2779
:imap	map.txt	line 2780
:imap_l	map.txt	line 2781
:imapc	map.txt	line 2782
:imapclear	map.txt	line 2783
:ime	gui.txt	line 2784
:imenu	gui.txt	line 2785
:imp	vim9.txt	line 2786
:import	vim9.txt	line 2787
:import-as	vim9.txt	line 2788
:import-cycle	vim9.txt	line 2789
:in	insert.txt	line 2790
:index	index.txt	line 2791
:ino	map.txt	line 2792
:inor	map.txt	line 2793
:inorea	map.txt	line 2794
:inoreabbrev	map.txt	line 2795
:inoremap	map.txt	line 2796
:inoreme	gui.txt	line 2797
:inoremenu	gui.txt	line 2798
:insert	insert.txt	line 2799
:interface	vim9class.txt	line 2800
:intro	starting.txt	line 2801
:ip	change.txt	line 2802
:iput	change.txt	line 2803
:is	tagsrch.txt	line 2804
:isearch	tagsrch.txt	line 2805
:isp	tagsrch.txt	line 2806
:isplit	tagsrch.txt	line 2807
:iu	map.txt	line 2808
:iuna	map.txt	line 2809
:iunabbrev	map.txt	line 2810
:iunmap	map.txt	line 2811
:iunme	gui.txt	line 2812
:iunmenu	gui.txt	line 2813
:j	change.txt	line 2814
:join	change.txt	line 2815
:ju	motion.txt	line 2816
:jumps	motion.txt	line 2817
:k	motion.txt	line 2818
:kee	motion.txt	line 2819
:keep	motion.txt	line 2820
:keepa	editing.txt	line 2821
:keepalt	editing.txt	line 2822
:keepj	motion.txt	line 2823
:keepjumps	motion.txt	line 2824
:keepmarks	motion.txt	line 2825
:keepp	cmdline.txt	line 2826
:keeppatterns	cmdline.txt	line 2827
:l	various.txt	line 2828
:lN	quickfix.txt	line 2829
:lNext	quickfix.txt	line 2830
:lNf	quickfix.txt	line 2831
:lNfile	quickfix.txt	line 2832
:la	editing.txt	line 2833
:lab	quickfix.txt	line 2834
:labove	quickfix.txt	line 2835
:lad	quickfix.txt	line 2836
:ladd	quickfix.txt	line 2837
:laddb	quickfix.txt	line 2838
:laddbuffer	quickfix.txt	line 2839
:laddexpr	quickfix.txt	line 2840
:laddf	quickfix.txt	line 2841
:laddfile	quickfix.txt	line 2842
:laf	quickfix.txt	line 2843
:lafter	quickfix.txt	line 2844
:lan	mlang.txt	line 2845
:lang	mlang.txt	line 2846
:language	mlang.txt	line 2847
:last	editing.txt	line 2848
:lat	undo.txt	line 2849
:later	undo.txt	line 2850
:lb	quickfix.txt	line 2851
:lbe	quickfix.txt	line 2852
:lbefore	quickfix.txt	line 2853
:lbel	quickfix.txt	line 2854
:lbelow	quickfix.txt	line 2855
:lbo	quickfix.txt	line 2856
:lbottom	quickfix.txt	line 2857
:lbuffer	quickfix.txt	line 2858
:lc	editing.txt	line 2859
:lcd	editing.txt	line 2860
:lcd-	editing.txt	line 2861
:lch	editing.txt	line 2862
:lchdir	editing.txt	line 2863
:lcl	quickfix.txt	line 2864
:lclose	quickfix.txt	line 2865
:lcs	if_cscop.txt	line 2866
:lcscope	if_cscop.txt	line 2867
:ld	quickfix.txt	line 2868
:ldo	quickfix.txt	line 2869
:le	change.txt	line 2870
:left	change.txt	line 2871
:lefta	windows.txt	line 2872
:leftabove	windows.txt	line 2873
:leg	vim9.txt	line 2874
:legacy	vim9.txt	line 2875
:let	eval.txt	line 2876
:let&#37;=	eval.txt	line 2877
:let+=	eval.txt	line 2878
:let-$	eval.txt	line 2879
:let-&amp;	eval.txt	line 2880
:let-=	eval.txt	line 2881
:let-@	eval.txt	line 2882
:let-environment	eval.txt	line 2883
:let-heredoc	eval.txt	line 2884
:let-option	eval.txt	line 2885
:let-register	eval.txt	line 2886
:let-unpack	eval.txt	line 2887
:let..=	eval.txt	line 2888
:let.=	eval.txt	line 2889
:let/=	eval.txt	line 2890
:let=&lt;&lt;	eval.txt	line 2891
:letstar=	eval.txt	line 2892
:lex	quickfix.txt	line 2893
:lexpr	quickfix.txt	line 2894
:lf	quickfix.txt	line 2895
:lfd	quickfix.txt	line 2896
:lfdo	quickfix.txt	line 2897
:lfi	quickfix.txt	line 2898
:lfile	quickfix.txt	line 2899
:lfir	quickfix.txt	line 2900
:lfirst	quickfix.txt	line 2901
:lg	quickfix.txt	line 2902
:lge	quickfix.txt	line 2903
:lgetb	quickfix.txt	line 2904
:lgetbuffer	quickfix.txt	line 2905
:lgete	quickfix.txt	line 2906
:lgetexpr	quickfix.txt	line 2907
:lgetfile	quickfix.txt	line 2908
:lgr	quickfix.txt	line 2909
:lgrep	quickfix.txt	line 2910
:lgrepa	quickfix.txt	line 2911
:lgrepadd	quickfix.txt	line 2912
:lh	helphelp.txt	line 2913
:lhelpgrep	helphelp.txt	line 2914
:lhi	quickfix.txt	line 2915
:lhistory	quickfix.txt	line 2916
:list	various.txt	line 2917
:ll	quickfix.txt	line 2918
:lla	quickfix.txt	line 2919
:llast	quickfix.txt	line 2920
:lli	quickfix.txt	line 2921
:llist	quickfix.txt	line 2922
:lm	map.txt	line 2923
:lma	map.txt	line 2924
:lmak	quickfix.txt	line 2925
:lmake	quickfix.txt	line 2926
:lmap	map.txt	line 2927
:lmap_l	map.txt	line 2928
:lmapc	map.txt	line 2929
:lmapclear	map.txt	line 2930
:ln	map.txt	line 2931
:lne	quickfix.txt	line 2932
:lnew	quickfix.txt	line 2933
:lnewer	quickfix.txt	line 2934
:lnext	quickfix.txt	line 2935
:lnf	quickfix.txt	line 2936
:lnfile	quickfix.txt	line 2937
:lnoremap	map.txt	line 2938
:lo	starting.txt	line 2939
:loadk	mbyte.txt	line 2940
:loadkeymap	mbyte.txt	line 2941
:loadview	starting.txt	line 2942
:loc	motion.txt	line 2943
:lock	motion.txt	line 2944
:lockmarks	motion.txt	line 2945
:lockv	eval.txt	line 2946
:lockvar	eval.txt	line 2947
:lol	quickfix.txt	line 2948
:lolder	quickfix.txt	line 2949
:lop	quickfix.txt	line 2950
:lopen	quickfix.txt	line 2951
:lp	quickfix.txt	line 2952
:lpf	quickfix.txt	line 2953
:lpfile	quickfix.txt	line 2954
:lprev	quickfix.txt	line 2955
:lprevious	quickfix.txt	line 2956
:lr	quickfix.txt	line 2957
:lrewind	quickfix.txt	line 2958
:ls	windows.txt	line 2959
:lt	tagsrch.txt	line 2960
:ltag	tagsrch.txt	line 2961
:lu	map.txt	line 2962
:lua	if_lua.txt	line 2963
:luado	if_lua.txt	line 2964
:luafile	if_lua.txt	line 2965
:lunmap	map.txt	line 2966
:lv	quickfix.txt	line 2967
:lvimgrep	quickfix.txt	line 2968
:lvimgrepa	quickfix.txt	line 2969
:lvimgrepadd	quickfix.txt	line 2970
:lw	quickfix.txt	line 2971
:lwindow	quickfix.txt	line 2972
:m	change.txt	line 2973
:ma	motion.txt	line 2974
:mak	quickfix.txt	line 2975
:make	quickfix.txt	line 2976
:make_makeprg	quickfix.txt	line 2977
:map	map.txt	line 2978
:map!	map.txt	line 2979
:map-&lt;buffer&gt;	map.txt	line 2980
:map-&lt;expr&gt;	map.txt	line 2981
:map-&lt;nowait&gt;	map.txt	line 2982
:map-&lt;script&gt;	map.txt	line 2983
:map-&lt;silent&gt;	map.txt	line 2984
:map-&lt;special&gt;	map.txt	line 2985
:map-&lt;unique&gt;	map.txt	line 2986
:map-alt-keys	map.txt	line 2987
:map-arguments	map.txt	line 2988
:map-buffer	map.txt	line 2989
:map-cmd	map.txt	line 2990
:map-cmd-key	map.txt	line 2991
:map-commands	map.txt	line 2992
:map-expression	map.txt	line 2993
:map-local	map.txt	line 2994
:map-meta-keys	map.txt	line 2995
:map-modes	map.txt	line 2996
:map-nowait	map.txt	line 2997
:map-operator	map.txt	line 2998
:map-script	map.txt	line 2999
:map-silent	map.txt	line 3000
:map-special	map.txt	line 3001
:map-special-chars	map.txt	line 3002
:map-special-keys	map.txt	line 3003
:map-super-keys	map.txt	line 3004
:map-undo	map.txt	line 3005
:map-unique	map.txt	line 3006
:map-verbose	map.txt	line 3007
:map_l	map.txt	line 3008
:map_l!	map.txt	line 3009
:mapc	map.txt	line 3010
:mapc!	map.txt	line 3011
:mapclear	map.txt	line 3012
:mapclear!	map.txt	line 3013
:mark	motion.txt	line 3014
:marks	motion.txt	line 3015
:mat	pattern.txt	line 3016
:match	pattern.txt	line 3017
:me	gui.txt	line 3018
:menu	gui.txt	line 3019
:menu-&lt;script&gt;	gui.txt	line 3020
:menu-&lt;silent&gt;	gui.txt	line 3021
:menu-&lt;special&gt;	gui.txt	line 3022
:menu-disable	gui.txt	line 3023
:menu-enable	gui.txt	line 3024
:menu-script	gui.txt	line 3025
:menu-silent	gui.txt	line 3026
:menu-special	gui.txt	line 3027
:menut	mlang.txt	line 3028
:menutrans	mlang.txt	line 3029
:menutranslate	mlang.txt	line 3030
:mes	message.txt	line 3031
:messages	message.txt	line 3032
:mk	starting.txt	line 3033
:mkexrc	starting.txt	line 3034
:mks	starting.txt	line 3035
:mksession	starting.txt	line 3036
:mksp	spell.txt	line 3037
:mkspell	spell.txt	line 3038
:mkv	starting.txt	line 3039
:mkvi	starting.txt	line 3040
:mkvie	starting.txt	line 3041
:mkview	starting.txt	line 3042
:mkvimrc	starting.txt	line 3043
:mo	change.txt	line 3044
:mod	term.txt	line 3045
:mode	term.txt	line 3046
:move	change.txt	line 3047
:mz	if_mzsch.txt	line 3048
:mzf	if_mzsch.txt	line 3049
:mzfile	if_mzsch.txt	line 3050
:mzscheme	if_mzsch.txt	line 3051
:n	editing.txt	line 3052
:nbclose	netbeans.txt	line 3053
:nbkey	netbeans.txt	line 3054
:nbstart	netbeans.txt	line 3055
:ne	editing.txt	line 3056
:new	windows.txt	line 3057
:next	editing.txt	line 3058
:next_f	editing.txt	line 3059
:nm	map.txt	line 3060
:nmap	map.txt	line 3061
:nmap_l	map.txt	line 3062
:nmapc	map.txt	line 3063
:nmapclear	map.txt	line 3064
:nme	gui.txt	line 3065
:nmenu	gui.txt	line 3066
:nn	map.txt	line 3067
:nnoremap	map.txt	line 3068
:nnoreme	gui.txt	line 3069
:nnoremenu	gui.txt	line 3070
:no	map.txt	line 3071
:no!	map.txt	line 3072
:noa	autocmd.txt	line 3073
:noautocmd	autocmd.txt	line 3074
:noh	pattern.txt	line 3075
:nohlsearch	pattern.txt	line 3076
:nor	map.txt	line 3077
:nore	map.txt	line 3078
:norea	map.txt	line 3079
:noreabbrev	map.txt	line 3080
:norem	map.txt	line 3081
:noremap	map.txt	line 3082
:noremap!	map.txt	line 3083
:noreme	gui.txt	line 3084
:noremenu	gui.txt	line 3085
:norm	various.txt	line 3086
:normal	various.txt	line 3087
:normal-range	various.txt	line 3088
:nos	recover.txt	line 3089
:noswapfile	recover.txt	line 3090
:nu	various.txt	line 3091
:number	various.txt	line 3092
:nun	map.txt	line 3093
:nunmap	map.txt	line 3094
:nunme	gui.txt	line 3095
:nunmenu	gui.txt	line 3096
:o	vi_diff.txt	line 3097
:ol	starting.txt	line 3098
:oldfiles	starting.txt	line 3099
:om	map.txt	line 3100
:omap	map.txt	line 3101
:omap_l	map.txt	line 3102
:omapc	map.txt	line 3103
:omapclear	map.txt	line 3104
:ome	gui.txt	line 3105
:omenu	gui.txt	line 3106
:on	windows.txt	line 3107
:only	windows.txt	line 3108
:ono	map.txt	line 3109
:onoremap	map.txt	line 3110
:onoreme	gui.txt	line 3111
:onoremenu	gui.txt	line 3112
:op	vi_diff.txt	line 3113
:open	vi_diff.txt	line 3114
:opt	options.txt	line 3115
:options	options.txt	line 3116
:ou	map.txt	line 3117
:ounmap	map.txt	line 3118
:ounme	gui.txt	line 3119
:ounmenu	gui.txt	line 3120
:ownsyntax	syntax.txt	line 3121
:p	various.txt	line 3122
:pa	repeat.txt	line 3123
:packadd	repeat.txt	line 3124
:packl	repeat.txt	line 3125
:packloadall	repeat.txt	line 3126
:pb	windows.txt	line 3127
:pbuffer	windows.txt	line 3128
:pc	windows.txt	line 3129
:pclose	windows.txt	line 3130
:pe	if_perl.txt	line 3131
:ped	windows.txt	line 3132
:pedit	windows.txt	line 3133
:perl	if_perl.txt	line 3134
:perld	if_perl.txt	line 3135
:perldo	if_perl.txt	line 3136
:po	tagsrch.txt	line 3137
:pop	tagsrch.txt	line 3138
:popu	gui.txt	line 3139
:popup	gui.txt	line 3140
:pp	windows.txt	line 3141
:ppop	windows.txt	line 3142
:pr	various.txt	line 3143
:pre	recover.txt	line 3144
:preserve	recover.txt	line 3145
:prev	editing.txt	line 3146
:previous	editing.txt	line 3147
:print	various.txt	line 3148
:pro	change.txt	line 3149
:prof	repeat.txt	line 3150
:profd	repeat.txt	line 3151
:profdel	repeat.txt	line 3152
:profile	repeat.txt	line 3153
:promptfind	change.txt	line 3154
:promptr	change.txt	line 3155
:promptrepl	change.txt	line 3156
:ps	windows.txt	line 3157
:psearch	windows.txt	line 3158
:pt	windows.txt	line 3159
:ptN	tagsrch.txt	line 3160
:ptNext	tagsrch.txt	line 3161
:ptag	windows.txt	line 3162
:ptf	tagsrch.txt	line 3163
:ptfirst	tagsrch.txt	line 3164
:ptj	tagsrch.txt	line 3165
:ptjump	tagsrch.txt	line 3166
:ptl	tagsrch.txt	line 3167
:ptlast	tagsrch.txt	line 3168
:ptn	tagsrch.txt	line 3169
:ptnext	tagsrch.txt	line 3170
:ptp	tagsrch.txt	line 3171
:ptprevious	tagsrch.txt	line 3172
:ptr	tagsrch.txt	line 3173
:ptrewind	tagsrch.txt	line 3174
:pts	tagsrch.txt	line 3175
:ptselect	tagsrch.txt	line 3176
:pu	change.txt	line 3177
:public	vim9class.txt	line 3178
:put	change.txt	line 3179
:pw	editing.txt	line 3180
:pwd	editing.txt	line 3181
:pwd-verbose	editing.txt	line 3182
:py	if_pyth.txt	line 3183
:py3	if_pyth.txt	line 3184
:py3do	if_pyth.txt	line 3185
:py3file	if_pyth.txt	line 3186
:pydo	if_pyth.txt	line 3187
:pyf	if_pyth.txt	line 3188
:pyfile	if_pyth.txt	line 3189
:python	if_pyth.txt	line 3190
:python3	if_pyth.txt	line 3191
:pythonx	if_pyth.txt	line 3192
:pyx	if_pyth.txt	line 3193
:pyxdo	if_pyth.txt	line 3194
:pyxfile	if_pyth.txt	line 3195
:q	editing.txt	line 3196
:qa	editing.txt	line 3197
:qall	editing.txt	line 3198
:quit	editing.txt	line 3199
:quita	editing.txt	line 3200
:quitall	editing.txt	line 3201
:quote	cmdline.txt	line 3202
:r	insert.txt	line 3203
:r!	insert.txt	line 3204
:range	cmdline.txt	line 3205
:range!	change.txt	line 3206
:range-closed-fold	cmdline.txt	line 3207
:range-offset	cmdline.txt	line 3208
:range-pattern	cmdline.txt	line 3209
:re	insert.txt	line 3210
:read	insert.txt	line 3211
:read!	insert.txt	line 3212
:rec	recover.txt	line 3213
:recover	recover.txt	line 3214
:recover-crypt	recover.txt	line 3215
:red	undo.txt	line 3216
:redi	various.txt	line 3217
:redir	various.txt	line 3218
:redo	undo.txt	line 3219
:redr	various.txt	line 3220
:redraw	various.txt	line 3221
:redraws	various.txt	line 3222
:redrawstatus	various.txt	line 3223
:redrawt	various.txt	line 3224
:redrawtabline	various.txt	line 3225
:redrawtabp	various.txt	line 3226
:redrawtabpanel	various.txt	line 3227
:reg	change.txt	line 3228
:registers	change.txt	line 3229
:res	windows.txt	line 3230
:resize	windows.txt	line 3231
:ret	change.txt	line 3232
:retab	change.txt	line 3233
:retab!	change.txt	line 3234
:retu	userfunc.txt	line 3235
:return	userfunc.txt	line 3236
:rew	editing.txt	line 3237
:rewind	editing.txt	line 3238
:ri	change.txt	line 3239
:right	change.txt	line 3240
:rightb	windows.txt	line 3241
:rightbelow	windows.txt	line 3242
:ru	repeat.txt	line 3243
:rub	if_ruby.txt	line 3244
:ruby	if_ruby.txt	line 3245
:rubyd	if_ruby.txt	line 3246
:rubydo	if_ruby.txt	line 3247
:rubyf	if_ruby.txt	line 3248
:rubyfile	if_ruby.txt	line 3249
:rund	undo.txt	line 3250
:rundo	undo.txt	line 3251
:runtime	repeat.txt	line 3252
:rv	starting.txt	line 3253
:rviminfo	starting.txt	line 3254
:s	change.txt	line 3255
:s&#37;	change.txt	line 3256
:sI	change.txt	line 3257
:sIc	change.txt	line 3258
:sIe	change.txt	line 3259
:sIg	change.txt	line 3260
:sIl	change.txt	line 3261
:sIn	change.txt	line 3262
:sIp	change.txt	line 3263
:sIr	change.txt	line 3264
:sN	windows.txt	line 3265
:sNext	windows.txt	line 3266
:s\=	change.txt	line 3267
:s_#	change.txt	line 3268
:s_I	change.txt	line 3269
:s_c	change.txt	line 3270
:s_e	change.txt	line 3271
:s_flags	change.txt	line 3272
:s_g	change.txt	line 3273
:s_i	change.txt	line 3274
:s_l	change.txt	line 3275
:s_n	change.txt	line 3276
:s_p	change.txt	line 3277
:s_r	change.txt	line 3278
:sa	windows.txt	line 3279
:sal	windows.txt	line 3280
:sall	windows.txt	line 3281
:san	eval.txt	line 3282
:sandbox	eval.txt	line 3283
:sargument	windows.txt	line 3284
:sav	editing.txt	line 3285
:saveas	editing.txt	line 3286
:sb	windows.txt	line 3287
:sbN	windows.txt	line 3288
:sbNext	windows.txt	line 3289
:sba	windows.txt	line 3290
:sball	windows.txt	line 3291
:sbf	windows.txt	line 3292
:sbfirst	windows.txt	line 3293
:sbl	windows.txt	line 3294
:sblast	windows.txt	line 3295
:sbm	windows.txt	line 3296
:sbmodified	windows.txt	line 3297
:sbn	windows.txt	line 3298
:sbnext	windows.txt	line 3299
:sbp	windows.txt	line 3300
:sbprevious	windows.txt	line 3301
:sbr	windows.txt	line 3302
:sbrewind	windows.txt	line 3303
:sbuffer	windows.txt	line 3304
:sc	change.txt	line 3305
:scI	change.txt	line 3306
:sce	change.txt	line 3307
:scg	change.txt	line 3308
:sci	change.txt	line 3309
:scl	change.txt	line 3310
:scp	change.txt	line 3311
:scr	repeat.txt	line 3312
:script	repeat.txt	line 3313
:scripte	repeat.txt	line 3314
:scriptencoding	repeat.txt	line 3315
:scriptnames	repeat.txt	line 3316
:scriptv	repeat.txt	line 3317
:scriptversion	repeat.txt	line 3318
:scs	if_cscop.txt	line 3319
:scscope	if_cscop.txt	line 3320
:se	options.txt	line 3321
:search-args	tagsrch.txt	line 3322
:set	options.txt	line 3323
:set+=	options.txt	line 3324
:set-!	options.txt	line 3325
:set-&amp;	options.txt	line 3326
:set-&amp;vi	options.txt	line 3327
:set-&amp;vim	options.txt	line 3328
:set-=	options.txt	line 3329
:set-args	options.txt	line 3330
:set-browse	options.txt	line 3331
:set-default	options.txt	line 3332
:set-inv	options.txt	line 3333
:set-termcap	options.txt	line 3334
:set-verbose	options.txt	line 3335
:set=	options.txt	line 3336
:set^=	options.txt	line 3337
:set_env	options.txt	line 3338
:setf	options.txt	line 3339
:setfiletype	options.txt	line 3340
:setg	options.txt	line 3341
:setglobal	options.txt	line 3342
:setl	options.txt	line 3343
:setlocal	options.txt	line 3344
:sf	windows.txt	line 3345
:sfi	windows.txt	line 3346
:sfind	windows.txt	line 3347
:sfir	windows.txt	line 3348
:sfirst	windows.txt	line 3349
:sg	change.txt	line 3350
:sgI	change.txt	line 3351
:sgc	change.txt	line 3352
:sge	change.txt	line 3353
:sgi	change.txt	line 3354
:sgl	change.txt	line 3355
:sgn	change.txt	line 3356
:sgp	change.txt	line 3357
:sgr	change.txt	line 3358
:sh	various.txt	line 3359
:shell	various.txt	line 3360
:si	change.txt	line 3361
:sic	change.txt	line 3362
:sie	change.txt	line 3363
:sig	sign.txt	line 3364
:sign	sign.txt	line 3365
:sign-define	sign.txt	line 3366
:sign-fname	sign.txt	line 3367
:sign-jump	sign.txt	line 3368
:sign-list	sign.txt	line 3369
:sign-place	sign.txt	line 3370
:sign-place-list	sign.txt	line 3371
:sign-undefine	sign.txt	line 3372
:sign-unplace	sign.txt	line 3373
:sil	various.txt	line 3374
:silent	various.txt	line 3375
:silent!	various.txt	line 3376
:sim	gui_w32.txt	line 3377
:simalt	gui_w32.txt	line 3378
:sin	change.txt	line 3379
:sip	change.txt	line 3380
:sir	change.txt	line 3381
:sl	various.txt	line 3382
:sl!	various.txt	line 3383
:sla	windows.txt	line 3384
:slast	windows.txt	line 3385
:sleep	various.txt	line 3386
:sleep!	various.txt	line 3387
:sm	change.txt	line 3388
:smagic	change.txt	line 3389
:smap	map.txt	line 3390
:smap_l	map.txt	line 3391
:smapc	map.txt	line 3392
:smapclear	map.txt	line 3393
:sme	gui.txt	line 3394
:smenu	gui.txt	line 3395
:smile	index.txt	line 3396
:sn	windows.txt	line 3397
:snext	windows.txt	line 3398
:sno	change.txt	line 3399
:snomagic	change.txt	line 3400
:snor	map.txt	line 3401
:snore	map.txt	line 3402
:snoremap	map.txt	line 3403
:snoreme	gui.txt	line 3404
:snoremenu	gui.txt	line 3405
:so	repeat.txt	line 3406
:sor	change.txt	line 3407
:sort	change.txt	line 3408
:sort-l	change.txt	line 3409
:sort-u	change.txt	line 3410
:sort-uniq	change.txt	line 3411
:source	repeat.txt	line 3412
:source!	repeat.txt	line 3413
:source-range	repeat.txt	line 3414
:source_crnl	repeat.txt	line 3415
:sp	windows.txt	line 3416
:spe	spell.txt	line 3417
:spelld	spell.txt	line 3418
:spelldump	spell.txt	line 3419
:spellgood	spell.txt	line 3420
:spelli	spell.txt	line 3421
:spellinfo	spell.txt	line 3422
:spellr	spell.txt	line 3423
:spellra	spell.txt	line 3424
:spellrare	spell.txt	line 3425
:spellrepall	spell.txt	line 3426
:spellu	spell.txt	line 3427
:spellundo	spell.txt	line 3428
:spellw	spell.txt	line 3429
:spellwrong	spell.txt	line 3430
:split	windows.txt	line 3431
:split_f	windows.txt	line 3432
:spr	windows.txt	line 3433
:sprevious	windows.txt	line 3434
:sr	change.txt	line 3435
:srI	change.txt	line 3436
:src	change.txt	line 3437
:sre	windows.txt	line 3438
:srewind	windows.txt	line 3439
:srg	change.txt	line 3440
:sri	change.txt	line 3441
:srl	change.txt	line 3442
:srn	change.txt	line 3443
:srp	change.txt	line 3444
:st	starting.txt	line 3445
:sta	windows.txt	line 3446
:stag	windows.txt	line 3447
:star	cmdline.txt	line 3448
:star-compatible	repeat.txt	line 3449
:star-visual-range	cmdline.txt	line 3450
:start	insert.txt	line 3451
:startgreplace	insert.txt	line 3452
:startinsert	insert.txt	line 3453
:startreplace	insert.txt	line 3454
:static	vim9class.txt	line 3455
:stj	tagsrch.txt	line 3456
:stjump	tagsrch.txt	line 3457
:stop	starting.txt	line 3458
:stopi	insert.txt	line 3459
:stopinsert	insert.txt	line 3460
:sts	tagsrch.txt	line 3461
:stselect	tagsrch.txt	line 3462
:su	change.txt	line 3463
:substitute	change.txt	line 3464
:substitute-repeat	change.txt	line 3465
:sun	windows.txt	line 3466
:sunhide	windows.txt	line 3467
:sunm	map.txt	line 3468
:sunmap	map.txt	line 3469
:sunme	gui.txt	line 3470
:sunmenu	gui.txt	line 3471
:sus	starting.txt	line 3472
:suspend	starting.txt	line 3473
:sv	windows.txt	line 3474
:sview	windows.txt	line 3475
:sw	recover.txt	line 3476
:swapname	recover.txt	line 3477
:sy	syntax.txt	line 3478
:syn	syntax.txt	line 3479
:syn-arguments	syntax.txt	line 3480
:syn-case	syntax.txt	line 3481
:syn-cchar	syntax.txt	line 3482
:syn-clear	syntax.txt	line 3483
:syn-cluster	syntax.txt	line 3484
:syn-conceal	syntax.txt	line 3485
:syn-conceal-implicit	syntax.txt	line 3486
:syn-concealends	syntax.txt	line 3487
:syn-contained	syntax.txt	line 3488
:syn-containedin	syntax.txt	line 3489
:syn-contains	syntax.txt	line 3490
:syn-context	syntax.txt	line 3491
:syn-default-override	usr_06.txt	line 3492
:syn-define	syntax.txt	line 3493
:syn-display	syntax.txt	line 3494
:syn-enable	syntax.txt	line 3495
:syn-end	syntax.txt	line 3496
:syn-excludenl	syntax.txt	line 3497
:syn-ext-match	syntax.txt	line 3498
:syn-extend	syntax.txt	line 3499
:syn-file-remarks	syntax.txt	line 3500
:syn-files	syntax.txt	line 3501
:syn-fold	syntax.txt	line 3502
:syn-foldlevel	syntax.txt	line 3503
:syn-include	syntax.txt	line 3504
:syn-iskeyword	syntax.txt	line 3505
:syn-keepend	syntax.txt	line 3506
:syn-keyword	syntax.txt	line 3507
:syn-lc	syntax.txt	line 3508
:syn-leading	syntax.txt	line 3509
:syn-list	syntax.txt	line 3510
:syn-manual	usr_06.txt	line 3511
:syn-match	syntax.txt	line 3512
:syn-matchgroup	syntax.txt	line 3513
:syn-multi-line	syntax.txt	line 3514
:syn-nextgroup	syntax.txt	line 3515
:syn-off	syntax.txt	line 3516
:syn-on	syntax.txt	line 3517
:syn-oneline	syntax.txt	line 3518
:syn-pattern	syntax.txt	line 3519
:syn-pattern-offset	syntax.txt	line 3520
:syn-priority	syntax.txt	line 3521
:syn-qstart	syntax.txt	line 3522
:syn-region	syntax.txt	line 3523
:syn-reset	syntax.txt	line 3524
:syn-skip	syntax.txt	line 3525
:syn-skipempty	syntax.txt	line 3526
:syn-skipnl	syntax.txt	line 3527
:syn-skipwhite	syntax.txt	line 3528
:syn-spell	syntax.txt	line 3529
:syn-start	syntax.txt	line 3530
:syn-sync	syntax.txt	line 3531
:syn-sync-ccomment	syntax.txt	line 3532
:syn-sync-first	syntax.txt	line 3533
:syn-sync-fourth	syntax.txt	line 3534
:syn-sync-linebreaks	syntax.txt	line 3535
:syn-sync-maxlines	syntax.txt	line 3536
:syn-sync-minlines	syntax.txt	line 3537
:syn-sync-second	syntax.txt	line 3538
:syn-sync-third	syntax.txt	line 3539
:syn-transparent	syntax.txt	line 3540
:sync	scroll.txt	line 3541
:syncbind	scroll.txt	line 3542
:syntax	syntax.txt	line 3543
:syntax-enable	syntax.txt	line 3544
:syntax-off	syntax.txt	line 3545
:syntax-on	syntax.txt	line 3546
:syntax-reset	syntax.txt	line 3547
:synti	syntax.txt	line 3548
:syntime	syntax.txt	line 3549
:t	change.txt	line 3550
:tN	tagsrch.txt	line 3551
:tNext	tagsrch.txt	line 3552
:ta	tagsrch.txt	line 3553
:tab	tabpage.txt	line 3554
:tabN	tabpage.txt	line 3555
:tabNext	tabpage.txt	line 3556
:tabc	tabpage.txt	line 3557
:tabclose	tabpage.txt	line 3558
:tabd	tabpage.txt	line 3559
:tabdo	tabpage.txt	line 3560
:tabe	tabpage.txt	line 3561
:tabedit	tabpage.txt	line 3562
:tabf	tabpage.txt	line 3563
:tabfind	tabpage.txt	line 3564
:tabfir	tabpage.txt	line 3565
:tabfirst	tabpage.txt	line 3566
:tabl	tabpage.txt	line 3567
:tablast	tabpage.txt	line 3568
:tabm	tabpage.txt	line 3569
:tabmove	tabpage.txt	line 3570
:tabn	tabpage.txt	line 3571
:tabnew	tabpage.txt	line 3572
:tabnext	tabpage.txt	line 3573
:tabo	tabpage.txt	line 3574
:tabonly	tabpage.txt	line 3575
:tabp	tabpage.txt	line 3576
:tabprevious	tabpage.txt	line 3577
:tabr	tabpage.txt	line 3578
:tabrewind	tabpage.txt	line 3579
:tabs	tabpage.txt	line 3580
:tag	tagsrch.txt	line 3581
:tags	tagsrch.txt	line 3582
:tc	editing.txt	line 3583
:tcd	editing.txt	line 3584
:tcd-	editing.txt	line 3585
:tch	editing.txt	line 3586
:tchdir	editing.txt	line 3587
:tcl	if_tcl.txt	line 3588
:tcld	if_tcl.txt	line 3589
:tcldo	if_tcl.txt	line 3590
:tclf	if_tcl.txt	line 3591
:tclfile	if_tcl.txt	line 3592
:te	gui_w32.txt	line 3593
:tearoff	gui_w32.txt	line 3594
:ter	terminal.txt	line 3595
:terminal	terminal.txt	line 3596
:tf	tagsrch.txt	line 3597
:tfirst	tagsrch.txt	line 3598
:th	eval.txt	line 3599
:this	vim9class.txt	line 3600
:throw	eval.txt	line 3601
:tj	tagsrch.txt	line 3602
:tjump	tagsrch.txt	line 3603
:tl	tagsrch.txt	line 3604
:tlast	tagsrch.txt	line 3605
:tlm	gui.txt	line 3606
:tlmenu	gui.txt	line 3607
:tln	gui.txt	line 3608
:tlnoremenu	gui.txt	line 3609
:tlu	gui.txt	line 3610
:tlunmenu	gui.txt	line 3611
:tm	gui.txt	line 3612
:tma	map.txt	line 3613
:tmap	map.txt	line 3614
:tmap_l	map.txt	line 3615
:tmapc	map.txt	line 3616
:tmapclear	map.txt	line 3617
:tmenu	gui.txt	line 3618
:tn	tagsrch.txt	line 3619
:tnext	tagsrch.txt	line 3620
:tno	map.txt	line 3621
:tnoremap	map.txt	line 3622
:topleft	windows.txt	line 3623
:tp	tagsrch.txt	line 3624
:tprevious	tagsrch.txt	line 3625
:tr	tagsrch.txt	line 3626
:trewind	tagsrch.txt	line 3627
:try	eval.txt	line 3628
:ts	tagsrch.txt	line 3629
:tselect	tagsrch.txt	line 3630
:tu	gui.txt	line 3631
:tunma	map.txt	line 3632
:tunmap	map.txt	line 3633
:tunmenu	gui.txt	line 3634
:type	vim9class.txt	line 3635
:u	undo.txt	line 3636
:un	undo.txt	line 3637
:una	map.txt	line 3638
:unabbreviate	map.txt	line 3639
:undo	undo.txt	line 3640
:undoj	undo.txt	line 3641
:undojoin	undo.txt	line 3642
:undol	undo.txt	line 3643
:undolist	undo.txt	line 3644
:unh	windows.txt	line 3645
:unhide	windows.txt	line 3646
:uni	change.txt	line 3647
:uniq	change.txt	line 3648
:unl	eval.txt	line 3649
:unlet	eval.txt	line 3650
:unlet-$	eval.txt	line 3651
:unlet-environment	eval.txt	line 3652
:unlo	eval.txt	line 3653
:unlockvar	eval.txt	line 3654
:unm	map.txt	line 3655
:unm!	map.txt	line 3656
:unmap	map.txt	line 3657
:unmap!	map.txt	line 3658
:unme	gui.txt	line 3659
:unmenu	gui.txt	line 3660
:unmenu-all	gui.txt	line 3661
:uns	various.txt	line 3662
:unsilent	various.txt	line 3663
:up	editing.txt	line 3664
:update	editing.txt	line 3665
:v	repeat.txt	line 3666
:var	vim9.txt	line 3667
:ve	various.txt	line 3668
:ver	various.txt	line 3669
:verb	various.txt	line 3670
:verbose	various.txt	line 3671
:verbose-cmd	various.txt	line 3672
:version	various.txt	line 3673
:vert	windows.txt	line 3674
:vertical	windows.txt	line 3675
:vertical-resize	windows.txt	line 3676
:vglobal	repeat.txt	line 3677
:vi	editing.txt	line 3678
:vie	editing.txt	line 3679
:view	editing.txt	line 3680
:vim	quickfix.txt	line 3681
:vim9	vim9.txt	line 3682
:vim9cmd	vim9.txt	line 3683
:vim9s	repeat.txt	line 3684
:vim9script	repeat.txt	line 3685
:vimgrep	quickfix.txt	line 3686
:vimgrepa	quickfix.txt	line 3687
:vimgrepadd	quickfix.txt	line 3688
:visual	editing.txt	line 3689
:visual_example	visual.txt	line 3690
:viu	helphelp.txt	line 3691
:viusage	helphelp.txt	line 3692
:vm	map.txt	line 3693
:vmap	map.txt	line 3694
:vmap_l	map.txt	line 3695
:vmapc	map.txt	line 3696
:vmapclear	map.txt	line 3697
:vme	gui.txt	line 3698
:vmenu	gui.txt	line 3699
:vn	map.txt	line 3700
:vne	windows.txt	line 3701
:vnew	windows.txt	line 3702
:vnoremap	map.txt	line 3703
:vnoreme	gui.txt	line 3704
:vnoremenu	gui.txt	line 3705
:vs	windows.txt	line 3706
:vsplit	windows.txt	line 3707
:vu	map.txt	line 3708
:vunmap	map.txt	line 3709
:vunme	gui.txt	line 3710
:vunmenu	gui.txt	line 3711
:w	editing.txt	line 3712
:w!	editing.txt	line 3713
:wN	editing.txt	line 3714
:wNext	editing.txt	line 3715
:w_a	editing.txt	line 3716
:w_c	editing.txt	line 3717
:w_f	editing.txt	line 3718
:wa	editing.txt	line 3719
:wall	editing.txt	line 3720
:wh	eval.txt	line 3721
:while	eval.txt	line 3722
:wi	gui.txt	line 3723
:win	gui.txt	line 3724
:winc	windows.txt	line 3725
:wincmd	windows.txt	line 3726
:windo	windows.txt	line 3727
:winp	gui.txt	line 3728
:winpos	gui.txt	line 3729
:winsize	gui.txt	line 3730
:wl	wayland.txt	line 3731
:wlrestore	wayland.txt	line 3732
:wn	editing.txt	line 3733
:wnext	editing.txt	line 3734
:wp	editing.txt	line 3735
:wprevious	editing.txt	line 3736
:wq	editing.txt	line 3737
:wqa	editing.txt	line 3738
:wqall	editing.txt	line 3739
:write	editing.txt	line 3740
:write_a	editing.txt	line 3741
:write_c	editing.txt	line 3742
:write_f	editing.txt	line 3743
:wu	undo.txt	line 3744
:wundo	undo.txt	line 3745
:wv	starting.txt	line 3746
:wviminfo	starting.txt	line 3747
:x	editing.txt	line 3748
:xa	editing.txt	line 3749
:xall	editing.txt	line 3750
:xit	editing.txt	line 3751
:xm	map.txt	line 3752
:xmap	map.txt	line 3753
:xmap_l	map.txt	line 3754
:xmapc	map.txt	line 3755
:xmapclear	map.txt	line 3756
:xme	gui.txt	line 3757
:xmenu	gui.txt	line 3758
:xn	map.txt	line 3759
:xnoremap	map.txt	line 3760
:xnoreme	gui.txt	line 3761
:xnoremenu	gui.txt	line 3762
:xr	various.txt	line 3763
:xrestore	various.txt	line 3764
:xu	map.txt	line 3765
:xunmap	map.txt	line 3766
:xunme	gui.txt	line 3767
:xunmenu	gui.txt	line 3768
:y	change.txt	line 3769
:yank	change.txt	line 3770
:z	various.txt	line 3771
:z!	various.txt	line 3772
:z#	various.txt	line 3773
:~	change.txt	line 3774
;	motion.txt	line 3775
&lt;	change.txt	line 3776
&lt;2-LeftMouse&gt;	term.txt	line 3777
&lt;3-LeftMouse&gt;	term.txt	line 3778
&lt;4-LeftMouse&gt;	term.txt	line 3779
&lt;&lt;	change.txt	line 3780
&lt;&gt;	intro.txt	line 3781
&lt;A-	intro.txt	line 3782
&lt;A-LeftMouse&gt;	term.txt	line 3783
&lt;A-RightMouse&gt;	term.txt	line 3784
&lt;BS&gt;	motion.txt	line 3785
&lt;Bar&gt;	intro.txt	line 3786
&lt;Bslash&gt;	intro.txt	line 3787
&lt;C-	intro.txt	line 3788
&lt;C-Del&gt;	os_dos.txt	line 3789
&lt;C-End&gt;	motion.txt	line 3790
&lt;C-Home&gt;	motion.txt	line 3791
&lt;C-Insert&gt;	os_dos.txt	line 3792
&lt;C-Left&gt;	motion.txt	line 3793
&lt;C-LeftMouse&gt;	tagsrch.txt	line 3794
&lt;C-PageDown&gt;	tabpage.txt	line 3795
&lt;C-PageUp&gt;	tabpage.txt	line 3796
&lt;C-Right&gt;	motion.txt	line 3797
&lt;C-RightMouse&gt;	tagsrch.txt	line 3798
&lt;C-ScrollWheelDown&gt;	scroll.txt	line 3799
&lt;C-ScrollWheelLeft&gt;	scroll.txt	line 3800
&lt;C-ScrollWheelRight&gt;	scroll.txt	line 3801
&lt;C-ScrollWheelUp&gt;	scroll.txt	line 3802
&lt;C-Tab&gt;	tabpage.txt	line 3803
&lt;CR&gt;	motion.txt	line 3804
&lt;CSI&gt;	intro.txt	line 3805
&lt;Char-&gt;	map.txt	line 3806
&lt;Char&gt;	map.txt	line 3807
&lt;Cmd&gt;	map.txt	line 3808
&lt;CursorHold&gt;	autocmd.txt	line 3809
&lt;D-	intro.txt	line 3810
&lt;D-c&gt;	os_mac.txt	line 3811
&lt;D-v&gt;	os_mac.txt	line 3812
&lt;D-x&gt;	os_mac.txt	line 3813
&lt;Del&gt;	change.txt	line 3814
&lt;Down&gt;	motion.txt	line 3815
&lt;Drop&gt;	change.txt	line 3816
&lt;EOL&gt;	intro.txt	line 3817
&lt;End&gt;	motion.txt	line 3818
&lt;Enter&gt;	intro.txt	line 3819
&lt;Esc&gt;	intro.txt	line 3820
&lt;F10&gt;	term.txt	line 3821
&lt;F11&gt;	term.txt	line 3822
&lt;F12&gt;	term.txt	line 3823
&lt;F13&gt;	term.txt	line 3824
&lt;F14&gt;	term.txt	line 3825
&lt;F15&gt;	term.txt	line 3826
&lt;F16&gt;	term.txt	line 3827
&lt;F17&gt;	term.txt	line 3828
&lt;F18&gt;	term.txt	line 3829
&lt;F19&gt;	term.txt	line 3830
&lt;F1&gt;	helphelp.txt	line 3831
&lt;F2&gt;	term.txt	line 3832
&lt;F3&gt;	term.txt	line 3833
&lt;F4&gt;	term.txt	line 3834
&lt;F5&gt;	term.txt	line 3835
&lt;F6&gt;	term.txt	line 3836
&lt;F7&gt;	term.txt	line 3837
&lt;F8&gt;	term.txt	line 3838
&lt;F9&gt;	term.txt	line 3839
&lt;Help&gt;	helphelp.txt	line 3840
&lt;Home&gt;	motion.txt	line 3841
&lt;Ignore&gt;	builtin.txt	line 3842
&lt;Insert&gt;	insert.txt	line 3843
&lt;Leader&gt;	map.txt	line 3844
&lt;Left&gt;	motion.txt	line 3845
&lt;LeftDrag&gt;	term.txt	line 3846
&lt;LeftMouse&gt;	visual.txt	line 3847
&lt;LeftRelease&gt;	visual.txt	line 3848
&lt;LocalLeader&gt;	map.txt	line 3849
&lt;M-	intro.txt	line 3850
&lt;MiddleDrag&gt;	term.txt	line 3851
&lt;MiddleMouse&gt;	change.txt	line 3852
&lt;MiddleRelease&gt;	term.txt	line 3853
&lt;Mouse&gt;	term.txt	line 3854
&lt;MouseDown&gt;	scroll.txt	line 3855
&lt;MouseMove&gt;	map.txt	line 3856
&lt;MouseUp&gt;	scroll.txt	line 3857
&lt;NL&gt;	motion.txt	line 3858
&lt;Nop&gt;	map.txt	line 3859
&lt;Nul&gt;	intro.txt	line 3860
&lt;OSC&gt;	intro.txt	line 3861
&lt;PageDown&gt;	scroll.txt	line 3862
&lt;PageUp&gt;	scroll.txt	line 3863
&lt;Plug&gt;	map.txt	line 3864
&lt;Return&gt;	intro.txt	line 3865
&lt;Right&gt;	motion.txt	line 3866
&lt;RightDrag&gt;	term.txt	line 3867
&lt;RightMouse&gt;	visual.txt	line 3868
&lt;RightRelease&gt;	term.txt	line 3869
&lt;S-	intro.txt	line 3870
&lt;S-CR&gt;	scroll.txt	line 3871
&lt;S-Del&gt;	os_dos.txt	line 3872
&lt;S-Down&gt;	scroll.txt	line 3873
&lt;S-End&gt;	term.txt	line 3874
&lt;S-F10&gt;	term.txt	line 3875
&lt;S-F11&gt;	term.txt	line 3876
&lt;S-F12&gt;	term.txt	line 3877
&lt;S-F1&gt;	intro.txt	line 3878
&lt;S-F2&gt;	term.txt	line 3879
&lt;S-F3&gt;	term.txt	line 3880
&lt;S-F4&gt;	term.txt	line 3881
&lt;S-F5&gt;	term.txt	line 3882
&lt;S-F6&gt;	term.txt	line 3883
&lt;S-F7&gt;	term.txt	line 3884
&lt;S-F8&gt;	term.txt	line 3885
&lt;S-F9&gt;	term.txt	line 3886
&lt;S-Home&gt;	term.txt	line 3887
&lt;S-Insert&gt;	os_dos.txt	line 3888
&lt;S-Left&gt;	motion.txt	line 3889
&lt;S-LeftMouse&gt;	term.txt	line 3890
&lt;S-Minus&gt;	scroll.txt	line 3891
&lt;S-NL&gt;	scroll.txt	line 3892
&lt;S-Plus&gt;	scroll.txt	line 3893
&lt;S-Right&gt;	motion.txt	line 3894
&lt;S-RightMouse&gt;	term.txt	line 3895
&lt;S-ScrollWheelDown&gt;	scroll.txt	line 3896
&lt;S-ScrollWheelLeft&gt;	scroll.txt	line 3897
&lt;S-ScrollWheelRight&gt;	scroll.txt	line 3898
&lt;S-ScrollWheelUp&gt;	scroll.txt	line 3899
&lt;S-Tab&gt;	term.txt	line 3900
&lt;S-Up&gt;	scroll.txt	line 3901
&lt;S-xF1&gt;	term.txt	line 3902
&lt;S-xF2&gt;	term.txt	line 3903
&lt;S-xF3&gt;	term.txt	line 3904
&lt;S-xF4&gt;	term.txt	line 3905
&lt;SID&gt;	map.txt	line 3906
&lt;SNR&gt;	map.txt	line 3907
&lt;ScriptCmd&gt;	map.txt	line 3908
&lt;ScrollWheelDown&gt;	scroll.txt	line 3909
&lt;ScrollWheelLeft&gt;	scroll.txt	line 3910
&lt;ScrollWheelRight&gt;	scroll.txt	line 3911
&lt;ScrollWheelUp&gt;	scroll.txt	line 3912
&lt;Space&gt;	motion.txt	line 3913
&lt;Tab&gt;	motion.txt	line 3914
&lt;Undo&gt;	undo.txt	line 3915
&lt;Up&gt;	motion.txt	line 3916
&lt;abuf&gt;	cmdline.txt	line 3917
&lt;afile&gt;	cmdline.txt	line 3918
&lt;amatch&gt;	cmdline.txt	line 3919
&lt;args&gt;	map.txt	line 3920
&lt;bang&gt;	map.txt	line 3921
&lt;buffer=N&gt;	autocmd.txt	line 3922
&lt;buffer=abuf&gt;	autocmd.txt	line 3923
&lt;cWORD&gt;	cmdline.txt	line 3924
&lt;cexpr&gt;	cmdline.txt	line 3925
&lt;cfile&gt;	cmdline.txt	line 3926
&lt;character&gt;	intro.txt	line 3927
&lt;client&gt;	cmdline.txt	line 3928
&lt;count&gt;	map.txt	line 3929
&lt;cword&gt;	cmdline.txt	line 3930
&lt;f-args&gt;	map.txt	line 3931
&lt;k0&gt;	term.txt	line 3932
&lt;k1&gt;	term.txt	line 3933
&lt;k2&gt;	term.txt	line 3934
&lt;k3&gt;	term.txt	line 3935
&lt;k4&gt;	term.txt	line 3936
&lt;k5&gt;	term.txt	line 3937
&lt;k6&gt;	term.txt	line 3938
&lt;k7&gt;	term.txt	line 3939
&lt;k8&gt;	term.txt	line 3940
&lt;k9&gt;	term.txt	line 3941
&lt;kDivide&gt;	term.txt	line 3942
&lt;kEnd&gt;	motion.txt	line 3943
&lt;kEnter&gt;	term.txt	line 3944
&lt;kHome&gt;	motion.txt	line 3945
&lt;kMinus&gt;	term.txt	line 3946
&lt;kMultiply&gt;	term.txt	line 3947
&lt;kPageDown&gt;	scroll.txt	line 3948
&lt;kPageUp&gt;	scroll.txt	line 3949
&lt;kPlus&gt;	term.txt	line 3950
&lt;kPoint&gt;	term.txt	line 3951
&lt;line1&gt;	map.txt	line 3952
&lt;line2&gt;	map.txt	line 3953
&lt;lt&gt;	intro.txt	line 3954
&lt;mods&gt;	map.txt	line 3955
&lt;nomodeline&gt;	autocmd.txt	line 3956
&lt;q-args&gt;	map.txt	line 3957
&lt;q-mods&gt;	map.txt	line 3958
&lt;range&gt;	map.txt	line 3959
&lt;reg&gt;	map.txt	line 3960
&lt;register&gt;	map.txt	line 3961
&lt;script&gt;	cmdline.txt	line 3962
&lt;sfile&gt;	cmdline.txt	line 3963
&lt;sflnum&gt;	cmdline.txt	line 3964
&lt;slnum&gt;	cmdline.txt	line 3965
&lt;stack&gt;	cmdline.txt	line 3966
&lt;xCSI&gt;	intro.txt	line 3967
&lt;xDown&gt;	term.txt	line 3968
&lt;xEnd&gt;	term.txt	line 3969
&lt;xEnd&gt;-xterm	term.txt	line 3970
&lt;xF1&gt;	term.txt	line 3971
&lt;xF1&gt;-xterm	term.txt	line 3972
&lt;xF2&gt;	term.txt	line 3973
&lt;xF2&gt;-xterm	term.txt	line 3974
&lt;xF3&gt;	term.txt	line 3975
&lt;xF3&gt;-xterm	term.txt	line 3976
&lt;xF4&gt;	term.txt	line 3977
&lt;xF4&gt;-xterm	term.txt	line 3978
&lt;xHome&gt;	term.txt	line 3979
&lt;xHome&gt;-xterm	term.txt	line 3980
&lt;xLeft&gt;	term.txt	line 3981
&lt;xOSC&gt;	intro.txt	line 3982
&lt;xRight&gt;	term.txt	line 3983
&lt;xUp&gt;	term.txt	line 3984
=	change.txt	line 3985
==	change.txt	line 3986
&gt;	change.txt	line 3987
&gt;&gt;	change.txt	line 3988
&gt;backtrace	repeat.txt	line 3989
&gt;bt	repeat.txt	line 3990
&gt;cont	repeat.txt	line 3991
&gt;down	repeat.txt	line 3992
&gt;finish	repeat.txt	line 3993
&gt;frame	repeat.txt	line 3994
&gt;interrupt	repeat.txt	line 3995
&gt;next	repeat.txt	line 3996
&gt;quit	repeat.txt	line 3997
&gt;step	repeat.txt	line 3998
&gt;up	repeat.txt	line 3999
&gt;where	repeat.txt	line 4000
?	pattern.txt	line 4001
?&lt;CR&gt;	pattern.txt	line 4002
??	eval.txt	line 4003
@	repeat.txt	line 4004
@/	change.txt	line 4005
@:	repeat.txt	line 4006
@=	change.txt	line 4007
@@	repeat.txt	line 4008
@r	eval.txt	line 4009
A	insert.txt	line 4010
ACL	editing.txt	line 4011
ANSI-C	develop.txt	line 4012
ATTENTION	usr_11.txt	line 4013
Abbreviations	map.txt	line 4014
Aleph	options.txt	line 4015
Amiga	os_amiga.txt	line 4016
Arabic	arabic.txt	line 4017
Atari	os_mint.txt	line 4018
B	motion.txt	line 4019
BeBox	os_beos.txt	line 4020
BeOS	os_beos.txt	line 4021
Blob	eval.txt	line 4022
Blobs	eval.txt	line 4023
Boolean	eval.txt	line 4024
Bram	version9.txt	line 4025
Bram-Moolenaar	version9.txt	line 4026
BufAdd	autocmd.txt	line 4027
BufCreate	autocmd.txt	line 4028
BufDelete	autocmd.txt	line 4029
BufEnter	autocmd.txt	line 4030
BufFilePost	autocmd.txt	line 4031
BufFilePre	autocmd.txt	line 4032
BufHidden	autocmd.txt	line 4033
BufLeave	autocmd.txt	line 4034
BufNew	autocmd.txt	line 4035
BufNewFile	autocmd.txt	line 4036
BufRead	autocmd.txt	line 4037
BufReadCmd	autocmd.txt	line 4038
BufReadPost	autocmd.txt	line 4039
BufReadPre	autocmd.txt	line 4040
BufUnload	autocmd.txt	line 4041
BufWinEnter	autocmd.txt	line 4042
BufWinLeave	autocmd.txt	line 4043
BufWipeout	autocmd.txt	line 4044
BufWrite	autocmd.txt	line 4045
BufWriteCmd	autocmd.txt	line 4046
BufWritePost	autocmd.txt	line 4047
BufWritePre	autocmd.txt	line 4048
C	change.txt	line 4049
C-editing	tips.txt	line 4050
C-indenting	indent.txt	line 4051
C89	develop.txt	line 4052
C90	develop.txt	line 4053
C95	develop.txt	line 4054
C99	develop.txt	line 4055
COMSPEC	starting.txt	line 4056
CR-used-for-NL	pattern.txt	line 4057
CTRL-6	editing.txt	line 4058
CTRL-&lt;PageDown&gt;	tabpage.txt	line 4059
CTRL-&lt;PageUp&gt;	tabpage.txt	line 4060
CTRL-A	change.txt	line 4061
CTRL-B	scroll.txt	line 4062
CTRL-C	pattern.txt	line 4063
CTRL-D	scroll.txt	line 4064
CTRL-E	scroll.txt	line 4065
CTRL-F	scroll.txt	line 4066
CTRL-G	editing.txt	line 4067
CTRL-H	motion.txt	line 4068
CTRL-I	motion.txt	line 4069
CTRL-J	motion.txt	line 4070
CTRL-L	various.txt	line 4071
CTRL-M	motion.txt	line 4072
CTRL-N	motion.txt	line 4073
CTRL-O	motion.txt	line 4074
CTRL-P	motion.txt	line 4075
CTRL-Q	gui_w32.txt	line 4076
CTRL-R	undo.txt	line 4077
CTRL-T	tagsrch.txt	line 4078
CTRL-U	scroll.txt	line 4079
CTRL-U-changed	version6.txt	line 4080
CTRL-V	visual.txt	line 4081
CTRL-V-alternative	gui_w32.txt	line 4082
CTRL-W	index.txt	line 4083
CTRL-W_+	windows.txt	line 4084
CTRL-W_-	windows.txt	line 4085
CTRL-W_:	windows.txt	line 4086
CTRL-W_&lt;	windows.txt	line 4087
CTRL-W_&lt;BS&gt;	windows.txt	line 4088
CTRL-W_&lt;CR&gt;	quickfix.txt	line 4089
CTRL-W_&lt;Down&gt;	windows.txt	line 4090
CTRL-W_&lt;Enter&gt;	quickfix.txt	line 4091
CTRL-W_&lt;Left&gt;	windows.txt	line 4092
CTRL-W_&lt;Right&gt;	windows.txt	line 4093
CTRL-W_&lt;Up&gt;	windows.txt	line 4094
CTRL-W_=	windows.txt	line 4095
CTRL-W_&gt;	windows.txt	line 4096
CTRL-W_CTRL-B	windows.txt	line 4097
CTRL-W_CTRL-C	windows.txt	line 4098
CTRL-W_CTRL-D	tagsrch.txt	line 4099
CTRL-W_CTRL-F	windows.txt	line 4100
CTRL-W_CTRL-H	windows.txt	line 4101
CTRL-W_CTRL-I	tagsrch.txt	line 4102
CTRL-W_CTRL-J	windows.txt	line 4103
CTRL-W_CTRL-K	windows.txt	line 4104
CTRL-W_CTRL-L	windows.txt	line 4105
CTRL-W_CTRL-N	windows.txt	line 4106
CTRL-W_CTRL-O	windows.txt	line 4107
CTRL-W_CTRL-P	windows.txt	line 4108
CTRL-W_CTRL-Q	windows.txt	line 4109
CTRL-W_CTRL-R	windows.txt	line 4110
CTRL-W_CTRL-S	windows.txt	line 4111
CTRL-W_CTRL-T	windows.txt	line 4112
CTRL-W_CTRL-V	windows.txt	line 4113
CTRL-W_CTRL-W	windows.txt	line 4114
CTRL-W_CTRL-X	windows.txt	line 4115
CTRL-W_CTRL-Z	windows.txt	line 4116
CTRL-W_CTRL-]	windows.txt	line 4117
CTRL-W_CTRL-^	windows.txt	line 4118
CTRL-W_CTRL-_	windows.txt	line 4119
CTRL-W_F	windows.txt	line 4120
CTRL-W_H	windows.txt	line 4121
CTRL-W_J	windows.txt	line 4122
CTRL-W_K	windows.txt	line 4123
CTRL-W_L	windows.txt	line 4124
CTRL-W_P	windows.txt	line 4125
CTRL-W_R	windows.txt	line 4126
CTRL-W_S	windows.txt	line 4127
CTRL-W_T	windows.txt	line 4128
CTRL-W_W	windows.txt	line 4129
CTRL-W_]	windows.txt	line 4130
CTRL-W_^	windows.txt	line 4131
CTRL-W__	windows.txt	line 4132
CTRL-W_b	windows.txt	line 4133
CTRL-W_bar	windows.txt	line 4134
CTRL-W_c	windows.txt	line 4135
CTRL-W_d	tagsrch.txt	line 4136
CTRL-W_f	windows.txt	line 4137
CTRL-W_g&lt;Tab&gt;	tabpage.txt	line 4138
CTRL-W_gF	windows.txt	line 4139
CTRL-W_gT	windows.txt	line 4140
CTRL-W_g]	windows.txt	line 4141
CTRL-W_g_CTRL-]	windows.txt	line 4142
CTRL-W_gf	windows.txt	line 4143
CTRL-W_gt	windows.txt	line 4144
CTRL-W_g}	windows.txt	line 4145
CTRL-W_h	windows.txt	line 4146
CTRL-W_i	tagsrch.txt	line 4147
CTRL-W_j	windows.txt	line 4148
CTRL-W_k	windows.txt	line 4149
CTRL-W_l	windows.txt	line 4150
CTRL-W_n	windows.txt	line 4151
CTRL-W_o	windows.txt	line 4152
CTRL-W_p	windows.txt	line 4153
CTRL-W_q	windows.txt	line 4154
CTRL-W_r	windows.txt	line 4155
CTRL-W_s	windows.txt	line 4156
CTRL-W_t	windows.txt	line 4157
CTRL-W_v	windows.txt	line 4158
CTRL-W_w	windows.txt	line 4159
CTRL-W_x	windows.txt	line 4160
CTRL-W_z	windows.txt	line 4161
CTRL-W_}	windows.txt	line 4162
CTRL-X	change.txt	line 4163
CTRL-Y	scroll.txt	line 4164
CTRL-Z	starting.txt	line 4165
CTRL-\_CTRL-G	intro.txt	line 4166
CTRL-\_CTRL-N	intro.txt	line 4167
CTRL-]	tagsrch.txt	line 4168
CTRL-^	editing.txt	line 4169
CTRL-{char}	intro.txt	line 4170
Channel	eval.txt	line 4171
Channels	eval.txt	line 4172
Chinese	mbyte.txt	line 4173
Class	vim9class.txt	line 4174
Cmd-event	autocmd.txt	line 4175
CmdUndefined	autocmd.txt	line 4176
Cmdline	cmdline.txt	line 4177
Cmdline-mode	cmdline.txt	line 4178
CmdlineChanged	autocmd.txt	line 4179
CmdlineEnter	autocmd.txt	line 4180
CmdlineLeave	autocmd.txt	line 4181
CmdlineLeavePre	autocmd.txt	line 4182
CmdwinEnter	autocmd.txt	line 4183
CmdwinLeave	autocmd.txt	line 4184
ColorScheme	autocmd.txt	line 4185
ColorSchemePre	autocmd.txt	line 4186
Command-line	cmdline.txt	line 4187
Command-line-mode	cmdline.txt	line 4188
CompleteChanged	autocmd.txt	line 4189
CompleteDone	autocmd.txt	line 4190
CompleteDonePre	autocmd.txt	line 4191
ConPTY	terminal.txt	line 4192
Contents	quickref.txt	line 4193
Cscope	if_cscop.txt	line 4194
CursorHold	autocmd.txt	line 4195
CursorHold-example	windows.txt	line 4196
CursorHoldI	autocmd.txt	line 4197
CursorIM	mbyte.txt	line 4198
CursorMoved	autocmd.txt	line 4199
CursorMovedC	autocmd.txt	line 4200
CursorMovedI	autocmd.txt	line 4201
D	change.txt	line 4202
DOS	os_dos.txt	line 4203
DOS-format	editing.txt	line 4204
DOS-format-write	editing.txt	line 4205
Dict	eval.txt	line 4206
Dictionaries	eval.txt	line 4207
Dictionary	eval.txt	line 4208
Dictionary-function	eval.txt	line 4209
DiffUpdated	autocmd.txt	line 4210
Digraphs	digraph.txt	line 4211
DirChanged	autocmd.txt	line 4212
DirChangedPre	autocmd.txt	line 4213
E	motion.txt	line 4214
E10	message.txt	line 4215
E100	diff.txt	line 4216
E1001	eval.txt	line 4217
E1002	eval.txt	line 4218
E1003	vim9.txt	line 4219
E1004	vim9.txt	line 4220
E1005	vim9.txt	line 4221
E1006	vim9.txt	line 4222
E1007	vim9.txt	line 4223
E1008	vim9.txt	line 4224
E1009	vim9.txt	line 4225
E101	diff.txt	line 4226
E1010	vim9.txt	line 4227
E1011	vim9.txt	line 4228
E1012	vim9.txt	line 4229
E1013	vim9.txt	line 4230
E1014	vim9.txt	line 4231
E1015	eval.txt	line 4232
E1016	vim9.txt	line 4233
E1017	vim9.txt	line 4234
E1018	eval.txt	line 4235
E1019	eval.txt	line 4236
E102	diff.txt	line 4237
E1020	vim9.txt	line 4238
E1021	vim9.txt	line 4239
E1022	vim9.txt	line 4240
E1023	vim9.txt	line 4241
E1024	vim9.txt	line 4242
E1025	vim9.txt	line 4243
E1026	vim9.txt	line 4244
E1027	vim9.txt	line 4245
E1028	vim9.txt	line 4246
E1029	vim9.txt	line 4247
E103	diff.txt	line 4248
E1030	vim9.txt	line 4249
E1031	vim9.txt	line 4250
E1032	eval.txt	line 4251
E1033	eval.txt	line 4252
E1034	vim9.txt	line 4253
E1035	eval.txt	line 4254
E1036	eval.txt	line 4255
E1037	eval.txt	line 4256
E1038	repeat.txt	line 4257
E1039	repeat.txt	line 4258
E104	digraph.txt	line 4259
E1040	repeat.txt	line 4260
E1041	vim9.txt	line 4261
E1042	vim9.txt	line 4262
E1043	vim9.txt	line 4263
E1044	vim9.txt	line 4264
E1047	vim9.txt	line 4265
E1048	vim9.txt	line 4266
E1049	vim9.txt	line 4267
E105	mbyte.txt	line 4268
E1050	vim9.txt	line 4269
E1051	eval.txt	line 4270
E1052	vim9.txt	line 4271
E1053	vim9.txt	line 4272
E1054	vim9.txt	line 4273
E1055	vim9.txt	line 4274
E1056	vim9.txt	line 4275
E1057	vim9.txt	line 4276
E1058	vim9.txt	line 4277
E1059	vim9.txt	line 4278
E106	builtin.txt	line 4279
E1060	vim9.txt	line 4280
E1061	vim9.txt	line 4281
E1062	eval.txt	line 4282
E1063	eval.txt	line 4283
E1064	autocmd.txt	line 4284
E1065	vim9.txt	line 4285
E1066	vim9.txt	line 4286
E1067	eval.txt	line 4287
E1068	vim9.txt	line 4288
E1069	vim9.txt	line 4289
E107	userfunc.txt	line 4290
E1071	vim9.txt	line 4291
E1072	eval.txt	line 4292
E1073	vim9.txt	line 4293
E1074	vim9.txt	line 4294
E1075	vim9.txt	line 4295
E1077	vim9.txt	line 4296
E1078	autocmd.txt	line 4297
E1079	vim9.txt	line 4298
E108	eval.txt	line 4299
E1080	vim9.txt	line 4300
E1081	eval.txt	line 4301
E1082	vim9.txt	line 4302
E1083	editing.txt	line 4303
E1084	userfunc.txt	line 4304
E1085	eval.txt	line 4305
E1087	vim9.txt	line 4306
E1088	vim9.txt	line 4307
E1089	eval.txt	line 4308
E109	eval.txt	line 4309
E1090	userfunc.txt	line 4310
E1091	vim9.txt	line 4311
E1092	various.txt	line 4312
E1093	eval.txt	line 4313
E1094	vim9.txt	line 4314
E1095	userfunc.txt	line 4315
E1096	vim9.txt	line 4316
E1097	vim9.txt	line 4317
E1098	eval.txt	line 4318
E1099	vim9.txt	line 4319
E11	cmdline.txt	line 4320
E110	eval.txt	line 4321
E1100	vim9.txt	line 4322
E1101	vim9.txt	line 4323
E1102	vim9.txt	line 4324
E1103	vim9.txt	line 4325
E1104	vim9.txt	line 4326
E1105	vim9.txt	line 4327
E1106	vim9.txt	line 4328
E1107	eval.txt	line 4329
E1109	builtin.txt	line 4330
E111	eval.txt	line 4331
E1110	builtin.txt	line 4332
E1111	builtin.txt	line 4333
E1112	builtin.txt	line 4334
E1113	builtin.txt	line 4335
E1114	builtin.txt	line 4336
E1115	testing.txt	line 4337
E1116	testing.txt	line 4338
E1117	vim9.txt	line 4339
E1118	eval.txt	line 4340
E1119	eval.txt	line 4341
E112	eval.txt	line 4342
E1120	eval.txt	line 4343
E1121	eval.txt	line 4344
E1122	eval.txt	line 4345
E1123	vim9.txt	line 4346
E1124	vim9.txt	line 4347
E1125	vim9.txt	line 4348
E1126	vim9.txt	line 4349
E1127	vim9.txt	line 4350
E1128	vim9.txt	line 4351
E1129	eval.txt	line 4352
E113	eval.txt	line 4353
E1130	vim9.txt	line 4354
E1131	vim9.txt	line 4355
E1132	builtin.txt	line 4356
E1133	vim9.txt	line 4357
E1134	vim9.txt	line 4358
E1135	eval.txt	line 4359
E1136	map.txt	line 4360
E1138	eval.txt	line 4361
E1139	vim9.txt	line 4362
E114	eval.txt	line 4363
E1140	eval.txt	line 4364
E1141	eval.txt	line 4365
E1142	testing.txt	line 4366
E1143	eval.txt	line 4367
E1144	vim9.txt	line 4368
E1145	eval.txt	line 4369
E1146	vim9.txt	line 4370
E1147	eval.txt	line 4371
E1148	eval.txt	line 4372
E1149	vim9.txt	line 4373
E115	eval.txt	line 4374
E1150	vim9.txt	line 4375
E1151	userfunc.txt	line 4376
E1152	vim9.txt	line 4377
E1153	eval.txt	line 4378
E1154	eval.txt	line 4379
E1155	autocmd.txt	line 4380
E1156	editing.txt	line 4381
E1157	vim9.txt	line 4382
E1158	vim9.txt	line 4383
E1159	windows.txt	line 4384
E116	eval.txt	line 4385
E1160	vim9.txt	line 4386
E1161	builtin.txt	line 4387
E1162	builtin.txt	line 4388
E1163	vim9.txt	line 4389
E1164	vim9.txt	line 4390
E1165	eval.txt	line 4391
E1166	eval.txt	line 4392
E1167	vim9.txt	line 4393
E1168	vim9.txt	line 4394
E1169	eval.txt	line 4395
E117	userfunc.txt	line 4396
E1170	vim9.txt	line 4397
E1171	vim9.txt	line 4398
E1172	vim9.txt	line 4399
E1173	vim9.txt	line 4400
E1174	vim9.txt	line 4401
E1175	vim9.txt	line 4402
E1176	vim9.txt	line 4403
E1177	eval.txt	line 4404
E1178	vim9.txt	line 4405
E1179	options.txt	line 4406
E118	eval.txt	line 4407
E1180	vim9.txt	line 4408
E1181	vim9.txt	line 4409
E1182	vim9.txt	line 4410
E1183	eval.txt	line 4411
E1184	eval.txt	line 4412
E1185	various.txt	line 4413
E1186	vim9.txt	line 4414
E1187	starting.txt	line 4415
E1188	cmdline.txt	line 4416
E1189	vim9.txt	line 4417
E119	eval.txt	line 4418
E1190	vim9.txt	line 4419
E1191	vim9.txt	line 4420
E1192	eval.txt	line 4421
E1193	options.txt	line 4422
E1194	options.txt	line 4423
E1195	options.txt	line 4424
E1196	options.txt	line 4425
E1197	options.txt	line 4426
E1198	options.txt	line 4427
E1199	options.txt	line 4428
E12	message.txt	line 4429
E120	eval.txt	line 4430
E1200	options.txt	line 4431
E1201	options.txt	line 4432
E1202	vim9.txt	line 4433
E1203	eval.txt	line 4434
E1204	pattern.txt	line 4435
E1205	vim9.txt	line 4436
E1206	vim9.txt	line 4437
E1207	eval.txt	line 4438
E1208	map.txt	line 4439
E1209	builtin.txt	line 4440
E121	eval.txt	line 4441
E1210	vim9.txt	line 4442
E1211	vim9.txt	line 4443
E1212	vim9.txt	line 4444
E1213	vim9.txt	line 4445
E1214	builtin.txt	line 4446
E1215	builtin.txt	line 4447
E1216	builtin.txt	line 4448
E1217	vim9.txt	line 4449
E1218	vim9.txt	line 4450
E1219	vim9.txt	line 4451
E122	userfunc.txt	line 4452
E1220	vim9.txt	line 4453
E1221	vim9.txt	line 4454
E1222	vim9.txt	line 4455
E1223	vim9.txt	line 4456
E1224	vim9.txt	line 4457
E1225	vim9.txt	line 4458
E1226	vim9.txt	line 4459
E1227	vim9.txt	line 4460
E1228	vim9.txt	line 4461
E1229	eval.txt	line 4462
E123	userfunc.txt	line 4463
E1230	options.txt	line 4464
E1231	map.txt	line 4465
E1232	builtin.txt	line 4466
E1233	builtin.txt	line 4467
E1234	vim9.txt	line 4468
E1235	vim9.txt	line 4469
E1236	vim9.txt	line 4470
E1237	map.txt	line 4471
E1238	vim9.txt	line 4472
E1239	builtin.txt	line 4473
E124	userfunc.txt	line 4474
E1240	change.txt	line 4475
E1241	change.txt	line 4476
E1242	change.txt	line 4477
E1243	options.txt	line 4478
E1244	message.txt	line 4479
E1245	cmdline.txt	line 4480
E1246	eval.txt	line 4481
E1247	cmdline.txt	line 4482
E1248	vim9.txt	line 4483
E1249	syntax.txt	line 4484
E125	userfunc.txt	line 4485
E1250	vim9.txt	line 4486
E1251	vim9.txt	line 4487
E1252	vim9.txt	line 4488
E1253	vim9.txt	line 4489
E1254	vim9.txt	line 4490
E1255	map.txt	line 4491
E1256	vim9.txt	line 4492
E1257	vim9.txt	line 4493
E1258	vim9.txt	line 4494
E1259	vim9.txt	line 4495
E126	userfunc.txt	line 4496
E1260	vim9.txt	line 4497
E1261	vim9.txt	line 4498
E1262	vim9.txt	line 4499
E1263	userfunc.txt	line 4500
E1264	vim9.txt	line 4501
E1265	eval.txt	line 4502
E1266	if_pyth.txt	line 4503
E1267	userfunc.txt	line 4504
E1268	vim9.txt	line 4505
E1269	vim9.txt	line 4506
E127	userfunc.txt	line 4507
E1270	change.txt	line 4508
E1271	vim9.txt	line 4509
E1272	vim9.txt	line 4510
E1273	pattern.txt	line 4511
E1274	cmdline.txt	line 4512
E1275	eval.txt	line 4513
E1276	builtin.txt	line 4514
E1277	channel.txt	line 4515
E1278	eval.txt	line 4516
E1279	eval.txt	line 4517
E128	userfunc.txt	line 4518
E1280	spell.txt	line 4519
E1281	pattern.txt	line 4520
E1282	eval.txt	line 4521
E1283	eval.txt	line 4522
E1284	popup.txt	line 4523
E1285	builtin.txt	line 4524
E1286	builtin.txt	line 4525
E1287	builtin.txt	line 4526
E1288	builtin.txt	line 4527
E1289	builtin.txt	line 4528
E129	userfunc.txt	line 4529
E1290	change.txt	line 4530
E1291	testing.txt	line 4531
E1292	cmdline.txt	line 4532
E1293	textprop.txt	line 4533
E1294	textprop.txt	line 4534
E1295	textprop.txt	line 4535
E1296	textprop.txt	line 4536
E1297	vim9.txt	line 4537
E1298	vim9.txt	line 4538
E1299	tagsrch.txt	line 4539
E13	message.txt	line 4540
E1300	userfunc.txt	line 4541
E1301	vim9.txt	line 4542
E1302	eval.txt	line 4543
E1303	map.txt	line 4544
E1304	vim9.txt	line 4545
E1305	textprop.txt	line 4546
E1306	vim9.txt	line 4547
E1307	vim9.txt	line 4548
E1308	builtin.txt	line 4549
E1309	map.txt	line 4550
E131	userfunc.txt	line 4551
E1310	gui.txt	line 4552
E1311	map.txt	line 4553
E1312	windows.txt	line 4554
E1313	eval.txt	line 4555
E1314	vim9class.txt	line 4556
E1315	vim9class.txt	line 4557
E1316	vim9class.txt	line 4558
E1317	vim9class.txt	line 4559
E1318	vim9class.txt	line 4560
E1319	eval.txt	line 4561
E132	userfunc.txt	line 4562
E1320	eval.txt	line 4563
E1321	eval.txt	line 4564
E1322	eval.txt	line 4565
E1323	eval.txt	line 4566
E1324	eval.txt	line 4567
E1325	vim9class.txt	line 4568
E1326	vim9class.txt	line 4569
E1327	vim9class.txt	line 4570
E1328	vim9class.txt	line 4571
E1329	vim9class.txt	line 4572
E133	userfunc.txt	line 4573
E1330	vim9class.txt	line 4574
E1331	vim9class.txt	line 4575
E1332	vim9class.txt	line 4576
E1333	vim9class.txt	line 4577
E1335	vim9class.txt	line 4578
E1336	options.txt	line 4579
E1337	vim9class.txt	line 4580
E1338	vim9class.txt	line 4581
E134	change.txt	line 4582
E1340	vim9class.txt	line 4583
E1341	vim9class.txt	line 4584
E1342	vim9class.txt	line 4585
E1343	vim9class.txt	line 4586
E1344	vim9class.txt	line 4587
E1345	vim9class.txt	line 4588
E1346	vim9class.txt	line 4589
E1347	vim9class.txt	line 4590
E1348	vim9class.txt	line 4591
E1349	vim9class.txt	line 4592
E135	autocmd.txt	line 4593
E1350	vim9class.txt	line 4594
E1351	vim9class.txt	line 4595
E1352	vim9class.txt	line 4596
E1353	vim9class.txt	line 4597
E1354	vim9class.txt	line 4598
E1355	vim9class.txt	line 4599
E1356	vim9class.txt	line 4600
E1357	vim9class.txt	line 4601
E1358	vim9class.txt	line 4602
E1359	vim9class.txt	line 4603
E136	starting.txt	line 4604
E1360	vim9class.txt	line 4605
E1361	syntax.txt	line 4606
E1362	vim9class.txt	line 4607
E1363	vim9.txt	line 4608
E1364	recover.txt	line 4609
E1365	vim9class.txt	line 4610
E1366	vim9class.txt	line 4611
E1367	vim9class.txt	line 4612
E1368	vim9class.txt	line 4613
E1369	vim9class.txt	line 4614
E137	starting.txt	line 4615
E1370	vim9class.txt	line 4616
E1371	vim9class.txt	line 4617
E1372	vim9class.txt	line 4618
E1373	vim9class.txt	line 4619
E1374	vim9class.txt	line 4620
E1375	vim9class.txt	line 4621
E1376	vim9class.txt	line 4622
E1377	vim9class.txt	line 4623
E1378	vim9class.txt	line 4624
E1379	vim9class.txt	line 4625
E138	starting.txt	line 4626
E1380	vim9class.txt	line 4627
E1381	vim9class.txt	line 4628
E1382	vim9class.txt	line 4629
E1383	vim9class.txt	line 4630
E1384	vim9class.txt	line 4631
E1385	vim9class.txt	line 4632
E1386	vim9class.txt	line 4633
E1387	vim9class.txt	line 4634
E1388	vim9class.txt	line 4635
E1389	vim9class.txt	line 4636
E139	message.txt	line 4637
E1390	vim9class.txt	line 4638
E1391	eval.txt	line 4639
E1392	eval.txt	line 4640
E1393	vim9class.txt	line 4641
E1394	vim9class.txt	line 4642
E1395	vim9class.txt	line 4643
E1396	vim9class.txt	line 4644
E1397	vim9class.txt	line 4645
E1398	vim9class.txt	line 4646
E1399	vim9class.txt	line 4647
E140	message.txt	line 4648
E1400	vim9class.txt	line 4649
E1401	vim9class.txt	line 4650
E1402	vim9class.txt	line 4651
E1403	vim9class.txt	line 4652
E1404	vim9class.txt	line 4653
E1405	vim9class.txt	line 4654
E1406	vim9class.txt	line 4655
E1407	vim9class.txt	line 4656
E1408	vim9class.txt	line 4657
E1409	vim9class.txt	line 4658
E141	message.txt	line 4659
E1410	vim9class.txt	line 4660
E1411	vim9class.txt	line 4661
E1412	vim9class.txt	line 4662
E1413	vim9class.txt	line 4663
E1414	vim9class.txt	line 4664
E1415	vim9class.txt	line 4665
E1416	vim9class.txt	line 4666
E1417	vim9class.txt	line 4667
E1418	vim9class.txt	line 4668
E1419	vim9class.txt	line 4669
E142	message.txt	line 4670
E1420	vim9class.txt	line 4671
E1421	vim9class.txt	line 4672
E1422	vim9class.txt	line 4673
E1423	vim9class.txt	line 4674
E1424	vim9class.txt	line 4675
E1425	vim9class.txt	line 4676
E1426	vim9class.txt	line 4677
E1427	vim9class.txt	line 4678
E1428	vim9class.txt	line 4679
E1429	vim9class.txt	line 4680
E143	autocmd.txt	line 4681
E1430	vim9class.txt	line 4682
E1431	vim9class.txt	line 4683
E1432	vim9.txt	line 4684
E1433	vim9.txt	line 4685
E1434	vim9.txt	line 4686
E1435	vim9class.txt	line 4687
E1436	vim9class.txt	line 4688
E1437	eval.txt	line 4689
E144	various.txt	line 4690
E145	starting.txt	line 4691
E146	change.txt	line 4692
E147	repeat.txt	line 4693
E148	repeat.txt	line 4694
E149	helphelp.txt	line 4695
E15	eval.txt	line 4696
E150	helphelp.txt	line 4697
E1500	builtin.txt	line 4698
E1501	builtin.txt	line 4699
E1502	builtin.txt	line 4700
E1503	builtin.txt	line 4701
E1504	builtin.txt	line 4702
E1505	builtin.txt	line 4703
E1506	editing.txt	line 4704
E1507	builtin.txt	line 4705
E1508	editing.txt	line 4706
E1509	editing.txt	line 4707
E151	helphelp.txt	line 4708
E1510	change.txt	line 4709
E1511	options.txt	line 4710
E1512	options.txt	line 4711
E1513	message.txt	line 4712
E1514	options.txt	line 4713
E1515	builtin.txt	line 4714
E1516	builtin.txt	line 4715
E1517	eval.txt	line 4716
E1518	eval.txt	line 4717
E1519	eval.txt	line 4718
E152	helphelp.txt	line 4719
E1520	eval.txt	line 4720
E1521	eval.txt	line 4721
E1522	eval.txt	line 4722
E1523	eval.txt	line 4723
E1524	eval.txt	line 4724
E1525	builtin.txt	line 4725
E1526	eval.txt	line 4726
E1527	eval.txt	line 4727
E1528	vim9.txt	line 4728
E1529	vim9.txt	line 4729
E153	helphelp.txt	line 4730
E1530	vim9.txt	line 4731
E1531	vim9.txt	line 4732
E1532	eval.txt	line 4733
E1533	eval.txt	line 4734
E1534	vim9.txt	line 4735
E1535	eval.txt	line 4736
E1536	eval.txt	line 4737
E1537	eval.txt	line 4738
E1538	eval.txt	line 4739
E1539	vim9.txt	line 4740
E154	helphelp.txt	line 4741
E1540	eval.txt	line 4742
E1541	vi_diff.txt	line 4743
E1542	options.txt	line 4744
E1543	options.txt	line 4745
E1544	options.txt	line 4746
E1545	quickfix.txt	line 4747
E1546	autocmd.txt	line 4748
E1547	various.txt	line 4749
E1548	wayland.txt	line 4750
E1549	options.txt	line 4751
E155	sign.txt	line 4752
E1550	options.txt	line 4753
E1551	popup.txt	line 4754
E1552	vim9.txt	line 4755
E1553	vim9.txt	line 4756
E1554	vim9.txt	line 4757
E1555	vim9.txt	line 4758
E1556	vim9.txt	line 4759
E1557	vim9.txt	line 4760
E1558	vim9.txt	line 4761
E1559	vim9.txt	line 4762
E156	sign.txt	line 4763
E1560	vim9.txt	line 4764
E1561	vim9.txt	line 4765
E1562	options.txt	line 4766
E1563	remote.txt	line 4767
E1564	remote.txt	line 4768
E1565	remote.txt	line 4769
E1566	remote.txt	line 4770
E1567	remote.txt	line 4771
E1568	options.txt	line 4772
E1569	builtin.txt	line 4773
E157	sign.txt	line 4774
E1570	builtin.txt	line 4775
E1571	builtin.txt	line 4776
E1572	options.txt	line 4777
E1573	channel.txt	line 4778
E1574	channel.txt	line 4779
E1575	builtin.txt	line 4780
E1576	tagsrch.txt	line 4781
E1577	options.txt	line 4782
E158	sign.txt	line 4783
E159	sign.txt	line 4784
E16	cmdline.txt	line 4785
E160	sign.txt	line 4786
E161	repeat.txt	line 4787
E162	message.txt	line 4788
E163	editing.txt	line 4789
E164	editing.txt	line 4790
E165	editing.txt	line 4791
E166	message.txt	line 4792
E167	repeat.txt	line 4793
E168	repeat.txt	line 4794
E169	message.txt	line 4795
E17	message.txt	line 4796
E170	eval.txt	line 4797
E171	eval.txt	line 4798
E172	eval.txt	line 4799
E173	message.txt	line 4800
E174	map.txt	line 4801
E175	map.txt	line 4802
E176	map.txt	line 4803
E177	map.txt	line 4804
E178	map.txt	line 4805
E179	map.txt	line 4806
E18	eval.txt	line 4807
E180	map.txt	line 4808
E181	map.txt	line 4809
E182	map.txt	line 4810
E183	map.txt	line 4811
E184	map.txt	line 4812
E185	syntax.txt	line 4813
E186	editing.txt	line 4814
E187	editing.txt	line 4815
E188	gui.txt	line 4816
E189	message.txt	line 4817
E19	message.txt	line 4818
E190	message.txt	line 4819
E191	motion.txt	line 4820
E192	message.txt	line 4821
E193	userfunc.txt	line 4822
E194	message.txt	line 4823
E195	starting.txt	line 4824
E196	various.txt	line 4825
E197	mlang.txt	line 4826
E199	cmdline.txt	line 4827
E20	motion.txt	line 4828
E200	autocmd.txt	line 4829
E201	autocmd.txt	line 4830
E202	options.txt	line 4831
E203	autocmd.txt	line 4832
E204	autocmd.txt	line 4833
E205	options.txt	line 4834
E206	options.txt	line 4835
E207	editing.txt	line 4836
E208	message.txt	line 4837
E209	message.txt	line 4838
E21	options.txt	line 4839
E210	message.txt	line 4840
E211	message.txt	line 4841
E212	message.txt	line 4842
E213	options.txt	line 4843
E214	options.txt	line 4844
E215	autocmd.txt	line 4845
E216	autocmd.txt	line 4846
E217	autocmd.txt	line 4847
E218	autocmd.txt	line 4848
E219	message.txt	line 4849
E22	message.txt	line 4850
E220	message.txt	line 4851
E221	eval.txt	line 4852
E222	message.txt	line 4853
E223	options.txt	line 4854
E224	map.txt	line 4855
E225	map.txt	line 4856
E226	map.txt	line 4857
E227	map.txt	line 4858
E228	message.txt	line 4859
E229	gui.txt	line 4860
E23	message.txt	line 4861
E230	starting.txt	line 4862
E231	options.txt	line 4863
E232	message.txt	line 4864
E233	gui.txt	line 4865
E234	options.txt	line 4866
E235	options.txt	line 4867
E236	gui.txt	line 4868
E237	print.txt	line 4869
E238	print.txt	line 4870
E239	sign.txt	line 4871
E24	message.txt	line 4872
E240	remote.txt	line 4873
E241	builtin.txt	line 4874
E242	windows.txt	line 4875
E243	if_ole.txt	line 4876
E244	gui.txt	line 4877
E245	gui.txt	line 4878
E246	autocmd.txt	line 4879
E247	remote.txt	line 4880
E248	remote.txt	line 4881
E249	windows.txt	line 4882
E25	message.txt	line 4883
E250	options.txt	line 4884
E251	remote.txt	line 4885
E252	options.txt	line 4886
E253	mbyte.txt	line 4887
E254	message.txt	line 4888
E255	sign.txt	line 4889
E257	if_cscop.txt	line 4890
E258	remote.txt	line 4891
E259	if_cscop.txt	line 4892
E26	rileft.txt	line 4893
E260	eval.txt	line 4894
E261	if_cscop.txt	line 4895
E262	if_cscop.txt	line 4896
E263	if_pyth.txt	line 4897
E264	if_pyth.txt	line 4898
E265	if_ruby.txt	line 4899
E266	if_ruby.txt	line 4900
E267	if_ruby.txt	line 4901
E268	if_ruby.txt	line 4902
E269	if_ruby.txt	line 4903
E27	farsi.txt	line 4904
E270	if_ruby.txt	line 4905
E271	if_ruby.txt	line 4906
E272	if_ruby.txt	line 4907
E273	if_ruby.txt	line 4908
E274	eval.txt	line 4909
E275	textprop.txt	line 4910
E276	eval.txt	line 4911
E277	remote.txt	line 4912
E279	terminal.txt	line 4913
E28	syntax.txt	line 4914
E280	if_tcl.txt	line 4915
E282	starting.txt	line 4916
E283	motion.txt	line 4917
E284	mbyte.txt	line 4918
E285	mbyte.txt	line 4919
E286	mbyte.txt	line 4920
E287	mbyte.txt	line 4921
E288	mbyte.txt	line 4922
E289	mbyte.txt	line 4923
E29	change.txt	line 4924
E290	builtin.txt	line 4925
E292	message.txt	line 4926
E293	message.txt	line 4927
E294	message.txt	line 4928
E295	message.txt	line 4929
E296	message.txt	line 4930
E297	message.txt	line 4931
E298	message.txt	line 4932
E299	if_perl.txt	line 4933
E30	change.txt	line 4934
E300	message.txt	line 4935
E301	message.txt	line 4936
E302	message.txt	line 4937
E303	message.txt	line 4938
E304	message.txt	line 4939
E305	recover.txt	line 4940
E306	recover.txt	line 4941
E307	recover.txt	line 4942
E308	recover.txt	line 4943
E309	recover.txt	line 4944
E31	message.txt	line 4945
E310	recover.txt	line 4946
E311	recover.txt	line 4947
E312	recover.txt	line 4948
E313	recover.txt	line 4949
E314	recover.txt	line 4950
E315	message.txt	line 4951
E316	message.txt	line 4952
E317	message.txt	line 4953
E318	message.txt	line 4954
E319	message.txt	line 4955
E32	message.txt	line 4956
E320	message.txt	line 4957
E321	editing.txt	line 4958
E322	message.txt	line 4959
E323	message.txt	line 4960
E324	print.txt	line 4961
E325	usr_11.txt	line 4962
E326	recover.txt	line 4963
E327	gui.txt	line 4964
E328	gui.txt	line 4965
E329	gui.txt	line 4966
E33	message.txt	line 4967
E330	gui.txt	line 4968
E331	gui.txt	line 4969
E332	gui.txt	line 4970
E333	gui.txt	line 4971
E334	gui.txt	line 4972
E335	gui.txt	line 4973
E336	gui.txt	line 4974
E337	gui.txt	line 4975
E338	editing.txt	line 4976
E339	message.txt	line 4977
E34	various.txt	line 4978
E340	message.txt	line 4979
E341	message.txt	line 4980
E342	message.txt	line 4981
E343	options.txt	line 4982
E344	options.txt	line 4983
E345	options.txt	line 4984
E346	options.txt	line 4985
E347	options.txt	line 4986
E348	pattern.txt	line 4987
E349	pattern.txt	line 4988
E35	message.txt	line 4989
E350	fold.txt	line 4990
E351	fold.txt	line 4991
E352	fold.txt	line 4992
E353	change.txt	line 4993
E354	change.txt	line 4994
E355	options.txt	line 4995
E356	message.txt	line 4996
E357	options.txt	line 4997
E358	options.txt	line 4998
E359	term.txt	line 4999
E36	windows.txt	line 5000
E360	various.txt	line 5001
E362	eval.txt	line 5002
E363	options.txt	line 5003
E364	builtin.txt	line 5004
E365	print.txt	line 5005
E366	popup.txt	line 5006
E367	autocmd.txt	line 5007
E368	builtin.txt	line 5008
E369	pattern.txt	line 5009
E37	message.txt	line 5010
E370	various.txt	line 5011
E371	various.txt	line 5012
E372	quickfix.txt	line 5013
E373	quickfix.txt	line 5014
E374	quickfix.txt	line 5015
E375	quickfix.txt	line 5016
E376	quickfix.txt	line 5017
E377	quickfix.txt	line 5018
E378	quickfix.txt	line 5019
E379	quickfix.txt	line 5020
E38	message.txt	line 5021
E380	quickfix.txt	line 5022
E381	quickfix.txt	line 5023
E382	options.txt	line 5024
E383	pattern.txt	line 5025
E384	options.txt	line 5026
E385	options.txt	line 5027
E386	pattern.txt	line 5028
E387	tagsrch.txt	line 5029
E388	tagsrch.txt	line 5030
E389	tagsrch.txt	line 5031
E39	digraph.txt	line 5032
E390	syntax.txt	line 5033
E391	syntax.txt	line 5034
E392	syntax.txt	line 5035
E393	syntax.txt	line 5036
E394	syntax.txt	line 5037
E395	syntax.txt	line 5038
E397	syntax.txt	line 5039
E398	syntax.txt	line 5040
E399	syntax.txt	line 5041
E40	message.txt	line 5042
E400	syntax.txt	line 5043
E401	syntax.txt	line 5044
E402	syntax.txt	line 5045
E403	syntax.txt	line 5046
E404	syntax.txt	line 5047
E405	syntax.txt	line 5048
E406	syntax.txt	line 5049
E407	syntax.txt	line 5050
E408	syntax.txt	line 5051
E409	syntax.txt	line 5052
E41	message.txt	line 5053
E410	syntax.txt	line 5054
E411	syntax.txt	line 5055
E412	syntax.txt	line 5056
E413	syntax.txt	line 5057
E414	syntax.txt	line 5058
E415	syntax.txt	line 5059
E416	syntax.txt	line 5060
E417	syntax.txt	line 5061
E418	syntax.txt	line 5062
E419	syntax.txt	line 5063
E42	quickfix.txt	line 5064
E420	syntax.txt	line 5065
E421	syntax.txt	line 5066
E422	syntax.txt	line 5067
E423	syntax.txt	line 5068
E424	message.txt	line 5069
E425	tagsrch.txt	line 5070
E426	tagsrch.txt	line 5071
E427	tagsrch.txt	line 5072
E428	tagsrch.txt	line 5073
E429	tagsrch.txt	line 5074
E43	message.txt	line 5075
E430	tagsrch.txt	line 5076
E431	tagsrch.txt	line 5077
E432	message.txt	line 5078
E433	options.txt	line 5079
E434	tagsrch.txt	line 5080
E435	tagsrch.txt	line 5081
E436	term.txt	line 5082
E437	term.txt	line 5083
E438	message.txt	line 5084
E439	message.txt	line 5085
E44	message.txt	line 5086
E440	message.txt	line 5087
E441	windows.txt	line 5088
E442	windows.txt	line 5089
E443	windows.txt	line 5090
E444	windows.txt	line 5091
E445	windows.txt	line 5092
E446	editing.txt	line 5093
E447	editing.txt	line 5094
E448	various.txt	line 5095
E449	builtin.txt	line 5096
E45	message.txt	line 5097
E450	popup.txt	line 5098
E451	eval.txt	line 5099
E452	eval.txt	line 5100
E453	syntax.txt	line 5101
E454	userfunc.txt	line 5102
E455	print.txt	line 5103
E456	print.txt	line 5104
E457	print.txt	line 5105
E458	message.txt	line 5106
E459	message.txt	line 5107
E46	message.txt	line 5108
E460	builtin.txt	line 5109
E461	eval.txt	line 5110
E462	editing.txt	line 5111
E463	netbeans.txt	line 5112
E464	message.txt	line 5113
E465	gui.txt	line 5114
E466	gui.txt	line 5115
E467	map.txt	line 5116
E468	map.txt	line 5117
E469	if_cscop.txt	line 5118
E47	message.txt	line 5119
E470	change.txt	line 5120
E471	message.txt	line 5121
E472	editing.txt	line 5122
E473	message.txt	line 5123
E474	message.txt	line 5124
E475	message.txt	line 5125
E476	pattern.txt	line 5126
E477	message.txt	line 5127
E478	message.txt	line 5128
E479	editing.txt	line 5129
E48	eval.txt	line 5130
E480	editing.txt	line 5131
E481	message.txt	line 5132
E482	message.txt	line 5133
E483	message.txt	line 5134
E484	message.txt	line 5135
E485	message.txt	line 5136
E486	pattern.txt	line 5137
E487	options.txt	line 5138
E488	message.txt	line 5139
E489	cmdline.txt	line 5140
E49	message.txt	line 5141
E490	fold.txt	line 5142
E491	builtin.txt	line 5143
E492	message.txt	line 5144
E493	cmdline.txt	line 5145
E494	editing.txt	line 5146
E495	cmdline.txt	line 5147
E496	cmdline.txt	line 5148
E497	cmdline.txt	line 5149
E498	cmdline.txt	line 5150
E499	cmdline.txt	line 5151
E50	syntax.txt	line 5152
E500	cmdline.txt	line 5153
E501	intro.txt	line 5154
E502	editing.txt	line 5155
E503	editing.txt	line 5156
E504	editing.txt	line 5157
E505	editing.txt	line 5158
E506	editing.txt	line 5159
E507	editing.txt	line 5160
E508	editing.txt	line 5161
E509	editing.txt	line 5162
E51	pattern.txt	line 5163
E510	editing.txt	line 5164
E511	netbeans.txt	line 5165
E512	editing.txt	line 5166
E513	options.txt	line 5167
E514	editing.txt	line 5168
E515	windows.txt	line 5169
E516	windows.txt	line 5170
E517	windows.txt	line 5171
E518	options.txt	line 5172
E519	options.txt	line 5173
E52	syntax.txt	line 5174
E520	options.txt	line 5175
E521	options.txt	line 5176
E522	options.txt	line 5177
E523	options.txt	line 5178
E524	options.txt	line 5179
E525	options.txt	line 5180
E526	options.txt	line 5181
E527	options.txt	line 5182
E528	options.txt	line 5183
E529	options.txt	line 5184
E53	pattern.txt	line 5185
E530	options.txt	line 5186
E531	options.txt	line 5187
E532	netbeans.txt	line 5188
E533	options.txt	line 5189
E534	options.txt	line 5190
E535	options.txt	line 5191
E536	options.txt	line 5192
E537	options.txt	line 5193
E538	pattern.txt	line 5194
E539	options.txt	line 5195
E54	pattern.txt	line 5196
E540	options.txt	line 5197
E542	options.txt	line 5198
E543	options.txt	line 5199
E544	options.txt	line 5200
E545	options.txt	line 5201
E546	options.txt	line 5202
E547	options.txt	line 5203
E548	options.txt	line 5204
E549	options.txt	line 5205
E55	pattern.txt	line 5206
E550	options.txt	line 5207
E551	options.txt	line 5208
E552	options.txt	line 5209
E553	quickfix.txt	line 5210
E554	pattern.txt	line 5211
E555	tagsrch.txt	line 5212
E556	tagsrch.txt	line 5213
E557	term.txt	line 5214
E558	term.txt	line 5215
E559	term.txt	line 5216
E560	if_cscop.txt	line 5217
E561	if_cscop.txt	line 5218
E562	if_cscop.txt	line 5219
E563	if_cscop.txt	line 5220
E564	if_cscop.txt	line 5221
E565	insert.txt	line 5222
E566	if_cscop.txt	line 5223
E567	if_cscop.txt	line 5224
E568	if_cscop.txt	line 5225
E570	message.txt	line 5226
E571	if_tcl.txt	line 5227
E572	if_tcl.txt	line 5228
E573	remote.txt	line 5229
E574	starting.txt	line 5230
E575	starting.txt	line 5231
E576	starting.txt	line 5232
E577	starting.txt	line 5233
E579	eval.txt	line 5234
E580	eval.txt	line 5235
E581	eval.txt	line 5236
E582	eval.txt	line 5237
E583	eval.txt	line 5238
E584	eval.txt	line 5239
E585	eval.txt	line 5240
E586	eval.txt	line 5241
E587	eval.txt	line 5242
E588	eval.txt	line 5243
E589	options.txt	line 5244
E59	pattern.txt	line 5245
E590	options.txt	line 5246
E591	options.txt	line 5247
E592	options.txt	line 5248
E593	options.txt	line 5249
E594	options.txt	line 5250
E595	options.txt	line 5251
E596	options.txt	line 5252
E597	options.txt	line 5253
E598	options.txt	line 5254
E599	options.txt	line 5255
E60	pattern.txt	line 5256
E600	eval.txt	line 5257
E601	eval.txt	line 5258
E602	eval.txt	line 5259
E603	eval.txt	line 5260
E604	eval.txt	line 5261
E605	eval.txt	line 5262
E606	eval.txt	line 5263
E607	eval.txt	line 5264
E608	eval.txt	line 5265
E609	if_cscop.txt	line 5266
E61	pattern.txt	line 5267
E610	editing.txt	line 5268
E611	eval.txt	line 5269
E612	sign.txt	line 5270
E613	print.txt	line 5271
E614	builtin.txt	line 5272
E616	builtin.txt	line 5273
E617	options.txt	line 5274
E618	print.txt	line 5275
E619	print.txt	line 5276
E62	pattern.txt	line 5277
E620	print.txt	line 5278
E621	print.txt	line 5279
E622	if_cscop.txt	line 5280
E623	if_cscop.txt	line 5281
E624	print.txt	line 5282
E625	if_cscop.txt	line 5283
E626	if_cscop.txt	line 5284
E627	netbeans.txt	line 5285
E628	netbeans.txt	line 5286
E629	netbeans.txt	line 5287
E63	pattern.txt	line 5288
E630	channel.txt	line 5289
E631	channel.txt	line 5290
E632	netbeans.txt	line 5291
E633	netbeans.txt	line 5292
E634	netbeans.txt	line 5293
E635	netbeans.txt	line 5294
E636	netbeans.txt	line 5295
E637	netbeans.txt	line 5296
E638	netbeans.txt	line 5297
E639	netbeans.txt	line 5298
E64	pattern.txt	line 5299
E640	netbeans.txt	line 5300
E641	netbeans.txt	line 5301
E642	netbeans.txt	line 5302
E643	netbeans.txt	line 5303
E644	netbeans.txt	line 5304
E645	netbeans.txt	line 5305
E646	netbeans.txt	line 5306
E647	netbeans.txt	line 5307
E648	netbeans.txt	line 5308
E649	netbeans.txt	line 5309
E65	pattern.txt	line 5310
E650	netbeans.txt	line 5311
E651	netbeans.txt	line 5312
E652	netbeans.txt	line 5313
E654	eval.txt	line 5314
E655	builtin.txt	line 5315
E656	netbeans.txt	line 5316
E657	netbeans.txt	line 5317
E658	netbeans.txt	line 5318
E659	if_pyth.txt	line 5319
E66	syntax.txt	line 5320
E660	netbeans.txt	line 5321
E661	helphelp.txt	line 5322
E662	motion.txt	line 5323
E663	motion.txt	line 5324
E664	motion.txt	line 5325
E665	gui_x11.txt	line 5326
E666	quickfix.txt	line 5327
E667	editing.txt	line 5328
E668	netbeans.txt	line 5329
E669	syntax.txt	line 5330
E67	syntax.txt	line 5331
E670	helphelp.txt	line 5332
E671	starting.txt	line 5333
E672	starting.txt	line 5334
E673	print.txt	line 5335
E674	print.txt	line 5336
E675	print.txt	line 5337
E676	options.txt	line 5338
E677	builtin.txt	line 5339
E678	pattern.txt	line 5340
E679	syntax.txt	line 5341
E68	pattern.txt	line 5342
E680	autocmd.txt	line 5343
E681	quickfix.txt	line 5344
E682	quickfix.txt	line 5345
E683	quickfix.txt	line 5346
E684	eval.txt	line 5347
E685	message.txt	line 5348
E686	eval.txt	line 5349
E687	eval.txt	line 5350
E688	eval.txt	line 5351
E689	eval.txt	line 5352
E69	pattern.txt	line 5353
E690	eval.txt	line 5354
E691	eval.txt	line 5355
E692	eval.txt	line 5356
E693	builtin.txt	line 5357
E694	eval.txt	line 5358
E695	eval.txt	line 5359
E696	eval.txt	line 5360
E697	eval.txt	line 5361
E698	builtin.txt	line 5362
E699	builtin.txt	line 5363
E70	pattern.txt	line 5364
E700	builtin.txt	line 5365
E701	builtin.txt	line 5366
E702	builtin.txt	line 5367
E703	eval.txt	line 5368
E704	eval.txt	line 5369
E705	eval.txt	line 5370
E706	builtin.txt	line 5371
E707	eval.txt	line 5372
E708	eval.txt	line 5373
E709	eval.txt	line 5374
E71	pattern.txt	line 5375
E710	eval.txt	line 5376
E711	eval.txt	line 5377
E712	eval.txt	line 5378
E713	eval.txt	line 5379
E714	eval.txt	line 5380
E715	eval.txt	line 5381
E716	eval.txt	line 5382
E717	eval.txt	line 5383
E718	eval.txt	line 5384
E719	eval.txt	line 5385
E72	message.txt	line 5386
E720	eval.txt	line 5387
E721	eval.txt	line 5388
E722	eval.txt	line 5389
E723	eval.txt	line 5390
E724	builtin.txt	line 5391
E725	eval.txt	line 5392
E726	builtin.txt	line 5393
E727	builtin.txt	line 5394
E728	eval.txt	line 5395
E729	eval.txt	line 5396
E73	tagsrch.txt	line 5397
E730	eval.txt	line 5398
E731	eval.txt	line 5399
E732	eval.txt	line 5400
E733	eval.txt	line 5401
E734	eval.txt	line 5402
E735	eval.txt	line 5403
E736	eval.txt	line 5404
E737	builtin.txt	line 5405
E738	eval.txt	line 5406
E739	builtin.txt	line 5407
E74	message.txt	line 5408
E740	userfunc.txt	line 5409
E741	eval.txt	line 5410
E742	userfunc.txt	line 5411
E743	eval.txt	line 5412
E744	netbeans.txt	line 5413
E745	eval.txt	line 5414
E746	userfunc.txt	line 5415
E747	editing.txt	line 5416
E748	repeat.txt	line 5417
E749	various.txt	line 5418
E75	vi_diff.txt	line 5419
E750	repeat.txt	line 5420
E751	spell.txt	line 5421
E752	spell.txt	line 5422
E753	spell.txt	line 5423
E754	spell.txt	line 5424
E755	spell.txt	line 5425
E756	spell.txt	line 5426
E757	options.txt	line 5427
E758	spell.txt	line 5428
E759	spell.txt	line 5429
E76	pattern.txt	line 5430
E760	spell.txt	line 5431
E761	spell.txt	line 5432
E762	spell.txt	line 5433
E763	spell.txt	line 5434
E764	options.txt	line 5435
E765	options.txt	line 5436
E766	builtin.txt	line 5437
E767	builtin.txt	line 5438
E768	message.txt	line 5439
E769	pattern.txt	line 5440
E77	message.txt	line 5441
E770	spell.txt	line 5442
E771	spell.txt	line 5443
E772	spell.txt	line 5444
E773	recover.txt	line 5445
E774	map.txt	line 5446
E775	map.txt	line 5447
E776	quickfix.txt	line 5448
E777	quickfix.txt	line 5449
E778	spell.txt	line 5450
E779	spell.txt	line 5451
E78	motion.txt	line 5452
E780	spell.txt	line 5453
E781	spell.txt	line 5454
E782	spell.txt	line 5455
E783	spell.txt	line 5456
E784	tabpage.txt	line 5457
E785	builtin.txt	line 5458
E786	builtin.txt	line 5459
E787	diff.txt	line 5460
E788	autocmd.txt	line 5461
E789	syntax.txt	line 5462
E79	message.txt	line 5463
E790	undo.txt	line 5464
E791	mbyte.txt	line 5465
E792	gui.txt	line 5466
E793	diff.txt	line 5467
E794	eval.txt	line 5468
E795	eval.txt	line 5469
E796	options.txt	line 5470
E797	spell.txt	line 5471
E798	builtin.txt	line 5472
E799	builtin.txt	line 5473
E80	message.txt	line 5474
E800	arabic.txt	line 5475
E801	builtin.txt	line 5476
E802	builtin.txt	line 5477
E803	builtin.txt	line 5478
E804	eval.txt	line 5479
E805	eval.txt	line 5480
E806	eval.txt	line 5481
E807	builtin.txt	line 5482
E808	eval.txt	line 5483
E809	cmdline.txt	line 5484
E81	map.txt	line 5485
E810	diff.txt	line 5486
E811	autocmd.txt	line 5487
E812	autocmd.txt	line 5488
E813	editing.txt	line 5489
E814	editing.txt	line 5490
E815	if_mzsch.txt	line 5491
E816	diff.txt	line 5492
E817	editing.txt	line 5493
E818	editing.txt	line 5494
E819	editing.txt	line 5495
E82	message.txt	line 5496
E820	editing.txt	line 5497
E821	options.txt	line 5498
E822	undo.txt	line 5499
E823	undo.txt	line 5500
E824	undo.txt	line 5501
E825	undo.txt	line 5502
E826	undo.txt	line 5503
E827	undo.txt	line 5504
E828	undo.txt	line 5505
E829	undo.txt	line 5506
E83	message.txt	line 5507
E830	undo.txt	line 5508
E831	editing.txt	line 5509
E832	undo.txt	line 5510
E833	editing.txt	line 5511
E834	options.txt	line 5512
E835	options.txt	line 5513
E836	if_pyth.txt	line 5514
E837	if_pyth.txt	line 5515
E838	netbeans.txt	line 5516
E84	windows.txt	line 5517
E840	insert.txt	line 5518
E841	map.txt	line 5519
E842	cmdline.txt	line 5520
E843	editing.txt	line 5521
E844	syntax.txt	line 5522
E845	spell.txt	line 5523
E846	options.txt	line 5524
E847	syntax.txt	line 5525
E848	syntax.txt	line 5526
E849	syntax.txt	line 5527
E85	options.txt	line 5528
E850	change.txt	line 5529
E851	gui_x11.txt	line 5530
E852	gui_x11.txt	line 5531
E853	userfunc.txt	line 5532
E854	options.txt	line 5533
E855	autocmd.txt	line 5534
E856	testing.txt	line 5535
E857	builtin.txt	line 5536
E858	builtin.txt	line 5537
E859	builtin.txt	line 5538
E86	windows.txt	line 5539
E860	textprop.txt	line 5540
E861	popup.txt	line 5541
E862	eval.txt	line 5542
E863	popup.txt	line 5543
E864	pattern.txt	line 5544
E865	pattern.txt	line 5545
E866	pattern.txt	line 5546
E867	pattern.txt	line 5547
E868	pattern.txt	line 5548
E869	pattern.txt	line 5549
E87	windows.txt	line 5550
E870	pattern.txt	line 5551
E871	pattern.txt	line 5552
E872	pattern.txt	line 5553
E873	pattern.txt	line 5554
E874	pattern.txt	line 5555
E875	pattern.txt	line 5556
E876	pattern.txt	line 5557
E877	pattern.txt	line 5558
E878	pattern.txt	line 5559
E879	syntax.txt	line 5560
E88	windows.txt	line 5561
E880	if_pyth.txt	line 5562
E881	autocmd.txt	line 5563
E882	builtin.txt	line 5564
E883	builtin.txt	line 5565
E884	userfunc.txt	line 5566
E885	sign.txt	line 5567
E886	starting.txt	line 5568
E887	if_pyth.txt	line 5569
E888	pattern.txt	line 5570
E889	message.txt	line 5571
E89	message.txt	line 5572
E890	syntax.txt	line 5573
E891	eval.txt	line 5574
E892	eval.txt	line 5575
E893	eval.txt	line 5576
E894	eval.txt	line 5577
E895	if_mzsch.txt	line 5578
E896	eval.txt	line 5579
E897	eval.txt	line 5580
E898	channel.txt	line 5581
E899	eval.txt	line 5582
E90	message.txt	line 5583
E900	builtin.txt	line 5584
E901	channel.txt	line 5585
E902	channel.txt	line 5586
E903	channel.txt	line 5587
E904	channel.txt	line 5588
E905	channel.txt	line 5589
E906	channel.txt	line 5590
E907	eval.txt	line 5591
E908	eval.txt	line 5592
E909	eval.txt	line 5593
E91	options.txt	line 5594
E910	eval.txt	line 5595
E911	eval.txt	line 5596
E912	channel.txt	line 5597
E913	eval.txt	line 5598
E914	eval.txt	line 5599
E915	channel.txt	line 5600
E916	channel.txt	line 5601
E917	channel.txt	line 5602
E918	channel.txt	line 5603
E919	repeat.txt	line 5604
E92	message.txt	line 5605
E920	channel.txt	line 5606
E921	channel.txt	line 5607
E923	builtin.txt	line 5608
E924	quickfix.txt	line 5609
E925	quickfix.txt	line 5610
E926	quickfix.txt	line 5611
E927	builtin.txt	line 5612
E928	message.txt	line 5613
E929	starting.txt	line 5614
E93	windows.txt	line 5615
E930	builtin.txt	line 5616
E931	message.txt	line 5617
E932	userfunc.txt	line 5618
E933	userfunc.txt	line 5619
E934	sign.txt	line 5620
E935	builtin.txt	line 5621
E936	autocmd.txt	line 5622
E937	autocmd.txt	line 5623
E938	builtin.txt	line 5624
E939	change.txt	line 5625
E94	windows.txt	line 5626
E940	eval.txt	line 5627
E941	builtin.txt	line 5628
E942	builtin.txt	line 5629
E943	message.txt	line 5630
E944	pattern.txt	line 5631
E945	pattern.txt	line 5632
E946	terminal.txt	line 5633
E947	terminal.txt	line 5634
E948	terminal.txt	line 5635
E949	editing.txt	line 5636
E95	message.txt	line 5637
E950	options.txt	line 5638
E951	pattern.txt	line 5639
E952	autocmd.txt	line 5640
E953	terminal.txt	line 5641
E954	options.txt	line 5642
E955	terminal.txt	line 5643
E956	pattern.txt	line 5644
E957	builtin.txt	line 5645
E958	terminal.txt	line 5646
E959	diff.txt	line 5647
E96	diff.txt	line 5648
E960	options.txt	line 5649
E961	cmdline.txt	line 5650
E962	builtin.txt	line 5651
E963	eval.txt	line 5652
E964	textprop.txt	line 5653
E965	textprop.txt	line 5654
E966	textprop.txt	line 5655
E967	textprop.txt	line 5656
E968	textprop.txt	line 5657
E969	textprop.txt	line 5658
E97	diff.txt	line 5659
E970	textprop.txt	line 5660
E971	textprop.txt	line 5661
E972	eval.txt	line 5662
E973	eval.txt	line 5663
E974	eval.txt	line 5664
E975	eval.txt	line 5665
E976	eval.txt	line 5666
E977	eval.txt	line 5667
E978	eval.txt	line 5668
E979	eval.txt	line 5669
E98	diff.txt	line 5670
E980	builtin.txt	line 5671
E981	starting.txt	line 5672
E982	terminal.txt	line 5673
E983	message.txt	line 5674
E984	repeat.txt	line 5675
E985	eval.txt	line 5676
E986	tagsrch.txt	line 5677
E987	tagsrch.txt	line 5678
E988	gui_w32.txt	line 5679
E989	userfunc.txt	line 5680
E99	diff.txt	line 5681
E990	eval.txt	line 5682
E991	eval.txt	line 5683
E992	options.txt	line 5684
E993	popup.txt	line 5685
E994	builtin.txt	line 5686
E995	eval.txt	line 5687
E996	eval.txt	line 5688
E997	popup.txt	line 5689
E998	builtin.txt	line 5690
E999	repeat.txt	line 5691
EX	intro.txt	line 5692
EXINIT	starting.txt	line 5693
Elvis	intro.txt	line 5694
EncodingChanged	autocmd.txt	line 5695
Eterm	syntax.txt	line 5696
Ex	intro.txt	line 5697
Ex-mode	intro.txt	line 5698
ExitPre	autocmd.txt	line 5699
Exuberant_ctags	tagsrch.txt	line 5700
F	motion.txt	line 5701
FALSE	eval.txt	line 5702
FAQ	intro.txt	line 5703
Farsi	farsi.txt	line 5704
FileAppendCmd	autocmd.txt	line 5705
FileAppendPost	autocmd.txt	line 5706
FileAppendPre	autocmd.txt	line 5707
FileChangedRO	autocmd.txt	line 5708
FileChangedShell	autocmd.txt	line 5709
FileChangedShellPost	autocmd.txt	line 5710
FileEncoding	autocmd.txt	line 5711
FileExplorer	autocmd.txt	line 5712
FileReadCmd	autocmd.txt	line 5713
FileReadPost	autocmd.txt	line 5714
FileReadPre	autocmd.txt	line 5715
FileType	autocmd.txt	line 5716
FileWriteCmd	autocmd.txt	line 5717
FileWritePost	autocmd.txt	line 5718
FileWritePre	autocmd.txt	line 5719
FilterReadPost	autocmd.txt	line 5720
FilterReadPre	autocmd.txt	line 5721
FilterWritePost	autocmd.txt	line 5722
FilterWritePre	autocmd.txt	line 5723
Float	eval.txt	line 5724
FocusGained	autocmd.txt	line 5725
FocusLost	autocmd.txt	line 5726
Folding	fold.txt	line 5727
FuncUndefined	autocmd.txt	line 5728
Funcref	eval.txt	line 5729
G	motion.txt	line 5730
GNOME	gui_x11.txt	line 5731
GTK	gui_x11.txt	line 5732
GTK+	gui_x11.txt	line 5733
GTK3	gui_x11.txt	line 5734
GUI	gui.txt	line 5735
GUI-X11	gui_x11.txt	line 5736
GUIEnter	autocmd.txt	line 5737
GUIFailed	autocmd.txt	line 5738
GetLatestVimScripts	pi_getscript.txt	line 5739
GetLatestVimScripts-copyright	pi_getscript.txt	line 5740
GetLatestVimScripts_dat	pi_getscript.txt	line 5741
Gnome	gui_x11.txt	line 5742
H	motion.txt	line 5743
Haiku	os_haiku.txt	line 5744
HelpToc-mappings	helphelp.txt	line 5745
I	insert.txt	line 5746
ICCF	uganda.txt	line 5747
IM-server	mbyte.txt	line 5748
IME	mbyte.txt	line 5749
Insert	insert.txt	line 5750
Insert-mode	insert.txt	line 5751
InsertChange	autocmd.txt	line 5752
InsertCharPre	autocmd.txt	line 5753
InsertEnter	autocmd.txt	line 5754
InsertLeave	autocmd.txt	line 5755
InsertLeavePre	autocmd.txt	line 5756
Integer	eval.txt	line 5757
Interface	vim9class.txt	line 5758
J	change.txt	line 5759
Japanese	mbyte.txt	line 5760
Job	eval.txt	line 5761
Jobs	eval.txt	line 5762
Justify()	usr_25.txt	line 5763
K	various.txt	line 5764
KDE	gui_x11.txt	line 5765
KVim	gui_x11.txt	line 5766
KeyInputPre	autocmd.txt	line 5767
Kibaale	uganda.txt	line 5768
Korean	mbyte.txt	line 5769
Kuwasha	uganda.txt	line 5770
L	motion.txt	line 5771
Linux-backspace	options.txt	line 5772
List	eval.txt	line 5773
Lists	eval.txt	line 5774
LogiPat()	pi_logipat.txt	line 5775
LogiPat-flags	pi_logipat.txt	line 5776
Lua	if_lua.txt	line 5777
M	motion.txt	line 5778
MDI	starting.txt	line 5779
MS-DOS	os_msdos.txt	line 5780
MS-Windows	os_win32.txt	line 5781
MSDOS	os_msdos.txt	line 5782
MSVisualStudio	if_ole.txt	line 5783
MVS	os_390.txt	line 5784
Mac	os_mac.txt	line 5785
Mac-format	editing.txt	line 5786
Mac-format-write	editing.txt	line 5787
Macintosh	os_mac.txt	line 5788
Mark	motion.txt	line 5789
MenuPopup	autocmd.txt	line 5790
MiNT	os_mint.txt	line 5791
ModeChanged	autocmd.txt	line 5792
Moolenaar	version9.txt	line 5793
MorphOS	os_amiga.txt	line 5794
Motif	gui_x11.txt	line 5795
Myspell	spell.txt	line 5796
MzScheme	if_mzsch.txt	line 5797
N	pattern.txt	line 5798
N&#37;	motion.txt	line 5799
N:	cmdline.txt	line 5800
N&lt;Del&gt;	various.txt	line 5801
NFA	pattern.txt	line 5802
NL-used-for-Nul	pattern.txt	line 5803
Neovim	intro.txt	line 5804
NetBSD-backspace	options.txt	line 5805
NetBeans	netbeans.txt	line 5806
NetUserPass()	pi_netrw.txt	line 5807
None	eval.txt	line 5808
Normal	intro.txt	line 5809
Normal-mode	intro.txt	line 5810
Number	eval.txt	line 5811
Nvi	intro.txt	line 5812
O	insert.txt	line 5813
OS/2	os_os2.txt	line 5814
OS2	os_os2.txt	line 5815
OS390	os_390.txt	line 5816
OS390-Motif	os_390.txt	line 5817
OS390-PuTTY	os_390.txt	line 5818
OS390-bugs	os_390.txt	line 5819
OS390-has-ebcdic	os_390.txt	line 5820
OS390-limitations	os_390.txt	line 5821
OS390-open-source	os_390.txt	line 5822
Object	vim9class.txt	line 5823
OffTheSpot	mbyte.txt	line 5824
OnTheSpot	mbyte.txt	line 5825
Operator-pending	intro.txt	line 5826
Operator-pending-mode	intro.txt	line 5827
OptionSet	autocmd.txt	line 5828
OverTheSpot	mbyte.txt	line 5829
P	change.txt	line 5830
PATHEXT	builtin.txt	line 5831
PEP8	filetype.txt	line 5832
PHP_BracesAtCodeLevel	indent.txt	line 5833
PHP_IndentFunctionCallParameters	indent.txt	line 5834
PHP_IndentFunctionDeclarationParameters	indent.txt	line 5835
PHP_autoformatcomment	indent.txt	line 5836
PHP_default_indenting	indent.txt	line 5837
PHP_noArrowMatching	indent.txt	line 5838
PHP_outdentSLComments	indent.txt	line 5839
PHP_outdentphpescape	indent.txt	line 5840
PHP_removeCRwhenUnix	indent.txt	line 5841
PHP_vintage_case_default_indent	indent.txt	line 5842
POSIX.1-2001	develop.txt	line 5843
Partial	eval.txt	line 5844
Pattern	pattern.txt	line 5845
Perl	if_perl.txt	line 5846
Posix	intro.txt	line 5847
Python	if_pyth.txt	line 5848
Q	intro.txt	line 5849
Q-command-changed	version5.txt	line 5850
QNX	os_qnx.txt	line 5851
Q_ab	quickref.txt	line 5852
Q_ac	quickref.txt	line 5853
Q_ai	quickref.txt	line 5854
Q_bu	quickref.txt	line 5855
Q_ce	quickref.txt	line 5856
Q_ch	quickref.txt	line 5857
Q_cm	quickref.txt	line 5858
Q_co	quickref.txt	line 5859
Q_ct	help.txt	line 5860
Q_de	quickref.txt	line 5861
Q_di	quickref.txt	line 5862
Q_ed	quickref.txt	line 5863
Q_et	quickref.txt	line 5864
Q_ex	quickref.txt	line 5865
Q_fl	quickref.txt	line 5866
Q_fo	quickref.txt	line 5867
Q_gu	quickref.txt	line 5868
Q_in	quickref.txt	line 5869
Q_km	quickref.txt	line 5870
Q_lr	quickref.txt	line 5871
Q_ma	quickref.txt	line 5872
Q_op	quickref.txt	line 5873
Q_pa	quickref.txt	line 5874
Q_qf	quickref.txt	line 5875
Q_ra	quickref.txt	line 5876
Q_re	quickref.txt	line 5877
Q_sc	quickref.txt	line 5878
Q_si	quickref.txt	line 5879
Q_ss	quickref.txt	line 5880
Q_st	quickref.txt	line 5881
Q_sy	quickref.txt	line 5882
Q_ta	quickref.txt	line 5883
Q_tm	quickref.txt	line 5884
Q_to	quickref.txt	line 5885
Q_ud	quickref.txt	line 5886
Q_ur	quickref.txt	line 5887
Q_vc	quickref.txt	line 5888
Q_vi	quickref.txt	line 5889
Q_vm	quickref.txt	line 5890
Q_wi	quickref.txt	line 5891
Q_wq	quickref.txt	line 5892
QuickFixCmdPost	autocmd.txt	line 5893
QuickFixCmdPost-example	quickfix.txt	line 5894
QuickFixCmdPre	autocmd.txt	line 5895
Quickfix	quickfix.txt	line 5896
QuitPre	autocmd.txt	line 5897
R	change.txt	line 5898
RISC-OS	os_risc.txt	line 5899
RISCOS	os_risc.txt	line 5900
RemoteReply	autocmd.txt	line 5901
Replace	insert.txt	line 5902
Replace-mode	insert.txt	line 5903
Root	mbyte.txt	line 5904
Ruby	if_ruby.txt	line 5905
Russian	russian.txt	line 5906
S	change.txt	line 5907
SHELL	starting.txt	line 5908
SHIFT-+	scroll.txt	line 5909
SHIFT-MINUS	scroll.txt	line 5910
SQLGetType	ft_sql.txt	line 5911
SQLSetType	ft_sql.txt	line 5912
SafeState	autocmd.txt	line 5913
SafeStateAgain	autocmd.txt	line 5914
Select	visual.txt	line 5915
Select-mode	visual.txt	line 5916
Select-mode-mapping	visual.txt	line 5917
Session	starting.txt	line 5918
SessionLoad-variable	starting.txt	line 5919
SessionLoadPost	autocmd.txt	line 5920
SessionLoadPre	autocmd.txt	line 5921
SessionWritePost	autocmd.txt	line 5922
ShellCmdPost	autocmd.txt	line 5923
ShellFilterPost	autocmd.txt	line 5924
SigUSR1	autocmd.txt	line 5925
SourceCmd	autocmd.txt	line 5926
SourcePost	autocmd.txt	line 5927
SourcePre	autocmd.txt	line 5928
Special	eval.txt	line 5929
SpellFileMissing	autocmd.txt	line 5930
StdinReadPost	autocmd.txt	line 5931
StdinReadPre	autocmd.txt	line 5932
String	eval.txt	line 5933
Sven-Guckes	version9.txt	line 5934
SwapExists	autocmd.txt	line 5935
Syntax	autocmd.txt	line 5936
T	motion.txt	line 5937
TCL	if_tcl.txt	line 5938
TERM	starting.txt	line 5939
TOhtml-encoding	syntax.txt	line 5940
TOhtml-encoding-detect	syntax.txt	line 5941
TOhtml-performance	syntax.txt	line 5942
TOhtml-progress-color	syntax.txt	line 5943
TOhtml-uncopyable-text	syntax.txt	line 5944
TOhtml-wrap-text	syntax.txt	line 5945
TRUE	eval.txt	line 5946
TSQL	ft_sql.txt	line 5947
TTpro-telnet	syntax.txt	line 5948
Tab	intro.txt	line 5949
TabClosed	autocmd.txt	line 5950
TabClosedPre	autocmd.txt	line 5951
TabEnter	autocmd.txt	line 5952
TabLeave	autocmd.txt	line 5953
TabNew	autocmd.txt	line 5954
Tcl	if_tcl.txt	line 5955
TermChanged	autocmd.txt	line 5956
TermResponse	autocmd.txt	line 5957
TermResponseAll	autocmd.txt	line 5958
TermdebugStartPost	terminal.txt	line 5959
TermdebugStartPre	terminal.txt	line 5960
TermdebugStopPost	terminal.txt	line 5961
TermdebugStopPre	terminal.txt	line 5962
Terminal-Job	terminal.txt	line 5963
Terminal-Normal	terminal.txt	line 5964
Terminal-mode	terminal.txt	line 5965
TerminalOpen	autocmd.txt	line 5966
TerminalWinOpen	autocmd.txt	line 5967
TextChanged	autocmd.txt	line 5968
TextChangedI	autocmd.txt	line 5969
TextChangedP	autocmd.txt	line 5970
TextChangedT	autocmd.txt	line 5971
TextYankPost	autocmd.txt	line 5972
Transact-SQL	ft_sql.txt	line 5973
Tuple	eval.txt	line 5974
Tuples	eval.txt	line 5975
U	undo.txt	line 5976
UTF-8	mbyte.txt	line 5977
UTF8-xterm	mbyte.txt	line 5978
Uganda	uganda.txt	line 5979
Unicode	mbyte.txt	line 5980
Unix	os_unix.txt	line 5981
Unix-format	editing.txt	line 5982
Unix-format-write	editing.txt	line 5983
User	autocmd.txt	line 5984
UserGettingBored	autocmd.txt	line 5985
V	visual.txt	line 5986
VIMINIT	starting.txt	line 5987
VMS	os_vms.txt	line 5988
Vi	intro.txt	line 5989
Vietnamese	vietnamese.txt	line 5990
View	starting.txt	line 5991
Vim9	vim9.txt	line 5992
Vim9-abstract-class	vim9class.txt	line 5993
Vim9-class	vim9class.txt	line 5994
Vim9-class-member	vim9class.txt	line 5995
Vim9-class-overview	vim9class.txt	line 5996
Vim9-enum	vim9class.txt	line 5997
Vim9-script	vim9.txt	line 5998
Vim9-simple-class	vim9class.txt	line 5999
Vim9-type	vim9class.txt	line 6000
Vim9-using-interface	vim9class.txt	line 6001
VimEnter	autocmd.txt	line 6002
VimLeave	autocmd.txt	line 6003
VimLeavePre	autocmd.txt	line 6004
VimResized	autocmd.txt	line 6005
VimResume	autocmd.txt	line 6006
VimSuspend	autocmd.txt	line 6007
Vimball-copyright	pi_vimball.txt	line 6008
Virtual-Replace-mode	insert.txt	line 6009
Visual	visual.txt	line 6010
Visual-mode	visual.txt	line 6011
W	motion.txt	line 6012
W10	message.txt	line 6013
W11	message.txt	line 6014
W12	message.txt	line 6015
W13	message.txt	line 6016
W14	message.txt	line 6017
W15	repeat.txt	line 6018
W16	message.txt	line 6019
W17	arabic.txt	line 6020
W18	syntax.txt	line 6021
W19	autocmd.txt	line 6022
W20	if_pyth.txt	line 6023
W21	if_pyth.txt	line 6024
W22	userfunc.txt	line 6025
W23	gui_x11.txt	line 6026
W24	gui_x11.txt	line 6027
WORD	motion.txt	line 6028
WSL	os_win32.txt	line 6029
WWW	intro.txt	line 6030
Win32	os_win32.txt	line 6031
WinBar	gui.txt	line 6032
WinClosed	autocmd.txt	line 6033
WinEnter	autocmd.txt	line 6034
WinLeave	autocmd.txt	line 6035
WinNew	autocmd.txt	line 6036
WinNewPre	autocmd.txt	line 6037
WinResized	autocmd.txt	line 6038
WinResized-event	windows.txt	line 6039
WinScrolled	autocmd.txt	line 6040
WinScrolled-event	windows.txt	line 6041
X	change.txt	line 6042
X11	options.txt	line 6043
X11-icon	gui_x11.txt	line 6044
X11_mouse_shapes	gui_x11.txt	line 6045
X1Drag	term.txt	line 6046
X1Mouse	term.txt	line 6047
X1Release	term.txt	line 6048
X2Drag	term.txt	line 6049
X2Mouse	term.txt	line 6050
X2Release	term.txt	line 6051
XIM	mbyte.txt	line 6052
XLFD	mbyte.txt	line 6053
Y	change.txt	line 6054
Y2K	intro.txt	line 6055
ZQ	editing.txt	line 6056
ZZ	editing.txt	line 6057
[	index.txt	line 6058
[#	motion.txt	line 6059
['	motion.txt	line 6060
[(	motion.txt	line 6061
[++opt]	editing.txt	line 6062
[+cmd]	editing.txt	line 6063
[..]	pattern.txt	line 6064
[/	motion.txt	line 6065
[:alnum:]	pattern.txt	line 6066
[:alpha:]	pattern.txt	line 6067
[:backspace:]	pattern.txt	line 6068
[:blank:]	pattern.txt	line 6069
[:cntrl:]	pattern.txt	line 6070
[:digit:]	pattern.txt	line 6071
[:escape:]	pattern.txt	line 6072
[:fname:]	pattern.txt	line 6073
[:graph:]	pattern.txt	line 6074
[:ident:]	pattern.txt	line 6075
[:keyword:]	pattern.txt	line 6076
[:lower:]	pattern.txt	line 6077
[:print:]	pattern.txt	line 6078
[:punct:]	pattern.txt	line 6079
[:return:]	pattern.txt	line 6080
[:space:]	pattern.txt	line 6081
[:tab:]	pattern.txt	line 6082
[:upper:]	pattern.txt	line 6083
[:xdigit:]	pattern.txt	line 6084
[&lt;MiddleMouse&gt;	change.txt	line 6085
[==]	pattern.txt	line 6086
[D	tagsrch.txt	line 6087
[I	tagsrch.txt	line 6088
[M	motion.txt	line 6089
[P	change.txt	line 6090
[S	spell.txt	line 6091
[[	motion.txt	line 6092
[]	motion.txt	line 6093
[_CTRL-D	tagsrch.txt	line 6094
[_CTRL-I	tagsrch.txt	line 6095
[`	motion.txt	line 6096
[c	diff.txt	line 6097
[count]	intro.txt	line 6098
[d	tagsrch.txt	line 6099
[f	editing.txt	line 6100
[i	tagsrch.txt	line 6101
[m	motion.txt	line 6102
[p	change.txt	line 6103
[pattern]	pattern.txt	line 6104
[quotex]	intro.txt	line 6105
[r	spell.txt	line 6106
[range]	cmdline.txt	line 6107
[s	spell.txt	line 6108
[star	motion.txt	line 6109
[z	fold.txt	line 6110
[{	motion.txt	line 6111
\0	change.txt	line 6112
]	index.txt	line 6113
]#	motion.txt	line 6114
]'	motion.txt	line 6115
])	motion.txt	line 6116
]/	motion.txt	line 6117
]&lt;MiddleMouse&gt;	change.txt	line 6118
]D	tagsrch.txt	line 6119
]I	tagsrch.txt	line 6120
]M	motion.txt	line 6121
]P	change.txt	line 6122
]S	spell.txt	line 6123
][	motion.txt	line 6124
]]	motion.txt	line 6125
]_CTRL-D	tagsrch.txt	line 6126
]_CTRL-I	tagsrch.txt	line 6127
]`	motion.txt	line 6128
]c	diff.txt	line 6129
]d	tagsrch.txt	line 6130
]f	editing.txt	line 6131
]i	tagsrch.txt	line 6132
]m	motion.txt	line 6133
]p	change.txt	line 6134
]r	spell.txt	line 6135
]s	spell.txt	line 6136
]star	motion.txt	line 6137
]z	fold.txt	line 6138
]}	motion.txt	line 6139
^	motion.txt	line 6140
_	motion.txt	line 6141
_exrc	starting.txt	line 6142
_gvimrc	gui.txt	line 6143
_vimrc	starting.txt	line 6144
`	motion.txt	line 6145
`(	motion.txt	line 6146
`)	motion.txt	line 6147
`-expansion	editing.txt	line 6148
`.	motion.txt	line 6149
`0	motion.txt	line 6150
`&lt;	motion.txt	line 6151
`=	editing.txt	line 6152
`&gt;	motion.txt	line 6153
`A	motion.txt	line 6154
`[	motion.txt	line 6155
`]	motion.txt	line 6156
`^	motion.txt	line 6157
``	motion.txt	line 6158
`a	motion.txt	line 6159
`quote	motion.txt	line 6160
`{	motion.txt	line 6161
`}	motion.txt	line 6162
a	insert.txt	line 6163
a'	motion.txt	line 6164
a(	motion.txt	line 6165
a)	motion.txt	line 6166
a4	print.txt	line 6167
a:0	userfunc.txt	line 6168
a:000	userfunc.txt	line 6169
a:1	userfunc.txt	line 6170
a:firstline	userfunc.txt	line 6171
a:lastline	userfunc.txt	line 6172
a:var	userfunc.txt	line 6173
a&lt;	motion.txt	line 6174
a&gt;	motion.txt	line 6175
aB	motion.txt	line 6176
aW	motion.txt	line 6177
a[	motion.txt	line 6178
a]	motion.txt	line 6179
a`	motion.txt	line 6180
ab	motion.txt	line 6181
abandon	editing.txt	line 6182
abbreviations	map.txt	line 6183
abel.vim	syntax.txt	line 6184
abs()	builtin.txt	line 6185
abstract-method	vim9class.txt	line 6186
acos()	builtin.txt	line 6187
active-buffer	windows.txt	line 6188
ada#Create_Tags()	ft_ada.txt	line 6189
ada#Jump_Tag()	ft_ada.txt	line 6190
ada#Listtags()	ft_ada.txt	line 6191
ada#Switch_Syntax_Option()	ft_ada.txt	line 6192
ada#Word()	ft_ada.txt	line 6193
ada-compiler	ft_ada.txt	line 6194
ada-ctags	ft_ada.txt	line 6195
ada-extra-plugins	ft_ada.txt	line 6196
ada-reference	ft_ada.txt	line 6197
ada.vim	ft_ada.txt	line 6198
add()	builtin.txt	line 6199
add-filetype-plugin	usr_05.txt	line 6200
add-global-plugin	usr_05.txt	line 6201
add-local-help	usr_05.txt	line 6202
add-option-flags	options.txt	line 6203
add-package	usr_05.txt	line 6204
add-plugin	usr_05.txt	line 6205
added-5.1	version5.txt	line 6206
added-5.2	version5.txt	line 6207
added-5.3	version5.txt	line 6208
added-5.4	version5.txt	line 6209
added-5.5	version5.txt	line 6210
added-5.6	version5.txt	line 6211
added-5.7	version5.txt	line 6212
added-5.8	version5.txt	line 6213
added-6.1	version6.txt	line 6214
added-6.2	version6.txt	line 6215
added-6.3	version6.txt	line 6216
added-6.4	version6.txt	line 6217
added-7.1	version7.txt	line 6218
added-7.2	version7.txt	line 6219
added-7.3	version7.txt	line 6220
added-7.4	version7.txt	line 6221
added-8.1	version8.txt	line 6222
added-8.2	version8.txt	line 6223
added-9.1	version9.txt	line 6224
added-9.2	version9.txt	line 6225
added-9.3	version9.txt	line 6226
added-BeOS	version5.txt	line 6227
added-Mac	version5.txt	line 6228
added-VMS	version5.txt	line 6229
added-cmdline-args	version5.txt	line 6230
added-options	version5.txt	line 6231
added-regexp	version5.txt	line 6232
added-various	version5.txt	line 6233
added-win32-GUI	version5.txt	line 6234
aff-dic-format	spell.txt	line 6235
after-directory	options.txt	line 6236
aleph	options.txt	line 6237
algol68	syntax.txt	line 6238
algol68_no_preludes	syntax.txt	line 6239
algol68_symbolic_operators	syntax.txt	line 6240
alt	intro.txt	line 6241
alt-input	debugger.txt	line 6242
alternate-file	editing.txt	line 6243
amiga-window	starting.txt	line 6244
and()	builtin.txt	line 6245
android	builtin.txt	line 6246
anonymous-function	eval.txt	line 6247
ant.vim	syntax.txt	line 6248
ap	motion.txt	line 6249
apache.vim	syntax.txt	line 6250
append()	builtin.txt	line 6251
appendbufline()	builtin.txt	line 6252
aquote	motion.txt	line 6253
arabic.txt	arabic.txt	line 6254
arabicfonts	arabic.txt	line 6255
arabickeymap	arabic.txt	line 6256
arg-functions	usr_41.txt	line 6257
argc()	builtin.txt	line 6258
argidx()	builtin.txt	line 6259
arglist	editing.txt	line 6260
arglist-position	editing.txt	line 6261
arglist-quit	usr_07.txt	line 6262
arglistid()	builtin.txt	line 6263
argument-list	editing.txt	line 6264
argv()	builtin.txt	line 6265
argv-variable	eval.txt	line 6266
arrow_modifiers	term.txt	line 6267
as	motion.txt	line 6268
asin()	builtin.txt	line 6269
asm.vim	syntax.txt	line 6270
asm68k	syntax.txt	line 6271
asmh8300.vim	syntax.txt	line 6272
assert-functions-details	testing.txt	line 6273
assert-return	eval.txt	line 6274
assert_beeps()	testing.txt	line 6275
assert_equal()	testing.txt	line 6276
assert_equalfile()	testing.txt	line 6277
assert_exception()	testing.txt	line 6278
assert_fails()	testing.txt	line 6279
assert_false()	testing.txt	line 6280
assert_inrange()	testing.txt	line 6281
assert_match()	testing.txt	line 6282
assert_nobeep()	testing.txt	line 6283
assert_notequal()	testing.txt	line 6284
assert_notmatch()	testing.txt	line 6285
assert_report()	testing.txt	line 6286
assert_true()	testing.txt	line 6287
assumptions-C-compiler	develop.txt	line 6288
assumptions-makefiles	develop.txt	line 6289
assumptions-prototypes	develop.txt	line 6290
assumptions-variables	develop.txt	line 6291
astro.vim	syntax.txt	line 6292
asy.vim	syntax.txt	line 6293
at	motion.txt	line 6294
atan()	builtin.txt	line 6295
atan2()	builtin.txt	line 6296
attr-list	syntax.txt	line 6297
author	intro.txt	line 6298
auto-format	change.txt	line 6299
auto-setting	options.txt	line 6300
auto-shortname	editing.txt	line 6301
autocmd-&lt;&gt;	tips.txt	line 6302
autocmd-buffer-local	autocmd.txt	line 6303
autocmd-buflocal	autocmd.txt	line 6304
autocmd-changes	autocmd.txt	line 6305
autocmd-define	autocmd.txt	line 6306
autocmd-disable	autocmd.txt	line 6307
autocmd-events	autocmd.txt	line 6308
autocmd-events-abc	autocmd.txt	line 6309
autocmd-execute	autocmd.txt	line 6310
autocmd-expand	autocmd.txt	line 6311
autocmd-functions	usr_41.txt	line 6312
autocmd-groups	autocmd.txt	line 6313
autocmd-intro	autocmd.txt	line 6314
autocmd-list	autocmd.txt	line 6315
autocmd-nested	autocmd.txt	line 6316
autocmd-once	autocmd.txt	line 6317
autocmd-osfiletypes	filetype.txt	line 6318
autocmd-patterns	autocmd.txt	line 6319
autocmd-remove	autocmd.txt	line 6320
autocmd-searchpat	autocmd.txt	line 6321
autocmd-use	autocmd.txt	line 6322
autocmd.txt	autocmd.txt	line 6323
autocmd_add()	builtin.txt	line 6324
autocmd_delete()	builtin.txt	line 6325
autocmd_get()	builtin.txt	line 6326
autocmds-kept	version5.txt	line 6327
autocommand	autocmd.txt	line 6328
autocommand-events	autocmd.txt	line 6329
autocommand-pattern	autocmd.txt	line 6330
autocommands	autocmd.txt	line 6331
autoformat	change.txt	line 6332
autoload	userfunc.txt	line 6333
autoload-functions	userfunc.txt	line 6334
avoid-hit-enter	version5.txt	line 6335
aw	motion.txt	line 6336
a{	motion.txt	line 6337
a}	motion.txt	line 6338
b	motion.txt	line 6339
b:	eval.txt	line 6340
b:changedtick	eval.txt	line 6341
b:changelog_name	filetype.txt	line 6342
b:clojure_syntax_keywords	syntax.txt	line 6343
b:clojure_syntax_without_core_keywords	syntax.txt	line 6344
b:current_syntax-variable	syntax.txt	line 6345
b:hare_indent_case	ft_hare.txt	line 6346
b:hare_indent_match_switch	ft_hare.txt	line 6347
b:lf_shell_syntax	syntax.txt	line 6348
b:netrw_lastfile	pi_netrw.txt	line 6349
b:rust_cargo_avoid_whole_workspace	ft_rust.txt	line 6350
b:rust_cargo_check_all_features	ft_rust.txt	line 6351
b:rust_cargo_check_all_targets	ft_rust.txt	line 6352
b:rust_cargo_check_benches	ft_rust.txt	line 6353
b:rust_cargo_check_examples	ft_rust.txt	line 6354
b:rust_cargo_check_tests	ft_rust.txt	line 6355
b:rustfmt_autosave	ft_rust.txt	line 6356
b:rustfmt_autosave_if_config_present	ft_rust.txt	line 6357
b:tex_stylish	syntax.txt	line 6358
b:var	eval.txt	line 6359
b:yaml_schema	syntax.txt	line 6360
baan-folding	syntax.txt	line 6361
baan-syntax	syntax.txt	line 6362
baan.vim	syntax.txt	line 6363
backslash	intro.txt	line 6364
backspace	intro.txt	line 6365
backspace-delete	version4.txt	line 6366
backtick-expansion	editing.txt	line 6367
backup	editing.txt	line 6368
backup-changed	version4.txt	line 6369
backup-extension	version4.txt	line 6370
backup-table	editing.txt	line 6371
balloon-eval	debugger.txt	line 6372
balloon_gettext()	builtin.txt	line 6373
balloon_show()	builtin.txt	line 6374
balloon_split()	builtin.txt	line 6375
bar	motion.txt	line 6376
bars	help.txt	line 6377
base64_decode()	builtin.txt	line 6378
base64_encode()	builtin.txt	line 6379
base_font_name_list	mbyte.txt	line 6380
basic.vim	syntax.txt	line 6381
beep	options.txt	line 6382
beos	os_beos.txt	line 6383
better-python-interface	version7.txt	line 6384
beval_bufnr-variable	eval.txt	line 6385
beval_col-variable	eval.txt	line 6386
beval_lnum-variable	eval.txt	line 6387
beval_text-variable	eval.txt	line 6388
beval_winid-variable	eval.txt	line 6389
beval_winnr-variable	eval.txt	line 6390
binary-number	eval.txt	line 6391
bindtextdomain()	builtin.txt	line 6392
bitwise-function	usr_41.txt	line 6393
bitwise-shift	eval.txt	line 6394
blob	eval.txt	line 6395
blob-concatenation	eval.txt	line 6396
blob-functions	usr_41.txt	line 6397
blob-identity	eval.txt	line 6398
blob-index	eval.txt	line 6399
blob-literal	eval.txt	line 6400
blob-modification	eval.txt	line 6401
blob2list()	builtin.txt	line 6402
blob2str()	builtin.txt	line 6403
blockwise-examples	visual.txt	line 6404
blockwise-operators	visual.txt	line 6405
blockwise-put	change.txt	line 6406
blockwise-register	change.txt	line 6407
blockwise-visual	visual.txt	line 6408
blowfish	options.txt	line 6409
blowfish2	options.txt	line 6410
bold	syntax.txt	line 6411
bom-bytes	mbyte.txt	line 6412
book	intro.txt	line 6413
bookmark	usr_03.txt	line 6414
books	intro.txt	line 6415
boolean	options.txt	line 6416
break-finally	eval.txt	line 6417
browse()	builtin.txt	line 6418
browsedir()	builtin.txt	line 6419
browsefilter	editing.txt	line 6420
bufadd()	builtin.txt	line 6421
bufexists()	builtin.txt	line 6422
buffer-functions	usr_41.txt	line 6423
buffer-hidden	windows.txt	line 6424
buffer-list	windows.txt	line 6425
buffer-reuse	windows.txt	line 6426
buffer-variable	eval.txt	line 6427
buffer-write	editing.txt	line 6428
buffer_exists()	builtin.txt	line 6429
buffer_name()	builtin.txt	line 6430
buffer_number()	builtin.txt	line 6431
buffers	windows.txt	line 6432
buffers-menu	gui.txt	line 6433
buflisted()	builtin.txt	line 6434
bufload()	builtin.txt	line 6435
bufloaded()	builtin.txt	line 6436
bufname()	builtin.txt	line 6437
bufnr()	builtin.txt	line 6438
bufwinid()	builtin.txt	line 6439
bufwinnr()	builtin.txt	line 6440
bug-fixes-5	version5.txt	line 6441
bug-fixes-6	version6.txt	line 6442
bug-fixes-7	version7.txt	line 6443
bug-fixes-8	version8.txt	line 6444
bug-fixes-9	version9.txt	line 6445
bug-fixes-9.1	version9.txt	line 6446
bug-fixes-9.2	version9.txt	line 6447
bug-fixes-9.3	version9.txt	line 6448
bug-reports	intro.txt	line 6449
bugreport.vim	intro.txt	line 6450
bugs	intro.txt	line 6451
builtin-function-details	builtin.txt	line 6452
builtin-function-list	builtin.txt	line 6453
builtin-functions	builtin.txt	line 6454
builtin-object-methods	vim9class.txt	line 6455
builtin-terms	term.txt	line 6456
builtin-tools	gui.txt	line 6457
builtin.txt	builtin.txt	line 6458
builtin_terms	term.txt	line 6459
byte-count	editing.txt	line 6460
byte2line()	builtin.txt	line 6461
byteidx()	builtin.txt	line 6462
byteidxcomp()	builtin.txt	line 6463
bzip2	pi_gzip.txt	line 6464
c	change.txt	line 6465
c.vim	syntax.txt	line 6466
cW	change.txt	line 6467
c_#	cmdline.txt	line 6468
c_##	cmdline.txt	line 6469
c_#&lt;	cmdline.txt	line 6470
c_#n	cmdline.txt	line 6471
c_&#37;	cmdline.txt	line 6472
c_&#37;&#37;	cmdline.txt	line 6473
c_&#37;&#37;&#37;#	cmdline.txt	line 6474
c_&#37;&#37;&lt;	cmdline.txt	line 6475
c_&#37;&#37;n	cmdline.txt	line 6476
c_&lt;BS&gt;	cmdline.txt	line 6477
c_&lt;C-Left&gt;	cmdline.txt	line 6478
c_&lt;C-R&gt;	cmdline.txt	line 6479
c_&lt;C-R&gt;_&lt;C-A&gt;	cmdline.txt	line 6480
c_&lt;C-R&gt;_&lt;C-F&gt;	cmdline.txt	line 6481
c_&lt;C-R&gt;_&lt;C-L&gt;	cmdline.txt	line 6482
c_&lt;C-R&gt;_&lt;C-O&gt;	cmdline.txt	line 6483
c_&lt;C-R&gt;_&lt;C-P&gt;	cmdline.txt	line 6484
c_&lt;C-R&gt;_&lt;C-R&gt;	cmdline.txt	line 6485
c_&lt;C-R&gt;_&lt;C-W&gt;	cmdline.txt	line 6486
c_&lt;C-Right&gt;	cmdline.txt	line 6487
c_&lt;CR&gt;	cmdline.txt	line 6488
c_&lt;Del&gt;	cmdline.txt	line 6489
c_&lt;Down&gt;	cmdline.txt	line 6490
c_&lt;End&gt;	cmdline.txt	line 6491
c_&lt;Esc&gt;	cmdline.txt	line 6492
c_&lt;Home&gt;	cmdline.txt	line 6493
c_&lt;Insert&gt;	cmdline.txt	line 6494
c_&lt;Left&gt;	cmdline.txt	line 6495
c_&lt;LeftMouse&gt;	cmdline.txt	line 6496
c_&lt;MiddleMouse&gt;	cmdline.txt	line 6497
c_&lt;NL&gt;	cmdline.txt	line 6498
c_&lt;PageDown&gt;	cmdline.txt	line 6499
c_&lt;PageUp&gt;	cmdline.txt	line 6500
c_&lt;Right&gt;	cmdline.txt	line 6501
c_&lt;S-Down&gt;	cmdline.txt	line 6502
c_&lt;S-Left&gt;	cmdline.txt	line 6503
c_&lt;S-Right&gt;	cmdline.txt	line 6504
c_&lt;S-Tab&gt;	cmdline.txt	line 6505
c_&lt;S-Up&gt;	cmdline.txt	line 6506
c_&lt;Tab&gt;	cmdline.txt	line 6507
c_&lt;Up&gt;	cmdline.txt	line 6508
c_BS	cmdline.txt	line 6509
c_CR	cmdline.txt	line 6510
c_CTRL-A	cmdline.txt	line 6511
c_CTRL-B	cmdline.txt	line 6512
c_CTRL-C	cmdline.txt	line 6513
c_CTRL-D	cmdline.txt	line 6514
c_CTRL-E	cmdline.txt	line 6515
c_CTRL-F	cmdline.txt	line 6516
c_CTRL-G	cmdline.txt	line 6517
c_CTRL-H	cmdline.txt	line 6518
c_CTRL-I	cmdline.txt	line 6519
c_CTRL-J	cmdline.txt	line 6520
c_CTRL-K	cmdline.txt	line 6521
c_CTRL-L	cmdline.txt	line 6522
c_CTRL-M	cmdline.txt	line 6523
c_CTRL-N	cmdline.txt	line 6524
c_CTRL-P	cmdline.txt	line 6525
c_CTRL-Q	cmdline.txt	line 6526
c_CTRL-R	cmdline.txt	line 6527
c_CTRL-R_=	cmdline.txt	line 6528
c_CTRL-R_CTRL-A	cmdline.txt	line 6529
c_CTRL-R_CTRL-F	cmdline.txt	line 6530
c_CTRL-R_CTRL-L	cmdline.txt	line 6531
c_CTRL-R_CTRL-O	cmdline.txt	line 6532
c_CTRL-R_CTRL-P	cmdline.txt	line 6533
c_CTRL-R_CTRL-R	cmdline.txt	line 6534
c_CTRL-R_CTRL-W	cmdline.txt	line 6535
c_CTRL-SHIFT-Q	cmdline.txt	line 6536
c_CTRL-SHIFT-V	cmdline.txt	line 6537
c_CTRL-T	cmdline.txt	line 6538
c_CTRL-U	cmdline.txt	line 6539
c_CTRL-V	cmdline.txt	line 6540
c_CTRL-W	cmdline.txt	line 6541
c_CTRL-Y	cmdline.txt	line 6542
c_CTRL-[	cmdline.txt	line 6543
c_CTRL-\_CTRL-G	intro.txt	line 6544
c_CTRL-\_CTRL-N	intro.txt	line 6545
c_CTRL-\_e	cmdline.txt	line 6546
c_CTRL-]	cmdline.txt	line 6547
c_CTRL-^	cmdline.txt	line 6548
c_CTRL-_	cmdline.txt	line 6549
c_Del	cmdline.txt	line 6550
c_Down	cmdline.txt	line 6551
c_End	cmdline.txt	line 6552
c_Esc	cmdline.txt	line 6553
c_Home	cmdline.txt	line 6554
c_Insert	cmdline.txt	line 6555
c_Left	cmdline.txt	line 6556
c_Right	cmdline.txt	line 6557
c_Up	cmdline.txt	line 6558
c_ansi_constants	syntax.txt	line 6559
c_ansi_typedefs	syntax.txt	line 6560
c_comment_strings	syntax.txt	line 6561
c_curly_error	syntax.txt	line 6562
c_digraph	cmdline.txt	line 6563
c_function_pointers	syntax.txt	line 6564
c_functions	syntax.txt	line 6565
c_gnu	syntax.txt	line 6566
c_no_ansi	syntax.txt	line 6567
c_no_bracket_error	syntax.txt	line 6568
c_no_bsd	syntax.txt	line 6569
c_no_c11	syntax.txt	line 6570
c_no_c23	syntax.txt	line 6571
c_no_c99	syntax.txt	line 6572
c_no_cformat	syntax.txt	line 6573
c_no_curly_error	syntax.txt	line 6574
c_no_if0	syntax.txt	line 6575
c_no_tab_space_error	syntax.txt	line 6576
c_no_trail_space_error	syntax.txt	line 6577
c_no_utf	syntax.txt	line 6578
c_space_errors	syntax.txt	line 6579
c_syntax_for_h	syntax.txt	line 6580
c_wildchar	cmdline.txt	line 6581
call()	builtin.txt	line 6582
cangjie.vim	syntax.txt	line 6583
carriage-return	intro.txt	line 6584
case	change.txt	line 6585
catch-all	eval.txt	line 6586
catch-errors	eval.txt	line 6587
catch-interrupt	eval.txt	line 6588
catch-order	eval.txt	line 6589
catch-text	eval.txt	line 6590
cc	change.txt	line 6591
ceil()	builtin.txt	line 6592
cfilter-plugin	quickfix.txt	line 6593
ch.vim	syntax.txt	line 6594
ch_canread()	channel.txt	line 6595
ch_close()	channel.txt	line 6596
ch_close_in()	channel.txt	line 6597
ch_evalexpr()	channel.txt	line 6598
ch_evalraw()	channel.txt	line 6599
ch_getbufnr()	channel.txt	line 6600
ch_getjob()	channel.txt	line 6601
ch_info()	channel.txt	line 6602
ch_listen()	channel.txt	line 6603
ch_log()	channel.txt	line 6604
ch_logfile()	channel.txt	line 6605
ch_open()	channel.txt	line 6606
ch_read()	channel.txt	line 6607
ch_readblob()	channel.txt	line 6608
ch_readraw()	channel.txt	line 6609
ch_sendexpr()	channel.txt	line 6610
ch_sendraw()	channel.txt	line 6611
ch_setoptions()	channel.txt	line 6612
ch_status()	channel.txt	line 6613
change-list-jumps	motion.txt	line 6614
change-name	tips.txt	line 6615
change-tabs	change.txt	line 6616
change.txt	change.txt	line 6617
changed-5.1	version5.txt	line 6618
changed-5.2	version5.txt	line 6619
changed-5.3	version5.txt	line 6620
changed-5.4	version5.txt	line 6621
changed-5.5	version5.txt	line 6622
changed-5.6	version5.txt	line 6623
changed-5.7	version5.txt	line 6624
changed-5.8	version5.txt	line 6625
changed-6.1	version6.txt	line 6626
changed-6.2	version6.txt	line 6627
changed-6.3	version6.txt	line 6628
changed-6.4	version6.txt	line 6629
changed-7.1	version7.txt	line 6630
changed-7.2	version7.txt	line 6631
changed-7.3	version7.txt	line 6632
changed-7.4	version7.txt	line 6633
changed-8.1	version8.txt	line 6634
changed-8.2	version8.txt	line 6635
changed-9.1	version9.txt	line 6636
changed-9.2	version9.txt	line 6637
changed-9.3	version9.txt	line 6638
changelist	motion.txt	line 6639
changelog.vim	syntax.txt	line 6640
changenr()	builtin.txt	line 6641
changetick	eval.txt	line 6642
changing	change.txt	line 6643
channel	channel.txt	line 6644
channel-address	channel.txt	line 6645
channel-callback	channel.txt	line 6646
channel-close	channel.txt	line 6647
channel-close-in	channel.txt	line 6648
channel-commands	channel.txt	line 6649
channel-demo	channel.txt	line 6650
channel-drop	channel.txt	line 6651
channel-functions	usr_41.txt	line 6652
channel-functions-details	channel.txt	line 6653
channel-listen-demo	channel.txt	line 6654
channel-mode	channel.txt	line 6655
channel-more	channel.txt	line 6656
channel-noblock	channel.txt	line 6657
channel-onetime-callback	channel.txt	line 6658
channel-open	channel.txt	line 6659
channel-open-options	channel.txt	line 6660
channel-raw	channel.txt	line 6661
channel-timeout	channel.txt	line 6662
channel-use	channel.txt	line 6663
channel.txt	channel.txt	line 6664
char-variable	eval.txt	line 6665
char2nr()	builtin.txt	line 6666
characterwise	motion.txt	line 6667
characterwise-register	change.txt	line 6668
characterwise-visual	visual.txt	line 6669
charclass()	builtin.txt	line 6670
charcol()	builtin.txt	line 6671
charconvert_from-variable	eval.txt	line 6672
charconvert_to-variable	eval.txt	line 6673
charidx()	builtin.txt	line 6674
charity	uganda.txt	line 6675
charset	mbyte.txt	line 6676
charset-conversion	mbyte.txt	line 6677
chdir()	builtin.txt	line 6678
chill.vim	syntax.txt	line 6679
chmod	builtin.txt	line 6680
cindent()	builtin.txt	line 6681
cinkeys-format	indent.txt	line 6682
cino-#	indent.txt	line 6683
cino-(	indent.txt	line 6684
cino-)	indent.txt	line 6685
cino-+	indent.txt	line 6686
cino-/	indent.txt	line 6687
cino-:	indent.txt	line 6688
cino-=	indent.txt	line 6689
cino-&gt;	indent.txt	line 6690
cino-C	indent.txt	line 6691
cino-E	indent.txt	line 6692
cino-J	indent.txt	line 6693
cino-L	indent.txt	line 6694
cino-M	indent.txt	line 6695
cino-N	indent.txt	line 6696
cino-P	indent.txt	line 6697
cino-U	indent.txt	line 6698
cino-W	indent.txt	line 6699
cino-^	indent.txt	line 6700
cino-b	indent.txt	line 6701
cino-c	indent.txt	line 6702
cino-e	indent.txt	line 6703
cino-f	indent.txt	line 6704
cino-g	indent.txt	line 6705
cino-h	indent.txt	line 6706
cino-i	indent.txt	line 6707
cino-j	indent.txt	line 6708
cino-k	indent.txt	line 6709
cino-l	indent.txt	line 6710
cino-m	indent.txt	line 6711
cino-n	indent.txt	line 6712
cino-p	indent.txt	line 6713
cino-star	indent.txt	line 6714
cino-t	indent.txt	line 6715
cino-u	indent.txt	line 6716
cino-w	indent.txt	line 6717
cino-{	indent.txt	line 6718
cino-}	indent.txt	line 6719
cinoptions-values	indent.txt	line 6720
class	vim9class.txt	line 6721
class-compile	vim9class.txt	line 6722
class-method	vim9class.txt	line 6723
clear-undo	undo.txt	line 6724
clearmatches()	builtin.txt	line 6725
client-server	remote.txt	line 6726
client-server-name	remote.txt	line 6727
clientserver	remote.txt	line 6728
clipboard	gui.txt	line 6729
clipboard-autoselect	options.txt	line 6730
clipboard-autoselectml	options.txt	line 6731
clipboard-autoselectplus	options.txt	line 6732
clipboard-exclude	options.txt	line 6733
clipboard-html	options.txt	line 6734
clipboard-providers	eval.txt	line 6735
clipboard-providers-available	eval.txt	line 6736
clipboard-providers-clipboard	eval.txt	line 6737
clipboard-providers-clipmethod	eval.txt	line 6738
clipboard-providers-copy	eval.txt	line 6739
clipboard-providers-define	eval.txt	line 6740
clipboard-providers-no-clipboard	eval.txt	line 6741
clipboard-providers-paste	eval.txt	line 6742
clipboard-providers-plus	eval.txt	line 6743
clipboard-providers-textlock	eval.txt	line 6744
clipboard-unnamed	options.txt	line 6745
clipboard-unnamedplus	options.txt	line 6746
clojure-indent	indent.txt	line 6747
close_cb	channel.txt	line 6748
closure	eval.txt	line 6749
cmdarg-variable	eval.txt	line 6750
cmdbang-variable	eval.txt	line 6751
cmdcomplete_info()	builtin.txt	line 6752
cmdline-arguments	vi_diff.txt	line 6753
cmdline-autocompletion	cmdline.txt	line 6754
cmdline-changed	version5.txt	line 6755
cmdline-completion	cmdline.txt	line 6756
cmdline-editing	cmdline.txt	line 6757
cmdline-history	cmdline.txt	line 6758
cmdline-lines	cmdline.txt	line 6759
cmdline-ranges	cmdline.txt	line 6760
cmdline-special	cmdline.txt	line 6761
cmdline-too-long	cmdline.txt	line 6762
cmdline-window	cmdline.txt	line 6763
cmdline.txt	cmdline.txt	line 6764
cmdwin	cmdline.txt	line 6765
cmdwin-char	cmdline.txt	line 6766
cobol.vim	syntax.txt	line 6767
codeset	mbyte.txt	line 6768
coding-style	develop.txt	line 6769
col()	builtin.txt	line 6770
coldfusion.vim	syntax.txt	line 6771
collapse	tips.txt	line 6772
collate-variable	eval.txt	line 6773
color-schemes	syntax.txt	line 6774
color-xterm	syntax.txt	line 6775
coloring	syntax.txt	line 6776
colorscheme-override	syntax.txt	line 6777
colortest.vim	syntax.txt	line 6778
command-attributes	map.txt	line 6779
command-block	vim9.txt	line 6780
command-line-functions	usr_41.txt	line 6781
command-line-window	cmdline.txt	line 6782
command-mode	intro.txt	line 6783
comment-install	usr_05.txt	line 6784
compatible-default	starting.txt	line 6785
compile-changes-5	version5.txt	line 6786
compile-changes-6	version6.txt	line 6787
compile-changes-7	version7.txt	line 6788
compile-changes-8	version8.txt	line 6789
compile-changes-9	version9.txt	line 6790
compile-changes-9.2	version9.txt	line 6791
compiler-biome	quickfix.txt	line 6792
compiler-compaqada	ft_ada.txt	line 6793
compiler-cppcheck	quickfix.txt	line 6794
compiler-decada	ft_ada.txt	line 6795
compiler-dotnet	quickfix.txt	line 6796
compiler-gcc	quickfix.txt	line 6797
compiler-gnat	ft_ada.txt	line 6798
compiler-groff	quickfix.txt	line 6799
compiler-hare	ft_hare.txt	line 6800
compiler-hpada	ft_ada.txt	line 6801
compiler-javac	quickfix.txt	line 6802
compiler-make	quickfix.txt	line 6803
compiler-manx	quickfix.txt	line 6804
compiler-maven	quickfix.txt	line 6805
compiler-mypy	quickfix.txt	line 6806
compiler-pandoc	quickfix.txt	line 6807
compiler-perl	quickfix.txt	line 6808
compiler-pylint	quickfix.txt	line 6809
compiler-pyright	quickfix.txt	line 6810
compiler-pytest	quickfix.txt	line 6811
compiler-pyunit	quickfix.txt	line 6812
compiler-ruff	quickfix.txt	line 6813
compiler-select	quickfix.txt	line 6814
compiler-spotbugs	quickfix.txt	line 6815
compiler-tex	quickfix.txt	line 6816
compiler-tombi	quickfix.txt	line 6817
compiler-tsc	quickfix.txt	line 6818
compiler-ty	quickfix.txt	line 6819
compiler-typst	quickfix.txt	line 6820
compiler-vaxada	ft_ada.txt	line 6821
compl-current	insert.txt	line 6822
compl-define	insert.txt	line 6823
compl-dictionary	insert.txt	line 6824
compl-filename	insert.txt	line 6825
compl-function	insert.txt	line 6826
compl-generic	insert.txt	line 6827
compl-keyword	insert.txt	line 6828
compl-omni	insert.txt	line 6829
compl-omni-filetypes	insert.txt	line 6830
compl-register-words	insert.txt	line 6831
compl-spelling	insert.txt	line 6832
compl-states	insert.txt	line 6833
compl-stop	insert.txt	line 6834
compl-tag	insert.txt	line 6835
compl-thesaurus	insert.txt	line 6836
compl-thesaurusfunc	insert.txt	line 6837
compl-vim	insert.txt	line 6838
compl-whole-line	insert.txt	line 6839
complete()	builtin.txt	line 6840
complete-functions	insert.txt	line 6841
complete-item-kind	insert.txt	line 6842
complete-items	insert.txt	line 6843
complete-popup	insert.txt	line 6844
complete-popuphidden	insert.txt	line 6845
complete-script-local-functions	cmdline.txt	line 6846
complete-set-option	cmdline.txt	line 6847
complete_CTRL-E	insert.txt	line 6848
complete_CTRL-Y	insert.txt	line 6849
complete_add()	builtin.txt	line 6850
complete_check()	builtin.txt	line 6851
complete_info()	builtin.txt	line 6852
complete_info_mode	builtin.txt	line 6853
completed_item-variable	eval.txt	line 6854
completion-functions	usr_41.txt	line 6855
complex-change	change.txt	line 6856
complex-repeat	repeat.txt	line 6857
compress	pi_gzip.txt	line 6858
conceal	syntax.txt	line 6859
confirm()	builtin.txt	line 6860
connection-refused	message.txt	line 6861
console-menus	gui.txt	line 6862
constructor	vim9class.txt	line 6863
context.vim	ft_context.txt	line 6864
control	intro.txt	line 6865
conversion-server	mbyte.txt	line 6866
convert-to-HTML	syntax.txt	line 6867
convert-to-XHTML	syntax.txt	line 6868
convert-to-XML	syntax.txt	line 6869
convert_:function_to_:def	vim9.txt	line 6870
convert_legacy_function_to_vim9	vim9.txt	line 6871
copy()	builtin.txt	line 6872
copy-diffs	diff.txt	line 6873
copy-move	change.txt	line 6874
copying	uganda.txt	line 6875
copyright	uganda.txt	line 6876
cos()	builtin.txt	line 6877
cosh()	builtin.txt	line 6878
count	intro.txt	line 6879
count()	builtin.txt	line 6880
count-bytes	tips.txt	line 6881
count-items	tips.txt	line 6882
count-variable	eval.txt	line 6883
count1-variable	eval.txt	line 6884
cp-default	version5.txt	line 6885
cpo	options.txt	line 6886
cpo-!	options.txt	line 6887
cpo-#	options.txt	line 6888
cpo-$	options.txt	line 6889
cpo-&#37;	options.txt	line 6890
cpo-&amp;	options.txt	line 6891
cpo-+	options.txt	line 6892
cpo--	options.txt	line 6893
cpo-.	options.txt	line 6894
cpo-/	options.txt	line 6895
cpo-;	options.txt	line 6896
cpo-&lt;	options.txt	line 6897
cpo-&gt;	options.txt	line 6898
cpo-A	options.txt	line 6899
cpo-B	options.txt	line 6900
cpo-C	options.txt	line 6901
cpo-D	options.txt	line 6902
cpo-E	options.txt	line 6903
cpo-F	options.txt	line 6904
cpo-H	options.txt	line 6905
cpo-I	options.txt	line 6906
cpo-J	options.txt	line 6907
cpo-K	options.txt	line 6908
cpo-L	options.txt	line 6909
cpo-M	options.txt	line 6910
cpo-O	options.txt	line 6911
cpo-P	options.txt	line 6912
cpo-R	options.txt	line 6913
cpo-S	options.txt	line 6914
cpo-W	options.txt	line 6915
cpo-X	options.txt	line 6916
cpo-Z	options.txt	line 6917
cpo-\	options.txt	line 6918
cpo-a	options.txt	line 6919
cpo-b	options.txt	line 6920
cpo-bar	options.txt	line 6921
cpo-c	options.txt	line 6922
cpo-d	options.txt	line 6923
cpo-e	options.txt	line 6924
cpo-f	options.txt	line 6925
cpo-g	options.txt	line 6926
cpo-i	options.txt	line 6927
cpo-j	options.txt	line 6928
cpo-k	options.txt	line 6929
cpo-l	options.txt	line 6930
cpo-m	options.txt	line 6931
cpo-n	options.txt	line 6932
cpo-o	options.txt	line 6933
cpo-p	options.txt	line 6934
cpo-q	options.txt	line 6935
cpo-r	options.txt	line 6936
cpo-s	options.txt	line 6937
cpo-star	options.txt	line 6938
cpo-t	options.txt	line 6939
cpo-u	options.txt	line 6940
cpo-v	options.txt	line 6941
cpo-w	options.txt	line 6942
cpo-x	options.txt	line 6943
cpo-y	options.txt	line 6944
cpo-z	options.txt	line 6945
cpo-{	options.txt	line 6946
cpo-~	options.txt	line 6947
cpp.vim	syntax.txt	line 6948
crash-recovery	recover.txt	line 6949
creating-menus	gui.txt	line 6950
credits	intro.txt	line 6951
crontab	options.txt	line 6952
cs-find	if_cscop.txt	line 6953
cs.vim	syntax.txt	line 6954
cs7-problem	term.txt	line 6955
cscope	if_cscop.txt	line 6956
cscope-commands	if_cscop.txt	line 6957
cscope-find	if_cscop.txt	line 6958
cscope-howtouse	if_cscop.txt	line 6959
cscope-info	if_cscop.txt	line 6960
cscope-intro	if_cscop.txt	line 6961
cscope-limitations	if_cscop.txt	line 6962
cscope-options	if_cscop.txt	line 6963
cscope-suggestions	if_cscop.txt	line 6964
cscope-win32	if_cscop.txt	line 6965
cscope_connection()	builtin.txt	line 6966
cscopepathcomp	if_cscop.txt	line 6967
cscopeprg	if_cscop.txt	line 6968
cscopequickfix	if_cscop.txt	line 6969
cscoperelative	if_cscop.txt	line 6970
cscopetag	if_cscop.txt	line 6971
cscopetagorder	if_cscop.txt	line 6972
cscopeverbose	if_cscop.txt	line 6973
csh.vim	syntax.txt	line 6974
cspc	if_cscop.txt	line 6975
csprg	if_cscop.txt	line 6976
csqf	if_cscop.txt	line 6977
csre	if_cscop.txt	line 6978
cst	if_cscop.txt	line 6979
csto	if_cscop.txt	line 6980
csverb	if_cscop.txt	line 6981
ctags	tagsrch.txt	line 6982
ctags-gone	version6.txt	line 6983
cterm-colors	syntax.txt	line 6984
ctrl	intro.txt	line 6985
ctype-variable	eval.txt	line 6986
curly-braces-function-names	eval.txt	line 6987
curly-braces-names	eval.txt	line 6988
curpos-visual	version6.txt	line 6989
current-directory	editing.txt	line 6990
current-file	editing.txt	line 6991
current_compiler	quickfix.txt	line 6992
cursor()	builtin.txt	line 6993
cursor-blinking	options.txt	line 6994
cursor-down	intro.txt	line 6995
cursor-functions	usr_41.txt	line 6996
cursor-left	intro.txt	line 6997
cursor-motions	motion.txt	line 6998
cursor-position	pattern.txt	line 6999
cursor-right	intro.txt	line 7000
cursor-up	intro.txt	line 7001
cursor_down	intro.txt	line 7002
cursor_left	intro.txt	line 7003
cursor_right	intro.txt	line 7004
cursor_up	intro.txt	line 7005
cw	change.txt	line 7006
cweb.vim	syntax.txt	line 7007
cynlib.vim	syntax.txt	line 7008
d	change.txt	line 7009
d-special	change.txt	line 7010
daB	motion.txt	line 7011
daW	motion.txt	line 7012
dab	motion.txt	line 7013
dap	motion.txt	line 7014
dart.vim	syntax.txt	line 7015
das	motion.txt	line 7016
date-functions	usr_41.txt	line 7017
dav	pi_netrw.txt	line 7018
davs	pi_netrw.txt	line 7019
daw	motion.txt	line 7020
dd	change.txt	line 7021
debug-adapter-protocol	channel.txt	line 7022
debug-gcc	debug.txt	line 7023
debug-highlight	debugger.txt	line 7024
debug-leaks	debug.txt	line 7025
debug-minidump	debug.txt	line 7026
debug-mode	repeat.txt	line 7027
debug-scripts	repeat.txt	line 7028
debug-signs	debugger.txt	line 7029
debug-vim	debug.txt	line 7030
debug-vs2005	debug.txt	line 7031
debug-win32	debug.txt	line 7032
debug-windbg	debug.txt	line 7033
debug.txt	debug.txt	line 7034
debugbreak()	builtin.txt	line 7035
debugger-compilation	debugger.txt	line 7036
debugger-features	debugger.txt	line 7037
debugger-support	debugger.txt	line 7038
debugger.txt	debugger.txt	line 7039
dec-mouse	options.txt	line 7040
decada_members	ft_ada.txt	line 7041
deduplicating	change.txt	line 7042
deepcopy()	builtin.txt	line 7043
default-constructor	vim9class.txt	line 7044
defaults.vim	starting.txt	line 7045
defaults.vim-explained	usr_05.txt	line 7046
define-function	userfunc.txt	line 7047
definition-search	tagsrch.txt	line 7048
definitions	intro.txt	line 7049
delete()	builtin.txt	line 7050
delete-insert	change.txt	line 7051
delete-menus	gui.txt	line 7052
deletebufline()	builtin.txt	line 7053
deleting	change.txt	line 7054
demoserver.py	channel.txt	line 7055
deprecated-features	develop.txt	line 7056
design-assumptions	develop.txt	line 7057
design-compatible	develop.txt	line 7058
design-decisions	develop.txt	line 7059
design-documented	develop.txt	line 7060
design-flexible	develop.txt	line 7061
design-goals	develop.txt	line 7062
design-improved	develop.txt	line 7063
design-maintain	develop.txt	line 7064
design-multi-platform	develop.txt	line 7065
design-not	develop.txt	line 7066
design-policy	develop.txt	line 7067
design-speed-size	develop.txt	line 7068
desktop.vim	syntax.txt	line 7069
develop-spell	develop.txt	line 7070
develop-spell-suggestions	develop.txt	line 7071
develop.txt	develop.txt	line 7072
development	develop.txt	line 7073
dgn	motion.txt	line 7074
dh	change.txt	line 7075
diB	motion.txt	line 7076
diW	motion.txt	line 7077
dialog	gui_w32.txt	line 7078
dialogs-added	version5.txt	line 7079
dib	motion.txt	line 7080
dict	eval.txt	line 7081
dict-functions	usr_41.txt	line 7082
dict-identity	eval.txt	line 7083
dict-modification	eval.txt	line 7084
did_filetype()	builtin.txt	line 7085
diff	diff.txt	line 7086
diff()	builtin.txt	line 7087
diff-anchors	diff.txt	line 7088
diff-diffexpr	diff.txt	line 7089
diff-func-examples	diff.txt	line 7090
diff-mode	diff.txt	line 7091
diff-options	diff.txt	line 7092
diff-original-file	diff.txt	line 7093
diff-patchexpr	diff.txt	line 7094
diff-slow	diff.txt	line 7095
diff.txt	diff.txt	line 7096
diff.vim	syntax.txt	line 7097
diff_filler()	builtin.txt	line 7098
diff_hlID()	builtin.txt	line 7099
diff_translations	diff.txt	line 7100
digraph	digraph.txt	line 7101
digraph-arg	change.txt	line 7102
digraph-encoding	digraph.txt	line 7103
digraph-table	digraph.txt	line 7104
digraph-table-mbyte	digraph.txt	line 7105
digraph.txt	digraph.txt	line 7106
digraph_get()	builtin.txt	line 7107
digraph_getlist()	builtin.txt	line 7108
digraph_set()	builtin.txt	line 7109
digraph_setlist()	builtin.txt	line 7110
digraphs	digraph.txt	line 7111
digraphs-changed	version6.txt	line 7112
digraphs-default	digraph.txt	line 7113
digraphs-define	digraph.txt	line 7114
digraphs-use	digraph.txt	line 7115
dip	motion.txt	line 7116
dircolors.vim	syntax.txt	line 7117
dis	motion.txt	line 7118
disable-menus	gui.txt	line 7119
discard	editing.txt	line 7120
dist#vim	eval.txt	line 7121
dist#vim9	eval.txt	line 7122
dist#vim9#Launch()	eval.txt	line 7123
dist#vim9#Open()	eval.txt	line 7124
distribute-script	usr_51.txt	line 7125
distributed-plugins	usr_05.txt	line 7126
distribution	intro.txt	line 7127
diw	motion.txt	line 7128
dl	change.txt	line 7129
do	diff.txt	line 7130
doc-file-list	help.txt	line 7131
docbk.vim	syntax.txt	line 7132
docbksgml.vim	syntax.txt	line 7133
docbkxml.vim	syntax.txt	line 7134
docbook	syntax.txt	line 7135
documentation-6	version6.txt	line 7136
donate	uganda.txt	line 7137
dos	os_dos.txt	line 7138
dos-:cd	os_dos.txt	line 7139
dos-CTRL-Break	os_dos.txt	line 7140
dos-backslash	os_dos.txt	line 7141
dos-colors	os_dos.txt	line 7142
dos-file-formats	os_dos.txt	line 7143
dos-locations	os_dos.txt	line 7144
dos-powershell	os_dos.txt	line 7145
dos-pwsh	os_dos.txt	line 7146
dos-shell	os_dos.txt	line 7147
dos-standard-mappings	os_dos.txt	line 7148
dos-temp-files	os_dos.txt	line 7149
dosbatch.vim	syntax.txt	line 7150
double-click	term.txt	line 7151
download	intro.txt	line 7152
doxygen-syntax	syntax.txt	line 7153
doxygen.vim	syntax.txt	line 7154
dp	diff.txt	line 7155
drag-n-drop	gui.txt	line 7156
drag-n-drop-win32	gui_w32.txt	line 7157
drag-status-line	term.txt	line 7158
drop_file	gui.txt	line 7159
dtd.vim	syntax.txt	line 7160
dtd2vim	insert.txt	line 7161
dying-variable	eval.txt	line 7162
e	motion.txt	line 7163
easy	starting.txt	line 7164
echoraw()	builtin.txt	line 7165
echospace-variable	eval.txt	line 7166
edit-a-file	editing.txt	line 7167
edit-binary	editing.txt	line 7168
edit-dialogs	editing.txt	line 7169
edit-files	editing.txt	line 7170
edit-intro	editing.txt	line 7171
edit-no-break	usr_25.txt	line 7172
edit-paragraph-join	usr_25.txt	line 7173
edit-window	windows.txt	line 7174
editing.txt	editing.txt	line 7175
editorconfig-install	usr_05.txt	line 7176
efm-&#37;&gt;	quickfix.txt	line 7177
efm-entries	quickfix.txt	line 7178
efm-ignore	quickfix.txt	line 7179
eiffel.vim	syntax.txt	line 7180
elixir.vim	syntax.txt	line 7181
emacs-keys	tips.txt	line 7182
emacs-tags	tagsrch.txt	line 7183
emacs_tags	tagsrch.txt	line 7184
empty()	builtin.txt	line 7185
encoding-names	mbyte.txt	line 7186
encoding-table	mbyte.txt	line 7187
encoding-values	mbyte.txt	line 7188
encryption	editing.txt	line 7189
end	intro.txt	line 7190
end-of-file	pattern.txt	line 7191
enlightened-terminal	syntax.txt	line 7192
enum	vim9class.txt	line 7193
enum-constructor	vim9class.txt	line 7194
enum-name	vim9class.txt	line 7195
enum-ordinal	vim9class.txt	line 7196
enum-values	vim9class.txt	line 7197
enumvalue	vim9class.txt	line 7198
environ()	builtin.txt	line 7199
eol-and-eof	editing.txt	line 7200
erlang.vim	syntax.txt	line 7201
err_buf	channel.txt	line 7202
err_cb	channel.txt	line 7203
err_mode	channel.txt	line 7204
err_modifiable	channel.txt	line 7205
err_msg	channel.txt	line 7206
err_name	channel.txt	line 7207
err_teapot()	builtin.txt	line 7208
err_timeout	channel.txt	line 7209
errmsg-variable	eval.txt	line 7210
error-file-format	quickfix.txt	line 7211
error-messages	message.txt	line 7212
errorformat	quickfix.txt	line 7213
errorformat-Jikes	quickfix.txt	line 7214
errorformat-LaTeX	quickfix.txt	line 7215
errorformat-Perl	quickfix.txt	line 7216
errorformat-ant	quickfix.txt	line 7217
errorformat-changed	version4.txt	line 7218
errorformat-jade	quickfix.txt	line 7219
errorformat-javac	quickfix.txt	line 7220
errorformat-multi-line	quickfix.txt	line 7221
errorformat-separate-filename	quickfix.txt	line 7222
errorformats	quickfix.txt	line 7223
errors	message.txt	line 7224
errors-variable	eval.txt	line 7225
escape	intro.txt	line 7226
escape()	builtin.txt	line 7227
escape-bar	version4.txt	line 7228
euphoria3.vim	syntax.txt	line 7229
euphoria4.vim	syntax.txt	line 7230
euro	digraph.txt	line 7231
euro-digraph	digraph.txt	line 7232
eval	eval.txt	line 7233
eval()	builtin.txt	line 7234
eval-examples	eval.txt	line 7235
eval-sandbox	eval.txt	line 7236
eval.txt	eval.txt	line 7237
event-variable	eval.txt	line 7238
eventhandler()	builtin.txt	line 7239
eview	starting.txt	line 7240
evim	starting.txt	line 7241
evim-keys	starting.txt	line 7242
evim.vim	starting.txt	line 7243
ex	starting.txt	line 7244
ex-cmd-index	index.txt	line 7245
ex-edit-index	index.txt	line 7246
ex-flags	cmdline.txt	line 7247
ex:	options.txt	line 7248
except-autocmd	eval.txt	line 7249
except-autocmd-Cmd	eval.txt	line 7250
except-autocmd-Post	eval.txt	line 7251
except-autocmd-Pre	eval.txt	line 7252
except-autocmd-ill	eval.txt	line 7253
except-compat	eval.txt	line 7254
except-examine	eval.txt	line 7255
except-from-finally	eval.txt	line 7256
except-hier-param	eval.txt	line 7257
except-several-errors	eval.txt	line 7258
except-single-line	eval.txt	line 7259
except-syntax-err	eval.txt	line 7260
except-syntax-error	eval.txt	line 7261
exception-handling	eval.txt	line 7262
exception-variable	eval.txt	line 7263
exclusive	motion.txt	line 7264
exclusive-linewise	motion.txt	line 7265
executable()	builtin.txt	line 7266
execute()	builtin.txt	line 7267
execute-menus	gui.txt	line 7268
exepath()	builtin.txt	line 7269
exim	starting.txt	line 7270
exists()	builtin.txt	line 7271
exists_compiled()	builtin.txt	line 7272
exiting	starting.txt	line 7273
exiting-variable	eval.txt	line 7274
exp()	builtin.txt	line 7275
expand()	builtin.txt	line 7276
expand-env	options.txt	line 7277
expand-environment-var	options.txt	line 7278
expandcmd()	builtin.txt	line 7279
expr	eval.txt	line 7280
expr-!	eval.txt	line 7281
expr-!=	eval.txt	line 7282
expr-!=#	eval.txt	line 7283
expr-!=?	eval.txt	line 7284
expr-!~	eval.txt	line 7285
expr-!~#	eval.txt	line 7286
expr-!~?	eval.txt	line 7287
expr-$'	eval.txt	line 7288
expr-$quote	eval.txt	line 7289
expr-&#37;	eval.txt	line 7290
expr-&amp;&amp;	eval.txt	line 7291
expr-'	eval.txt	line 7292
expr-+	eval.txt	line 7293
expr--	eval.txt	line 7294
expr-.	eval.txt	line 7295
expr-..	eval.txt	line 7296
expr-/	eval.txt	line 7297
expr-&lt;	eval.txt	line 7298
expr-&lt;#	eval.txt	line 7299
expr-&lt;&lt;	eval.txt	line 7300
expr-&lt;=	eval.txt	line 7301
expr-&lt;=#	eval.txt	line 7302
expr-&lt;=?	eval.txt	line 7303
expr-&lt;?	eval.txt	line 7304
expr-==	eval.txt	line 7305
expr-==#	eval.txt	line 7306
expr-==?	eval.txt	line 7307
expr-=~	eval.txt	line 7308
expr-=~#	eval.txt	line 7309
expr-=~?	eval.txt	line 7310
expr-&gt;	eval.txt	line 7311
expr-&gt;#	eval.txt	line 7312
expr-&gt;=	eval.txt	line 7313
expr-&gt;=#	eval.txt	line 7314
expr-&gt;=?	eval.txt	line 7315
expr-&gt;&gt;	eval.txt	line 7316
expr-&gt;?	eval.txt	line 7317
expr-[:]	eval.txt	line 7318
expr-[]	eval.txt	line 7319
expr-barbar	eval.txt	line 7320
expr-entry	eval.txt	line 7321
expr-env	eval.txt	line 7322
expr-env-expand	eval.txt	line 7323
expr-function	eval.txt	line 7324
expr-is	eval.txt	line 7325
expr-is#	eval.txt	line 7326
expr-is?	eval.txt	line 7327
expr-isnot	eval.txt	line 7328
expr-isnot#	eval.txt	line 7329
expr-isnot?	eval.txt	line 7330
expr-lambda	eval.txt	line 7331
expr-nesting	eval.txt	line 7332
expr-number	eval.txt	line 7333
expr-option	eval.txt	line 7334
expr-option-function	vim9.txt	line 7335
expr-quote	eval.txt	line 7336
expr-register	eval.txt	line 7337
expr-star	eval.txt	line 7338
expr-string	eval.txt	line 7339
expr-unary-+	eval.txt	line 7340
expr-unary--	eval.txt	line 7341
expr-variable	eval.txt	line 7342
expr1	eval.txt	line 7343
expr10	eval.txt	line 7344
expr11	eval.txt	line 7345
expr2	eval.txt	line 7346
expr3	eval.txt	line 7347
expr4	eval.txt	line 7348
expr5	eval.txt	line 7349
expr6	eval.txt	line 7350
expr7	eval.txt	line 7351
expr8	eval.txt	line 7352
expr9	eval.txt	line 7353
expression	eval.txt	line 7354
expression-commands	eval.txt	line 7355
expression-syntax	eval.txt	line 7356
exrc	starting.txt	line 7357
extend()	builtin.txt	line 7358
extendnew()	builtin.txt	line 7359
extends	vim9class.txt	line 7360
extension-removal	cmdline.txt	line 7361
extensions-improvements	todo.txt	line 7362
f	motion.txt	line 7363
f-args-example	map.txt	line 7364
false	vim9.txt	line 7365
false-variable	eval.txt	line 7366
falsy	eval.txt	line 7367
falsy-operator	eval.txt	line 7368
faq	intro.txt	line 7369
farsi	farsi.txt	line 7370
farsi.txt	farsi.txt	line 7371
fasm.vim	syntax.txt	line 7372
fast-functions	vim9.txt	line 7373
fcs_choice-variable	eval.txt	line 7374
fcs_reason-variable	eval.txt	line 7375
feature-list	builtin.txt	line 7376
feedkeys()	builtin.txt	line 7377
fetch	pi_netrw.txt	line 7378
file-browser-5.2	version5.txt	line 7379
file-formats	editing.txt	line 7380
file-functions	usr_41.txt	line 7381
file-pattern	autocmd.txt	line 7382
file-read	insert.txt	line 7383
file-searching	editing.txt	line 7384
file-type	filetype.txt	line 7385
file-types	filetype.txt	line 7386
file-watcher	editing.txt	line 7387
file_readable()	builtin.txt	line 7388
filecopy()	builtin.txt	line 7389
fileencoding-changed	version6.txt	line 7390
filename-backslash	cmdline.txt	line 7391
filename-modifiers	cmdline.txt	line 7392
filereadable()	builtin.txt	line 7393
filetype	filetype.txt	line 7394
filetype-detect	filetype.txt	line 7395
filetype-ignore	filetype.txt	line 7396
filetype-overrule	filetype.txt	line 7397
filetype-plugin	usr_43.txt	line 7398
filetype-plugins	filetype.txt	line 7399
filetype.txt	filetype.txt	line 7400
filetypedetect-changed	version6.txt	line 7401
filetypes	filetype.txt	line 7402
filewritable()	builtin.txt	line 7403
filler-lines	windows.txt	line 7404
filter	change.txt	line 7405
filter()	builtin.txt	line 7406
find-manpage	usr_12.txt	line 7407
find-replace	usr_10.txt	line 7408
finddir()	builtin.txt	line 7409
findfile()	builtin.txt	line 7410
fixed-5.1	version5.txt	line 7411
fixed-5.2	version5.txt	line 7412
fixed-5.3	version5.txt	line 7413
fixed-5.4	version5.txt	line 7414
fixed-5.5	version5.txt	line 7415
fixed-5.6	version5.txt	line 7416
fixed-5.7	version5.txt	line 7417
fixed-5.8	version5.txt	line 7418
fixed-6.1	version6.txt	line 7419
fixed-6.2	version6.txt	line 7420
fixed-6.3	version6.txt	line 7421
fixed-6.4	version6.txt	line 7422
fixed-7.1	version7.txt	line 7423
fixed-7.2	version7.txt	line 7424
fixed-7.3	version7.txt	line 7425
fixed-7.4	version7.txt	line 7426
flatten()	builtin.txt	line 7427
flattennew()	builtin.txt	line 7428
flexwiki.vim	syntax.txt	line 7429
float-e	eval.txt	line 7430
float-functions	usr_41.txt	line 7431
float-pi	eval.txt	line 7432
float2nr()	builtin.txt	line 7433
floating-point-format	eval.txt	line 7434
floating-point-precision	eval.txt	line 7435
floor()	builtin.txt	line 7436
fmod()	builtin.txt	line 7437
fname-variable	eval.txt	line 7438
fname_diff-variable	eval.txt	line 7439
fname_in-variable	eval.txt	line 7440
fname_new-variable	eval.txt	line 7441
fname_out-variable	eval.txt	line 7442
fnameescape()	builtin.txt	line 7443
fnamemodify()	builtin.txt	line 7444
fo-/	change.txt	line 7445
fo-1	change.txt	line 7446
fo-2	change.txt	line 7447
fo-B	change.txt	line 7448
fo-M	change.txt	line 7449
fo-]	change.txt	line 7450
fo-a	change.txt	line 7451
fo-b	change.txt	line 7452
fo-c	change.txt	line 7453
fo-j	change.txt	line 7454
fo-l	change.txt	line 7455
fo-m	change.txt	line 7456
fo-n	change.txt	line 7457
fo-o	change.txt	line 7458
fo-p	change.txt	line 7459
fo-q	change.txt	line 7460
fo-r	change.txt	line 7461
fo-t	change.txt	line 7462
fo-table	change.txt	line 7463
fo-v	change.txt	line 7464
fo-w	change.txt	line 7465
fold-behavior	fold.txt	line 7466
fold-colors	fold.txt	line 7467
fold-commands	fold.txt	line 7468
fold-create-marker	fold.txt	line 7469
fold-delete-marker	fold.txt	line 7470
fold-diff	fold.txt	line 7471
fold-expr	fold.txt	line 7472
fold-expr-slow	fold.txt	line 7473
fold-foldcolumn	fold.txt	line 7474
fold-foldlevel	fold.txt	line 7475
fold-foldtext	fold.txt	line 7476
fold-indent	fold.txt	line 7477
fold-manual	fold.txt	line 7478
fold-marker	fold.txt	line 7479
fold-methods	fold.txt	line 7480
fold-options	fold.txt	line 7481
fold-syntax	fold.txt	line 7482
fold.txt	fold.txt	line 7483
foldclosed()	builtin.txt	line 7484
foldclosedend()	builtin.txt	line 7485
folddashes-variable	eval.txt	line 7486
foldend-variable	eval.txt	line 7487
folding	fold.txt	line 7488
folding-functions	usr_41.txt	line 7489
foldlevel()	builtin.txt	line 7490
foldlevel-variable	eval.txt	line 7491
folds	fold.txt	line 7492
foldstart-variable	eval.txt	line 7493
foldtext()	builtin.txt	line 7494
foldtextresult()	builtin.txt	line 7495
font-sizes	gui_x11.txt	line 7496
fontset	mbyte.txt	line 7497
forced-motion	motion.txt	line 7498
foreach()	builtin.txt	line 7499
foreground()	builtin.txt	line 7500
fork	os_unix.txt	line 7501
form.vim	syntax.txt	line 7502
format-bullet-list	tips.txt	line 7503
format-comments	change.txt	line 7504
format-formatexpr	change.txt	line 7505
formatOtherKeys	map.txt	line 7506
formatting	change.txt	line 7507
forth.vim	syntax.txt	line 7508
fortran.vim	syntax.txt	line 7509
freebasic.vim	syntax.txt	line 7510
freebasic_no_comment_fold	syntax.txt	line 7511
freebasic_operators	syntax.txt	line 7512
freebasic_space_errors	syntax.txt	line 7513
freebasic_type_suffixes	syntax.txt	line 7514
friendship	intro.txt	line 7515
frombook	usr_01.txt	line 7516
ft-abel-syntax	syntax.txt	line 7517
ft-ada-commands	ft_ada.txt	line 7518
ft-ada-constants	ft_ada.txt	line 7519
ft-ada-functions	ft_ada.txt	line 7520
ft-ada-indent	ft_ada.txt	line 7521
ft-ada-omni	ft_ada.txt	line 7522
ft-ada-options	ft_ada.txt	line 7523
ft-ada-plugin	ft_ada.txt	line 7524
ft-ada-syntax	ft_ada.txt	line 7525
ft-ada-variables	ft_ada.txt	line 7526
ft-algol68-syntax	syntax.txt	line 7527
ft-ant-syntax	syntax.txt	line 7528
ft-apache-syntax	syntax.txt	line 7529
ft-arduino-plugin	filetype.txt	line 7530
ft-asciidoc-plugin	filetype.txt	line 7531
ft-asm-syntax	syntax.txt	line 7532
ft-asm68k-syntax	syntax.txt	line 7533
ft-asmh8300-syntax	syntax.txt	line 7534
ft-aspperl-syntax	syntax.txt	line 7535
ft-aspvbs-syntax	syntax.txt	line 7536
ft-astro-syntax	syntax.txt	line 7537
ft-asy-syntax	syntax.txt	line 7538
ft-awk-plugin	filetype.txt	line 7539
ft-bash-syntax	syntax.txt	line 7540
ft-basic-syntax	syntax.txt	line 7541
ft-c-omni	insert.txt	line 7542
ft-c-syntax	syntax.txt	line 7543
ft-cangjie-syntax	syntax.txt	line 7544
ft-ch-syntax	syntax.txt	line 7545
ft-changelog-plugin	filetype.txt	line 7546
ft-changelog-syntax	syntax.txt	line 7547
ft-chill-syntax	syntax.txt	line 7548
ft-clojure-indent	indent.txt	line 7549
ft-clojure-syntax	syntax.txt	line 7550
ft-cobol-syntax	syntax.txt	line 7551
ft-coldfusion-syntax	syntax.txt	line 7552
ft-context	ft_context.txt	line 7553
ft-context-commands	ft_context.txt	line 7554
ft-context-intro	ft_context.txt	line 7555
ft-context-mappings	ft_context.txt	line 7556
ft-context-settings	ft_context.txt	line 7557
ft-cpp-syntax	syntax.txt	line 7558
ft-cs-syntax	syntax.txt	line 7559
ft-csh-syntax	syntax.txt	line 7560
ft-css-omni	insert.txt	line 7561
ft-csv-syntax	syntax.txt	line 7562
ft-cweb-syntax	syntax.txt	line 7563
ft-cynlib-syntax	syntax.txt	line 7564
ft-dart-syntax	syntax.txt	line 7565
ft-dash-syntax	syntax.txt	line 7566
ft-desktop-syntax	syntax.txt	line 7567
ft-dircolors-syntax	syntax.txt	line 7568
ft-docbk-syntax	syntax.txt	line 7569
ft-docbksgml-syntax	syntax.txt	line 7570
ft-docbkxml-syntax	syntax.txt	line 7571
ft-dosbatch-syntax	syntax.txt	line 7572
ft-dtd-syntax	syntax.txt	line 7573
ft-eiffel-syntax	syntax.txt	line 7574
ft-elixir-syntax	syntax.txt	line 7575
ft-erlang-syntax	syntax.txt	line 7576
ft-euphoria-syntax	syntax.txt	line 7577
ft-flexwiki-syntax	syntax.txt	line 7578
ft-form-syntax	syntax.txt	line 7579
ft-forth-syntax	syntax.txt	line 7580
ft-fortran-indent	indent.txt	line 7581
ft-fortran-plugin	filetype.txt	line 7582
ft-fortran-syntax	syntax.txt	line 7583
ft-freebasic-plugin	filetype.txt	line 7584
ft-freebasic-syntax	syntax.txt	line 7585
ft-fvwm-syntax	syntax.txt	line 7586
ft-gdb-syntax	syntax.txt	line 7587
ft-gdscript-plugin	filetype.txt	line 7588
ft-gitcommit-plugin	filetype.txt	line 7589
ft-gitrebase-plugin	filetype.txt	line 7590
ft-gleam-plugin	filetype.txt	line 7591
ft-go-plugin	filetype.txt	line 7592
ft-gprof-plugin	filetype.txt	line 7593
ft-groff-syntax	syntax.txt	line 7594
ft-gsp-syntax	syntax.txt	line 7595
ft-hare	filetype.txt	line 7596
ft-hare-indent	ft_hare.txt	line 7597
ft-hare-intro	ft_hare.txt	line 7598
ft-hare-plugin	ft_hare.txt	line 7599
ft-haredoc-plugin	ft_hare.txt	line 7600
ft-haskell-syntax	syntax.txt	line 7601
ft-help-omni	helphelp.txt	line 7602
ft-html-indent	indent.txt	line 7603
ft-html-omni	insert.txt	line 7604
ft-html-plugin	filetype.txt	line 7605
ft-html-syntax	syntax.txt	line 7606
ft-htmlos-syntax	syntax.txt	line 7607
ft-ia64-syntax	syntax.txt	line 7608
ft-idris2-indent	indent.txt	line 7609
ft-idris2-plugin	filetype.txt	line 7610
ft-inform-syntax	syntax.txt	line 7611
ft-java-plugin	filetype.txt	line 7612
ft-java-syntax	syntax.txt	line 7613
ft-javascript-omni	insert.txt	line 7614
ft-jq-syntax	syntax.txt	line 7615
ft-json-plugin	filetype.txt	line 7616
ft-json-syntax	syntax.txt	line 7617
ft-kconfig-syntax	syntax.txt	line 7618
ft-ksh-syntax	syntax.txt	line 7619
ft-lace-syntax	syntax.txt	line 7620
ft-lex-syntax	syntax.txt	line 7621
ft-lf-syntax	syntax.txt	line 7622
ft-lifelines-syntax	syntax.txt	line 7623
ft-lisp-syntax	syntax.txt	line 7624
ft-lite-syntax	syntax.txt	line 7625
ft-log-syntax	syntax.txt	line 7626
ft-lpc-syntax	syntax.txt	line 7627
ft-lua-plugin	filetype.txt	line 7628
ft-lua-syntax	syntax.txt	line 7629
ft-mail-plugin	filetype.txt	line 7630
ft-mail.vim	syntax.txt	line 7631
ft-make-syntax	syntax.txt	line 7632
ft-man-plugin	filetype.txt	line 7633
ft-maple-syntax	syntax.txt	line 7634
ft-markdown-plugin	filetype.txt	line 7635
ft-markdown-syntax	syntax.txt	line 7636
ft-masm-syntax	syntax.txt	line 7637
ft-mathematica-syntax	syntax.txt	line 7638
ft-matlab-indent	indent.txt	line 7639
ft-mbsync-syntax	syntax.txt	line 7640
ft-mediawiki-syntax	syntax.txt	line 7641
ft-metafont	ft_mp.txt	line 7642
ft-metafont-intro	ft_mp.txt	line 7643
ft-metafont-mappings	ft_mp.txt	line 7644
ft-metafont-settings	ft_mp.txt	line 7645
ft-metapost	ft_mp.txt	line 7646
ft-metapost-commands	ft_mp.txt	line 7647
ft-metapost-intro	ft_mp.txt	line 7648
ft-metapost-mappings	ft_mp.txt	line 7649
ft-metapost-settings	ft_mp.txt	line 7650
ft-mma-syntax	syntax.txt	line 7651
ft-modula2-syntax	syntax.txt	line 7652
ft-moo-syntax	syntax.txt	line 7653
ft-msql-syntax	syntax.txt	line 7654
ft-n1ql-syntax	syntax.txt	line 7655
ft-nasm-syntax	syntax.txt	line 7656
ft-ncf-syntax	syntax.txt	line 7657
ft-neomuttlog-syntax	syntax.txt	line 7658
ft-neomuttrc-syntax	syntax.txt	line 7659
ft-nroff-syntax	syntax.txt	line 7660
ft-ocaml-syntax	syntax.txt	line 7661
ft-org-plugin	filetype.txt	line 7662
ft-pandoc-syntax	syntax.txt	line 7663
ft-papp-syntax	syntax.txt	line 7664
ft-pascal-syntax	syntax.txt	line 7665
ft-pdf-plugin	filetype.txt	line 7666
ft-perl-syntax	syntax.txt	line 7667
ft-php-indent	indent.txt	line 7668
ft-php-omni	insert.txt	line 7669
ft-php-syntax	syntax.txt	line 7670
ft-php3-syntax	syntax.txt	line 7671
ft-phtml-syntax	syntax.txt	line 7672
ft-plaintex-syntax	syntax.txt	line 7673
ft-plsql-plugin	filetype.txt	line 7674
ft-posix-syntax	syntax.txt	line 7675
ft-postscr-syntax	syntax.txt	line 7676
ft-ppwiz-syntax	syntax.txt	line 7677
ft-printcap-syntax	syntax.txt	line 7678
ft-progress-syntax	syntax.txt	line 7679
ft-ptcap-syntax	syntax.txt	line 7680
ft-python-indent	indent.txt	line 7681
ft-python-plugin	filetype.txt	line 7682
ft-python-syntax	syntax.txt	line 7683
ft-qf-plugin	filetype.txt	line 7684
ft-quake-syntax	syntax.txt	line 7685
ft-r-indent	indent.txt	line 7686
ft-r-syntax	syntax.txt	line 7687
ft-rasi-syntax	syntax.txt	line 7688
ft-readline-syntax	syntax.txt	line 7689
ft-rego-syntax	syntax.txt	line 7690
ft-rexx-syntax	syntax.txt	line 7691
ft-rmd-plugin	filetype.txt	line 7692
ft-rmd-syntax	syntax.txt	line 7693
ft-rnoweb-plugin	filetype.txt	line 7694
ft-rrst-plugin	filetype.txt	line 7695
ft-rrst-syntax	syntax.txt	line 7696
ft-rst-plugin	filetype.txt	line 7697
ft-rst-syntax	syntax.txt	line 7698
ft-ruby-omni	insert.txt	line 7699
ft-ruby-syntax	syntax.txt	line 7700
ft-rust	filetype.txt	line 7701
ft-scheme-syntax	syntax.txt	line 7702
ft-sdl-syntax	syntax.txt	line 7703
ft-sed-syntax	syntax.txt	line 7704
ft-sgml-syntax	syntax.txt	line 7705
ft-sh-indent	indent.txt	line 7706
ft-sh-syntax	syntax.txt	line 7707
ft-spec-plugin	filetype.txt	line 7708
ft-spup-syntax	syntax.txt	line 7709
ft-sql	filetype.txt	line 7710
ft-sql-omni	insert.txt	line 7711
ft-sql-syntax	syntax.txt	line 7712
ft-sqlanywhere-syntax	syntax.txt	line 7713
ft-sqlinformix-syntax	syntax.txt	line 7714
ft-squirrel-syntax	syntax.txt	line 7715
ft-syntax-omni	insert.txt	line 7716
ft-tcsh-syntax	syntax.txt	line 7717
ft-termcap-syntax	syntax.txt	line 7718
ft-tex-plugin	filetype.txt	line 7719
ft-tex-syntax	syntax.txt	line 7720
ft-tf-syntax	syntax.txt	line 7721
ft-typescript-syntax	syntax.txt	line 7722
ft-typescriptreact-syntax	syntax.txt	line 7723
ft-typst-plugin	filetype.txt	line 7724
ft-typst-syntax	syntax.txt	line 7725
ft-vb-syntax	syntax.txt	line 7726
ft-verilog-indent	indent.txt	line 7727
ft-vhdl-indent	indent.txt	line 7728
ft-vim-indent	indent.txt	line 7729
ft-vim-omni	insert.txt	line 7730
ft-vim-plugin	filetype.txt	line 7731
ft-vim-syntax	syntax.txt	line 7732
ft-xf86conf-syntax	syntax.txt	line 7733
ft-xhtml-omni	insert.txt	line 7734
ft-xml-omni	insert.txt	line 7735
ft-xml-syntax	syntax.txt	line 7736
ft-xpm-syntax	syntax.txt	line 7737
ft-yaml-indent	indent.txt	line 7738
ft-yaml-plugin	filetype.txt	line 7739
ft-yaml-syntax	syntax.txt	line 7740
ft-zig-plugin	filetype.txt	line 7741
ft-zimbu-plugin	filetype.txt	line 7742
ft-zsh-syntax	syntax.txt	line 7743
ft_ada.txt	ft_ada.txt	line 7744
ft_context.txt	ft_context.txt	line 7745
ft_hare.txt	ft_hare.txt	line 7746
ft_mp.txt	ft_mp.txt	line 7747
ft_ps1.txt	ft_ps1.txt	line 7748
ft_raku.txt	ft_raku.txt	line 7749
ft_rust.txt	ft_rust.txt	line 7750
ft_sql.txt	ft_sql.txt	line 7751
ftdetect	filetype.txt	line 7752
ftp	pi_netrw.txt	line 7753
ftplugin	usr_51.txt	line 7754
ftplugin-docs	filetype.txt	line 7755
ftplugin-name	usr_05.txt	line 7756
ftplugin-overrule	filetype.txt	line 7757
ftplugin-special	usr_51.txt	line 7758
ftplugins	usr_05.txt	line 7759
fullcommand()	builtin.txt	line 7760
funcref()	builtin.txt	line 7761
function()	builtin.txt	line 7762
function-argument	userfunc.txt	line 7763
function-key	intro.txt	line 7764
function-list	usr_41.txt	line 7765
function-range-example	userfunc.txt	line 7766
function-search-undo	userfunc.txt	line 7767
function_key	intro.txt	line 7768
functions	eval.txt	line 7769
fuzzy-file-picker	cmdline.txt	line 7770
fuzzy-matching	pattern.txt	line 7771
fvwm.vim	syntax.txt	line 7772
fvwm2rc	syntax.txt	line 7773
fvwmrc	syntax.txt	line 7774
g	index.txt	line 7775
g#	pattern.txt	line 7776
g$	motion.txt	line 7777
g&amp;	change.txt	line 7778
g'	motion.txt	line 7779
g'a	motion.txt	line 7780
g+	undo.txt	line 7781
g,	motion.txt	line 7782
g-	undo.txt	line 7783
g0	motion.txt	line 7784
g8	various.txt	line 7785
g:	eval.txt	line 7786
g:NetrwTopLvlMenu	pi_netrw.txt	line 7787
g:Netrw_UserMaps	pi_netrw.txt	line 7788
g:Netrw_corehandler	pi_netrw.txt	line 7789
g:Netrw_funcref	pi_netrw.txt	line 7790
g:Openprg	eval.txt	line 7791
g:actual_curbuf	options.txt	line 7792
g:actual_curtabpage	options.txt	line 7793
g:actual_curwin	options.txt	line 7794
g:ada#Comment	ft_ada.txt	line 7795
g:ada#Ctags_Kinds	ft_ada.txt	line 7796
g:ada#DotWordRegex	ft_ada.txt	line 7797
g:ada#Keywords	ft_ada.txt	line 7798
g:ada#WordRegex	ft_ada.txt	line 7799
g:ada_abbrev	ft_ada.txt	line 7800
g:ada_all_tab_usage	ft_ada.txt	line 7801
g:ada_begin_preproc	ft_ada.txt	line 7802
g:ada_default_compiler	ft_ada.txt	line 7803
g:ada_extended_completion	ft_ada.txt	line 7804
g:ada_extended_tagging	ft_ada.txt	line 7805
g:ada_folding	ft_ada.txt	line 7806
g:ada_gnat_extensions	ft_ada.txt	line 7807
g:ada_line_errors	ft_ada.txt	line 7808
g:ada_no_tab_space_error	ft_ada.txt	line 7809
g:ada_no_trail_space_error	ft_ada.txt	line 7810
g:ada_omni_with_keywords	ft_ada.txt	line 7811
g:ada_rainbow_color	ft_ada.txt	line 7812
g:ada_space_errors	ft_ada.txt	line 7813
g:ada_standard_types	ft_ada.txt	line 7814
g:ada_with_gnat_project_files	ft_ada.txt	line 7815
g:ada_withuse_ordinary	ft_ada.txt	line 7816
g:cargo_makeprg_params	ft_rust.txt	line 7817
g:cargo_shell_command_runner	ft_rust.txt	line 7818
g:clojure_align_multiline_strings	indent.txt	line 7819
g:clojure_align_subforms	indent.txt	line 7820
g:clojure_discard_macro	syntax.txt	line 7821
g:clojure_fold	syntax.txt	line 7822
g:clojure_fuzzy_indent	indent.txt	line 7823
g:clojure_fuzzy_indent_blacklist	indent.txt	line 7824
g:clojure_fuzzy_indent_patterns	indent.txt	line 7825
g:clojure_maxlines	indent.txt	line 7826
g:clojure_special_indent_words	indent.txt	line 7827
g:clojure_syntax_keywords	syntax.txt	line 7828
g:colors_name	options.txt	line 7829
g:decada	ft_ada.txt	line 7830
g:decada.Error_Format	ft_ada.txt	line 7831
g:decada.Make()	ft_ada.txt	line 7832
g:decada.Make_Command	ft_ada.txt	line 7833
g:decada.Unit_Name()	ft_ada.txt	line 7834
g:do_no_lazyload_menus	gui.txt	line 7835
g:filetype_csh	syntax.txt	line 7836
g:filetype_haredoc	ft_hare.txt	line 7837
g:filetype_md	syntax.txt	line 7838
g:filetype_r	syntax.txt	line 7839
g:ft_man_implementation	filetype.txt	line 7840
g:ftplugin_rust_source_path	ft_rust.txt	line 7841
g:gnat	ft_ada.txt	line 7842
g:gnat.Error_Format	ft_ada.txt	line 7843
g:gnat.Find()	ft_ada.txt	line 7844
g:gnat.Find_Program	ft_ada.txt	line 7845
g:gnat.Make()	ft_ada.txt	line 7846
g:gnat.Make_Command	ft_ada.txt	line 7847
g:gnat.Pretty()	ft_ada.txt	line 7848
g:gnat.Pretty_Program	ft_ada.txt	line 7849
g:gnat.Project_File	ft_ada.txt	line 7850
g:gnat.Set_Project_File()	ft_ada.txt	line 7851
g:gnat.Tags()	ft_ada.txt	line 7852
g:gnat.Tags_Command	ft_ada.txt	line 7853
g:gzip_exec	pi_gzip.txt	line 7854
g:hare_indent_case	ft_hare.txt	line 7855
g:hare_indent_match_switch	ft_hare.txt	line 7856
g:hare_makeprg_params	ft_hare.txt	line 7857
g:hare_recommended_style	ft_hare.txt	line 7858
g:hare_space_error	ft_hare.txt	line 7859
g:help_example_languages	helphelp.txt	line 7860
g:html_charset_override	syntax.txt	line 7861
g:html_diff_one_file	syntax.txt	line 7862
g:html_dynamic_folds	syntax.txt	line 7863
g:html_encoding_override	syntax.txt	line 7864
g:html_end_line	syntax.txt	line 7865
g:html_expand_tabs	syntax.txt	line 7866
g:html_font	syntax.txt	line 7867
g:html_hover_unfold	syntax.txt	line 7868
g:html_id_expr	syntax.txt	line 7869
g:html_ignore_conceal	syntax.txt	line 7870
g:html_ignore_folding	syntax.txt	line 7871
g:html_line_ids	syntax.txt	line 7872
g:html_no_doc	syntax.txt	line 7873
g:html_no_foldcolumn	syntax.txt	line 7874
g:html_no_invalid	syntax.txt	line 7875
g:html_no_links	syntax.txt	line 7876
g:html_no_modeline	syntax.txt	line 7877
g:html_no_pre	syntax.txt	line 7878
g:html_no_progress	syntax.txt	line 7879
g:html_number_lines	syntax.txt	line 7880
g:html_pre_wrap	syntax.txt	line 7881
g:html_prevent_copy	syntax.txt	line 7882
g:html_start_line	syntax.txt	line 7883
g:html_use_css	syntax.txt	line 7884
g:html_use_encoding	syntax.txt	line 7885
g:html_use_input_for_pc	syntax.txt	line 7886
g:html_use_xhtml	syntax.txt	line 7887
g:html_whole_filler	syntax.txt	line 7888
g:lf_shell_syntax	syntax.txt	line 7889
g:lua_folding	filetype.txt	line 7890
g:lua_subversion	filetype.txt	line 7891
g:lua_version	filetype.txt	line 7892
g:markdown_fenced_languages	syntax.txt	line 7893
g:markdown_minlines	syntax.txt	line 7894
g:markdown_syntax_conceal	syntax.txt	line 7895
g:netrw_altfile	pi_netrw.txt	line 7896
g:netrw_alto	pi_netrw.txt	line 7897
g:netrw_altv	pi_netrw.txt	line 7898
g:netrw_banner	pi_netrw.txt	line 7899
g:netrw_bannerbackslash	pi_netrw.txt	line 7900
g:netrw_browse_split	pi_netrw.txt	line 7901
g:netrw_bufsettings	pi_netrw.txt	line 7902
g:netrw_chgperm	pi_netrw.txt	line 7903
g:netrw_chgwin	pi_netrw.txt	line 7904
g:netrw_clipboard	pi_netrw.txt	line 7905
g:netrw_compress	pi_netrw.txt	line 7906
g:netrw_ctags	pi_netrw.txt	line 7907
g:netrw_cursor	pi_netrw.txt	line 7908
g:netrw_cygwin	pi_netrw.txt	line 7909
g:netrw_dav_cmd	pi_netrw.txt	line 7910
g:netrw_decompress	pi_netrw.txt	line 7911
g:netrw_dirhistmax	pi_netrw.txt	line 7912
g:netrw_dynamic_maxfilenamelen	pi_netrw.txt	line 7913
g:netrw_fastbrowse	pi_netrw.txt	line 7914
g:netrw_fetch_cmd	pi_netrw.txt	line 7915
g:netrw_ffkeep	pi_netrw.txt	line 7916
g:netrw_file_cmd	pi_netrw.txt	line 7917
g:netrw_fname_escape	pi_netrw.txt	line 7918
g:netrw_ftp	pi_netrw.txt	line 7919
g:netrw_ftp_browse_reject	pi_netrw.txt	line 7920
g:netrw_ftp_cmd	pi_netrw.txt	line 7921
g:netrw_ftp_list_cmd	pi_netrw.txt	line 7922
g:netrw_ftp_options	pi_netrw.txt	line 7923
g:netrw_ftp_sizelist_cmd	pi_netrw.txt	line 7924
g:netrw_ftp_timelist_cmd	pi_netrw.txt	line 7925
g:netrw_ftpextracmd	pi_netrw.txt	line 7926
g:netrw_ftpmode	pi_netrw.txt	line 7927
g:netrw_glob_escape	pi_netrw.txt	line 7928
g:netrw_hide	pi_netrw.txt	line 7929
g:netrw_home	pi_netrw.txt	line 7930
g:netrw_http_cmd	pi_netrw.txt	line 7931
g:netrw_http_put_cmd	pi_netrw.txt	line 7932
g:netrw_http_xcmd	pi_netrw.txt	line 7933
g:netrw_ignorenetrc	pi_netrw.txt	line 7934
g:netrw_keepdir	pi_netrw.txt	line 7935
g:netrw_keepj	pi_netrw.txt	line 7936
g:netrw_list_cmd	pi_netrw.txt	line 7937
g:netrw_list_cmd_options	pi_netrw.txt	line 7938
g:netrw_list_hide	pi_netrw.txt	line 7939
g:netrw_liststyle	pi_netrw.txt	line 7940
g:netrw_localcopycmd	pi_netrw.txt	line 7941
g:netrw_localcopycmdopt	pi_netrw.txt	line 7942
g:netrw_localcopydircmd	pi_netrw.txt	line 7943
g:netrw_localcopydircmdopt	pi_netrw.txt	line 7944
g:netrw_localmkdir	pi_netrw.txt	line 7945
g:netrw_localmkdiropt	pi_netrw.txt	line 7946
g:netrw_localmovecmd	pi_netrw.txt	line 7947
g:netrw_localmovecmdopt	pi_netrw.txt	line 7948
g:netrw_maxfilenamelen	pi_netrw.txt	line 7949
g:netrw_menu	pi_netrw.txt	line 7950
g:netrw_mkdir_cmd	pi_netrw.txt	line 7951
g:netrw_mousemaps	pi_netrw.txt	line 7952
g:netrw_preview	pi_netrw.txt	line 7953
g:netrw_rcp_cmd	pi_netrw.txt	line 7954
g:netrw_remote_mkdir	pi_netrw.txt	line 7955
g:netrw_rename_cmd	pi_netrw.txt	line 7956
g:netrw_retmap	pi_netrw.txt	line 7957
g:netrw_rm_cmd	pi_netrw.txt	line 7958
g:netrw_rmdir_cmd	pi_netrw.txt	line 7959
g:netrw_rmf_cmd	pi_netrw.txt	line 7960
g:netrw_rsync_cmd	pi_netrw.txt	line 7961
g:netrw_rsync_sep	pi_netrw.txt	line 7962
g:netrw_scp_cmd	pi_netrw.txt	line 7963
g:netrw_scpport	pi_netrw.txt	line 7964
g:netrw_sepchr	pi_netrw.txt	line 7965
g:netrw_servername	pi_netrw.txt	line 7966
g:netrw_sftp_cmd	pi_netrw.txt	line 7967
g:netrw_silent	pi_netrw.txt	line 7968
g:netrw_sizestyle	pi_netrw.txt	line 7969
g:netrw_sort_by	pi_netrw.txt	line 7970
g:netrw_sort_direction	pi_netrw.txt	line 7971
g:netrw_sort_options	pi_netrw.txt	line 7972
g:netrw_sort_sequence	pi_netrw.txt	line 7973
g:netrw_special_syntax	pi_netrw.txt	line 7974
g:netrw_ssh_browse_reject	pi_netrw.txt	line 7975
g:netrw_ssh_cmd	pi_netrw.txt	line 7976
g:netrw_sshport	pi_netrw.txt	line 7977
g:netrw_timefmt	pi_netrw.txt	line 7978
g:netrw_uid	pi_netrw.txt	line 7979
g:netrw_use_noswf	pi_netrw.txt	line 7980
g:netrw_use_nt_rcp	pi_netrw.txt	line 7981
g:netrw_usetab	pi_netrw.txt	line 7982
g:netrw_winsize	pi_netrw.txt	line 7983
g:netrw_wiw	pi_netrw.txt	line 7984
g:netrw_xstrlen	pi_netrw.txt	line 7985
g:no_mail_maps	filetype.txt	line 7986
g:no_plugin_maps	filetype.txt	line 7987
g:plugin_exec	filetype.txt	line 7988
g:rust_bang_comment_leader	ft_rust.txt	line 7989
g:rust_cargo_avoid_whole_workspace	ft_rust.txt	line 7990
g:rust_cargo_check_all_features	ft_rust.txt	line 7991
g:rust_cargo_check_all_targets	ft_rust.txt	line 7992
g:rust_cargo_check_benches	ft_rust.txt	line 7993
g:rust_cargo_check_examples	ft_rust.txt	line 7994
g:rust_cargo_check_tests	ft_rust.txt	line 7995
g:rust_clip_command	ft_rust.txt	line 7996
g:rust_conceal	ft_rust.txt	line 7997
g:rust_conceal_mod_path	ft_rust.txt	line 7998
g:rust_conceal_pub	ft_rust.txt	line 7999
g:rust_fold	ft_rust.txt	line 8000
g:rust_keep_autopairs_default	ft_rust.txt	line 8001
g:rust_playpen_url	ft_rust.txt	line 8002
g:rust_recommended_style	ft_rust.txt	line 8003
g:rust_shortener_url	ft_rust.txt	line 8004
g:rust_use_custom_ctags_defs	ft_rust.txt	line 8005
g:rustc_makeprg_no_percent	ft_rust.txt	line 8006
g:rustc_path	ft_rust.txt	line 8007
g:rustfmt_autosave	ft_rust.txt	line 8008
g:rustfmt_autosave_if_config_present	ft_rust.txt	line 8009
g:rustfmt_command	ft_rust.txt	line 8010
g:rustfmt_detect_version	ft_rust.txt	line 8011
g:rustfmt_emit_files	ft_rust.txt	line 8012
g:rustfmt_fail_silently	ft_rust.txt	line 8013
g:rustfmt_find_toml	ft_rust.txt	line 8014
g:rustfmt_options	ft_rust.txt	line 8015
g:statusline_winid	options.txt	line 8016
g:syntax_on	syntax.txt	line 8017
g:tar_browseoptions	pi_tar.txt	line 8018
g:tar_cmd	pi_tar.txt	line 8019
g:tar_copycmd	pi_tar.txt	line 8020
g:tar_extractcmd	pi_tar.txt	line 8021
g:tar_nomax	pi_tar.txt	line 8022
g:tar_readoptions	pi_tar.txt	line 8023
g:tar_writeoptions	pi_tar.txt	line 8024
g:termdebug_config	terminal.txt	line 8025
g:termdebugger	terminal.txt	line 8026
g:terminal_ansi_colors	terminal.txt	line 8027
g:tex_comment_nospell	syntax.txt	line 8028
g:tex_conceal	syntax.txt	line 8029
g:tex_fast	syntax.txt	line 8030
g:tex_flavor	filetype.txt	line 8031
g:tex_fold_enabled	syntax.txt	line 8032
g:tex_isk	syntax.txt	line 8033
g:tex_matchcheck	syntax.txt	line 8034
g:tex_no_error	syntax.txt	line 8035
g:tex_nospell	syntax.txt	line 8036
g:tex_stylish	syntax.txt	line 8037
g:tex_subscripts	syntax.txt	line 8038
g:tex_superscripts	syntax.txt	line 8039
g:tex_verbspell	syntax.txt	line 8040
g:typescript_host_keyword	syntax.txt	line 8041
g:typst_cmd	quickfix.txt	line 8042
g:typst_conceal	filetype.txt	line 8043
g:typst_embedded_languages	syntax.txt	line 8044
g:typst_folding	filetype.txt	line 8045
g:typst_foldnested	filetype.txt	line 8046
g:var	eval.txt	line 8047
g:vim_indent	indent.txt	line 8048
g:vim_indent_cont	indent.txt	line 8049
g:vim_json_conceal	syntax.txt	line 8050
g:vim_json_warnings	syntax.txt	line 8051
g:vimball_home	pi_vimball.txt	line 8052
g:vimsyn_comment_strings	syntax.txt	line 8053
g:vimsyn_embed	syntax.txt	line 8054
g:vimsyn_folding	syntax.txt	line 8055
g:vimsyn_maxlines	syntax.txt	line 8056
g:vimsyn_minlines	syntax.txt	line 8057
g:vimsyn_noerror	syntax.txt	line 8058
g:yaml_schema	syntax.txt	line 8059
g:zig_recommended_style	filetype.txt	line 8060
g:zig_std_dir	filetype.txt	line 8061
g:zipPlugin_ext	pi_zip.txt	line 8062
g:zip_exec	pi_zip.txt	line 8063
g:zip_extractcmd	pi_zip.txt	line 8064
g:zip_nomax	pi_zip.txt	line 8065
g:zip_shq	pi_zip.txt	line 8066
g:zip_unzipcmd	pi_zip.txt	line 8067
g:zip_zipcmd	pi_zip.txt	line 8068
g;	motion.txt	line 8069
g&lt;	message.txt	line 8070
g&lt;Down&gt;	motion.txt	line 8071
g&lt;End&gt;	motion.txt	line 8072
g&lt;Home&gt;	motion.txt	line 8073
g&lt;LeftMouse&gt;	tagsrch.txt	line 8074
g&lt;RightMouse&gt;	tagsrch.txt	line 8075
g&lt;Tab&gt;	tabpage.txt	line 8076
g&lt;Up&gt;	motion.txt	line 8077
g&lt;kEnd&gt;	motion.txt	line 8078
g?	change.txt	line 8079
g??	change.txt	line 8080
g?g?	change.txt	line 8081
g@	map.txt	line 8082
gD	pattern.txt	line 8083
gE	motion.txt	line 8084
gF	editing.txt	line 8085
gH	visual.txt	line 8086
gI	insert.txt	line 8087
gJ	change.txt	line 8088
gM	motion.txt	line 8089
gN	visual.txt	line 8090
gP	change.txt	line 8091
gQ	intro.txt	line 8092
gR	change.txt	line 8093
gT	tabpage.txt	line 8094
gU	change.txt	line 8095
gUU	change.txt	line 8096
gUgU	change.txt	line 8097
gV	visual.txt	line 8098
g]	tagsrch.txt	line 8099
g^	motion.txt	line 8100
g_	motion.txt	line 8101
g_CTRL-A	various.txt	line 8102
g_CTRL-G	editing.txt	line 8103
g_CTRL-H	visual.txt	line 8104
g_CTRL-]	tagsrch.txt	line 8105
g`	motion.txt	line 8106
g`a	motion.txt	line 8107
ga	various.txt	line 8108
garbagecollect()	builtin.txt	line 8109
gd	pattern.txt	line 8110
gdb	debug.txt	line 8111
gdb-version	terminal.txt	line 8112
gdb.vim	syntax.txt	line 8113
ge	motion.txt	line 8114
gender-neutral	helphelp.txt	line 8115
generic-function-call	vim9.txt	line 8116
generic-function-declaration	vim9.txt	line 8117
generic-function-example	vim9.txt	line 8118
generic-functions	vim9.txt	line 8119
get()	builtin.txt	line 8120
get()-blob	builtin.txt	line 8121
get()-dict	builtin.txt	line 8122
get()-func	builtin.txt	line 8123
get()-list	builtin.txt	line 8124
get()-tuple	builtin.txt	line 8125
get-ms-debuggers	debug.txt	line 8126
getbufinfo()	builtin.txt	line 8127
getbufline()	builtin.txt	line 8128
getbufoneline()	builtin.txt	line 8129
getbufvar()	builtin.txt	line 8130
getcellpixels()	builtin.txt	line 8131
getcellwidths()	builtin.txt	line 8132
getchangelist()	builtin.txt	line 8133
getchar()	builtin.txt	line 8134
getcharmod()	builtin.txt	line 8135
getcharpos()	builtin.txt	line 8136
getcharsearch()	builtin.txt	line 8137
getcharstr()	builtin.txt	line 8138
getcmdcomplpat()	builtin.txt	line 8139
getcmdcompltype()	builtin.txt	line 8140
getcmdline()	builtin.txt	line 8141
getcmdpos()	builtin.txt	line 8142
getcmdprompt()	builtin.txt	line 8143
getcmdscreenpos()	builtin.txt	line 8144
getcmdtype()	builtin.txt	line 8145
getcmdwintype()	builtin.txt	line 8146
getcompletion()	builtin.txt	line 8147
getcompletiontype()	builtin.txt	line 8148
getcurpos()	builtin.txt	line 8149
getcursorcharpos()	builtin.txt	line 8150
getcwd()	builtin.txt	line 8151
getenv()	builtin.txt	line 8152
getfontname()	builtin.txt	line 8153
getfperm()	builtin.txt	line 8154
getfsize()	builtin.txt	line 8155
getftime()	builtin.txt	line 8156
getftype()	builtin.txt	line 8157
getimstatus()	builtin.txt	line 8158
getjumplist()	builtin.txt	line 8159
getlatestvimscripts-install	pi_getscript.txt	line 8160
getline()	builtin.txt	line 8161
getloclist()	builtin.txt	line 8162
getmarklist()	builtin.txt	line 8163
getmatches()	builtin.txt	line 8164
getmousepos()	builtin.txt	line 8165
getmouseshape()	builtin.txt	line 8166
getpid()	builtin.txt	line 8167
getpos()	builtin.txt	line 8168
getqflist()	builtin.txt	line 8169
getqflist-examples	quickfix.txt	line 8170
getreg()	builtin.txt	line 8171
getreginfo()	builtin.txt	line 8172
getregion()	builtin.txt	line 8173
getregion-notes	builtin.txt	line 8174
getregionpos()	builtin.txt	line 8175
getregtype()	builtin.txt	line 8176
getscript	pi_getscript.txt	line 8177
getscript-autoinstall	pi_getscript.txt	line 8178
getscript-data	pi_getscript.txt	line 8179
getscript-history	pi_getscript.txt	line 8180
getscript-plugins	pi_getscript.txt	line 8181
getscript-start	pi_getscript.txt	line 8182
getscriptinfo()	builtin.txt	line 8183
getstacktrace()	builtin.txt	line 8184
gettabinfo()	builtin.txt	line 8185
gettabvar()	builtin.txt	line 8186
gettabwinvar()	builtin.txt	line 8187
gettagstack()	builtin.txt	line 8188
gettext()	builtin.txt	line 8189
getwininfo()	builtin.txt	line 8190
getwinpos()	builtin.txt	line 8191
getwinposx()	builtin.txt	line 8192
getwinposy()	builtin.txt	line 8193
getwinvar()	builtin.txt	line 8194
gex	starting.txt	line 8195
gf	editing.txt	line 8196
gg	motion.txt	line 8197
gh	visual.txt	line 8198
gi	insert.txt	line 8199
git-vimdumps	terminal.txt	line 8200
gj	motion.txt	line 8201
gk	motion.txt	line 8202
glob()	builtin.txt	line 8203
glob2regpat()	builtin.txt	line 8204
global-ime	mbyte.txt	line 8205
global-local	options.txt	line 8206
global-variable	eval.txt	line 8207
global_markfilelist	pi_netrw.txt	line 8208
globpath()	builtin.txt	line 8209
glvs	pi_getscript.txt	line 8210
glvs-alg	pi_getscript.txt	line 8211
glvs-algorithm	pi_getscript.txt	line 8212
glvs-autoinstall	pi_getscript.txt	line 8213
glvs-contents	pi_getscript.txt	line 8214
glvs-copyright	pi_getscript.txt	line 8215
glvs-data	pi_getscript.txt	line 8216
glvs-dist-install	pi_getscript.txt	line 8217
glvs-hist	pi_getscript.txt	line 8218
glvs-install	pi_getscript.txt	line 8219
glvs-options	pi_getscript.txt	line 8220
glvs-plugins	pi_getscript.txt	line 8221
glvs-usage	pi_getscript.txt	line 8222
gm	motion.txt	line 8223
gn	visual.txt	line 8224
gnat#Insert_Tags_Header()	ft_ada.txt	line 8225
gnat#New()	ft_ada.txt	line 8226
gnat-xref	ft_ada.txt	line 8227
gnat_members	ft_ada.txt	line 8228
gnome-session	gui_x11.txt	line 8229
go	motion.txt	line 8230
gp	change.txt	line 8231
gpm-mouse	term.txt	line 8232
gq	change.txt	line 8233
gqap	change.txt	line 8234
gqgq	change.txt	line 8235
gqq	change.txt	line 8236
gr	change.txt	line 8237
graphic-option-gone	version4.txt	line 8238
greek	options.txt	line 8239
grep	quickfix.txt	line 8240
groff.vim	syntax.txt	line 8241
gross-national-happiness	intro.txt	line 8242
group-name	syntax.txt	line 8243
gs	various.txt	line 8244
gsp.vim	syntax.txt	line 8245
gstar	pattern.txt	line 8246
gt	tabpage.txt	line 8247
gtk-css	gui_x11.txt	line 8248
gtk-tooltip-colors	gui_x11.txt	line 8249
gtk3-slow	gui_x11.txt	line 8250
gu	change.txt	line 8251
gugu	change.txt	line 8252
gui	gui.txt	line 8253
gui-IME	gui.txt	line 8254
gui-clipboard	gui_w32.txt	line 8255
gui-colors	syntax.txt	line 8256
gui-extras	gui.txt	line 8257
gui-font	gui.txt	line 8258
gui-fontwide	gui.txt	line 8259
gui-footer	debugger.txt	line 8260
gui-fork	gui_x11.txt	line 8261
gui-functions	usr_41.txt	line 8262
gui-gnome	gui_x11.txt	line 8263
gui-gnome-session	gui_x11.txt	line 8264
gui-gtk	gui_x11.txt	line 8265
gui-gtk-socketid	gui_x11.txt	line 8266
gui-horiz-scroll	gui.txt	line 8267
gui-init	gui.txt	line 8268
gui-kde	gui_x11.txt	line 8269
gui-mouse	gui.txt	line 8270
gui-mouse-focus	gui.txt	line 8271
gui-mouse-mapping	gui.txt	line 8272
gui-mouse-modeless	gui.txt	line 8273
gui-mouse-move	gui.txt	line 8274
gui-mouse-select	gui.txt	line 8275
gui-mouse-status	gui.txt	line 8276
gui-mouse-various	gui.txt	line 8277
gui-pty	gui_x11.txt	line 8278
gui-pty-erase	gui_x11.txt	line 8279
gui-resources	gui_x11.txt	line 8280
gui-scrollbars	gui.txt	line 8281
gui-selections	gui.txt	line 8282
gui-shell	gui.txt	line 8283
gui-shell-win32	gui_w32.txt	line 8284
gui-start	gui.txt	line 8285
gui-toolbar	gui.txt	line 8286
gui-vert-scroll	gui.txt	line 8287
gui-w32	gui_w32.txt	line 8288
gui-w32-cmdargs	gui_w32.txt	line 8289
gui-w32-dialogs	gui_w32.txt	line 8290
gui-w32-fullscreen	gui_w32.txt	line 8291
gui-w32-printing	gui_w32.txt	line 8292
gui-w32-start	gui_w32.txt	line 8293
gui-w32-title-bar	gui_w32.txt	line 8294
gui-w32-various	gui_w32.txt	line 8295
gui-w32-windowid	gui_w32.txt	line 8296
gui-w32s	os_win32.txt	line 8297
gui-wayland	gui_x11.txt	line 8298
gui-win32-maximized	gui_w32.txt	line 8299
gui-x11	gui_x11.txt	line 8300
gui-x11-athena	gui_x11.txt	line 8301
gui-x11-compiling	gui_x11.txt	line 8302
gui-x11-gtk	gui_x11.txt	line 8303
gui-x11-kde	gui_x11.txt	line 8304
gui-x11-misc	gui_x11.txt	line 8305
gui-x11-motif	gui_x11.txt	line 8306
gui-x11-neXtaw	gui_x11.txt	line 8307
gui-x11-printing	gui_x11.txt	line 8308
gui-x11-start	gui_x11.txt	line 8309
gui-x11-various	gui_x11.txt	line 8310
gui.txt	gui.txt	line 8311
gui_running	builtin.txt	line 8312
gui_w32.txt	gui_w32.txt	line 8313
gui_x11.txt	gui_x11.txt	line 8314
guifontwide_gtk	gui.txt	line 8315
guifontwide_win_mbyte	gui.txt	line 8316
guu	change.txt	line 8317
gv	visual.txt	line 8318
gview	starting.txt	line 8319
gvim	starting.txt	line 8320
gvimdiff	diff.txt	line 8321
gvimrc	gui.txt	line 8322
gw	change.txt	line 8323
gwgw	change.txt	line 8324
gww	change.txt	line 8325
gx	eval.txt	line 8326
gzip	pi_gzip.txt	line 8327
gzip-autocmd	pi_gzip.txt	line 8328
gzip-example	autocmd.txt	line 8329
gzip-helpfile	tips.txt	line 8330
g~	change.txt	line 8331
g~g~	change.txt	line 8332
g~~	change.txt	line 8333
h	motion.txt	line 8334
haiku-bugs	os_haiku.txt	line 8335
haiku-colors	os_haiku.txt	line 8336
haiku-compiling	os_haiku.txt	line 8337
haiku-dragndrop	os_haiku.txt	line 8338
haiku-fonts	os_haiku.txt	line 8339
haiku-general	os_haiku.txt	line 8340
haiku-gui	os_haiku.txt	line 8341
haiku-launch	os_haiku.txt	line 8342
haiku-meta	os_haiku.txt	line 8343
haiku-mouse	os_haiku.txt	line 8344
haiku-support-credits	os_haiku.txt	line 8345
haiku-toolbar-images	os_haiku.txt	line 8346
haiku-user-settings-dir	os_haiku.txt	line 8347
haiku-vimdir	os_haiku.txt	line 8348
hangul	hangulin.txt	line 8349
hangulin.txt	hangulin.txt	line 8350
hare	ft_hare.txt	line 8351
hare-folding	ft_hare.txt	line 8352
hare-symbol-operators	ft_hare.txt	line 8353
hare.vim	ft_hare.txt	line 8354
has()	builtin.txt	line 8355
has-patch	builtin.txt	line 8356
has-python	if_pyth.txt	line 8357
has-pythonx	if_pyth.txt	line 8358
has_key()	builtin.txt	line 8359
haskell.vim	syntax.txt	line 8360
haslocaldir()	builtin.txt	line 8361
hasmapto()	builtin.txt	line 8362
hebrew	hebrew.txt	line 8363
hebrew.txt	hebrew.txt	line 8364
help	helphelp.txt	line 8365
help-TOC	helphelp.txt	line 8366
help-buffer-options	helphelp.txt	line 8367
help-context	help.txt	line 8368
help-notation	helphelp.txt	line 8369
help-summary	usr_02.txt	line 8370
help-tags	tags	line 8371
help-toc-install	helphelp.txt	line 8372
help-translated	helphelp.txt	line 8373
help-writing	helphelp.txt	line 8374
help-xterm-window	helphelp.txt	line 8375
help.txt	help.txt	line 8376
helphelp	helphelp.txt	line 8377
helphelp.txt	helphelp.txt	line 8378
hex-editing	tips.txt	line 8379
hex-number	eval.txt	line 8380
hidden-buffer	windows.txt	line 8381
hidden-changed	version5.txt	line 8382
hidden-menus	gui.txt	line 8383
hidden-options	options.txt	line 8384
hidden-quit	windows.txt	line 8385
highlight-args	syntax.txt	line 8386
highlight-changed	version4.txt	line 8387
highlight-clear	syntax.txt	line 8388
highlight-cterm	syntax.txt	line 8389
highlight-ctermbg	syntax.txt	line 8390
highlight-ctermfg	syntax.txt	line 8391
highlight-ctermfont	syntax.txt	line 8392
highlight-ctermul	syntax.txt	line 8393
highlight-default	syntax.txt	line 8394
highlight-font	syntax.txt	line 8395
highlight-groups	syntax.txt	line 8396
highlight-gui	syntax.txt	line 8397
highlight-guibg	syntax.txt	line 8398
highlight-guifg	syntax.txt	line 8399
highlight-guisp	syntax.txt	line 8400
highlight-start	syntax.txt	line 8401
highlight-stop	syntax.txt	line 8402
highlight-term	syntax.txt	line 8403
highlightID()	builtin.txt	line 8404
highlight_exists()	builtin.txt	line 8405
highlighting-functions	usr_41.txt	line 8406
hist-names	builtin.txt	line 8407
histadd()	builtin.txt	line 8408
histdel()	builtin.txt	line 8409
histget()	builtin.txt	line 8410
histnr()	builtin.txt	line 8411
history	cmdline.txt	line 8412
history-functions	usr_41.txt	line 8413
hit-enter	message.txt	line 8414
hit-enter-prompt	message.txt	line 8415
hit-return	message.txt	line 8416
hitest.vim	syntax.txt	line 8417
hjkl	usr_02.txt	line 8418
hl-ColorColumn	syntax.txt	line 8419
hl-ComplMatchIns	syntax.txt	line 8420
hl-Conceal	syntax.txt	line 8421
hl-CurSearch	syntax.txt	line 8422
hl-Cursor	syntax.txt	line 8423
hl-CursorColumn	syntax.txt	line 8424
hl-CursorIM	syntax.txt	line 8425
hl-CursorLine	syntax.txt	line 8426
hl-CursorLineFold	syntax.txt	line 8427
hl-CursorLineNr	syntax.txt	line 8428
hl-CursorLineSign	syntax.txt	line 8429
hl-DiffAdd	syntax.txt	line 8430
hl-DiffChange	syntax.txt	line 8431
hl-DiffDelete	syntax.txt	line 8432
hl-DiffText	syntax.txt	line 8433
hl-DiffTextAdd	syntax.txt	line 8434
hl-Directory	syntax.txt	line 8435
hl-EndOfBuffer	syntax.txt	line 8436
hl-ErrorMsg	syntax.txt	line 8437
hl-FoldColumn	syntax.txt	line 8438
hl-Folded	syntax.txt	line 8439
hl-Ignore	syntax.txt	line 8440
hl-IncSearch	syntax.txt	line 8441
hl-LineNr	syntax.txt	line 8442
hl-LineNrAbove	syntax.txt	line 8443
hl-LineNrBelow	syntax.txt	line 8444
hl-MatchParen	syntax.txt	line 8445
hl-Menu	syntax.txt	line 8446
hl-MessageWindow	syntax.txt	line 8447
hl-ModeMsg	syntax.txt	line 8448
hl-MoreMsg	syntax.txt	line 8449
hl-MsgArea	syntax.txt	line 8450
hl-NonText	syntax.txt	line 8451
hl-Normal	syntax.txt	line 8452
hl-Pmenu	syntax.txt	line 8453
hl-PmenuBorder	syntax.txt	line 8454
hl-PmenuExtra	syntax.txt	line 8455
hl-PmenuExtraSel	syntax.txt	line 8456
hl-PmenuKind	syntax.txt	line 8457
hl-PmenuKindSel	syntax.txt	line 8458
hl-PmenuMatch	syntax.txt	line 8459
hl-PmenuMatchSel	syntax.txt	line 8460
hl-PmenuSbar	syntax.txt	line 8461
hl-PmenuSel	syntax.txt	line 8462
hl-PmenuShadow	syntax.txt	line 8463
hl-PmenuThumb	syntax.txt	line 8464
hl-PopupNotification	syntax.txt	line 8465
hl-PopupSelected	syntax.txt	line 8466
hl-PreInsert	syntax.txt	line 8467
hl-Question	syntax.txt	line 8468
hl-QuickFixLine	syntax.txt	line 8469
hl-Scrollbar	syntax.txt	line 8470
hl-Search	syntax.txt	line 8471
hl-SignColumn	syntax.txt	line 8472
hl-SpecialKey	syntax.txt	line 8473
hl-SpellBad	syntax.txt	line 8474
hl-SpellCap	syntax.txt	line 8475
hl-SpellLocal	syntax.txt	line 8476
hl-SpellRare	syntax.txt	line 8477
hl-StatusLine	syntax.txt	line 8478
hl-StatusLineNC	syntax.txt	line 8479
hl-StatusLineTerm	syntax.txt	line 8480
hl-StatusLineTermNC	syntax.txt	line 8481
hl-TOhtmlProgress	syntax.txt	line 8482
hl-TabLine	syntax.txt	line 8483
hl-TabLineFill	syntax.txt	line 8484
hl-TabLineSel	syntax.txt	line 8485
hl-TabPanel	syntax.txt	line 8486
hl-TabPanelFill	syntax.txt	line 8487
hl-TabPanelSel	syntax.txt	line 8488
hl-Terminal	syntax.txt	line 8489
hl-Title	syntax.txt	line 8490
hl-TitleBar	syntax.txt	line 8491
hl-TitleBarNC	syntax.txt	line 8492
hl-ToolbarButton	gui.txt	line 8493
hl-ToolbarLine	gui.txt	line 8494
hl-Tooltip	syntax.txt	line 8495
hl-User1	syntax.txt	line 8496
hl-User1..9	syntax.txt	line 8497
hl-User9	syntax.txt	line 8498
hl-VertSplit	syntax.txt	line 8499
hl-VertSplitNC	syntax.txt	line 8500
hl-Visual	syntax.txt	line 8501
hl-VisualNOS	syntax.txt	line 8502
hl-WarningMsg	syntax.txt	line 8503
hl-WildMenu	syntax.txt	line 8504
hl-debugBreakpoint	terminal.txt	line 8505
hl-debugPC	terminal.txt	line 8506
hl-lCursor	syntax.txt	line 8507
hlID()	builtin.txt	line 8508
hlexists()	builtin.txt	line 8509
hlget()	builtin.txt	line 8510
hlsearch-variable	eval.txt	line 8511
hlset()	builtin.txt	line 8512
hlyank-install	usr_05.txt	line 8513
holy-grail	index.txt	line 8514
home	intro.txt	line 8515
home-replace	editing.txt	line 8516
hostname()	builtin.txt	line 8517
how-do-i	howto.txt	line 8518
how-to	howto.txt	line 8519
howdoi	howto.txt	line 8520
howto	howto.txt	line 8521
howto.txt	howto.txt	line 8522
hpterm	term.txt	line 8523
hpterm-color	syntax.txt	line 8524
html-flavor	insert.txt	line 8525
html-folding	syntax.txt	line 8526
html-indent	indent.txt	line 8527
html-indenting	indent.txt	line 8528
html.vim	syntax.txt	line 8529
htmlos.vim	syntax.txt	line 8530
http	pi_netrw.txt	line 8531
i	insert.txt	line 8532
i'	motion.txt	line 8533
i(	motion.txt	line 8534
i)	motion.txt	line 8535
i&lt;	motion.txt	line 8536
i&gt;	motion.txt	line 8537
iB	motion.txt	line 8538
iBus	gui.txt	line 8539
iW	motion.txt	line 8540
i[	motion.txt	line 8541
i]	motion.txt	line 8542
i_0_CTRL-D	insert.txt	line 8543
i_&lt;BS&gt;	insert.txt	line 8544
i_&lt;C-End&gt;	insert.txt	line 8545
i_&lt;C-Home&gt;	insert.txt	line 8546
i_&lt;C-Left&gt;	insert.txt	line 8547
i_&lt;C-PageDown&gt;	tabpage.txt	line 8548
i_&lt;C-PageUp&gt;	tabpage.txt	line 8549
i_&lt;C-Right&gt;	insert.txt	line 8550
i_&lt;CR&gt;	insert.txt	line 8551
i_&lt;Del&gt;	insert.txt	line 8552
i_&lt;Down&gt;	insert.txt	line 8553
i_&lt;End&gt;	insert.txt	line 8554
i_&lt;Esc&gt;	insert.txt	line 8555
i_&lt;F1&gt;	helphelp.txt	line 8556
i_&lt;Help&gt;	helphelp.txt	line 8557
i_&lt;Home&gt;	insert.txt	line 8558
i_&lt;Insert&gt;	insert.txt	line 8559
i_&lt;Left&gt;	insert.txt	line 8560
i_&lt;LeftMouse&gt;	insert.txt	line 8561
i_&lt;NL&gt;	insert.txt	line 8562
i_&lt;PageDown&gt;	insert.txt	line 8563
i_&lt;PageUp&gt;	insert.txt	line 8564
i_&lt;Right&gt;	insert.txt	line 8565
i_&lt;S-Down&gt;	insert.txt	line 8566
i_&lt;S-Left&gt;	insert.txt	line 8567
i_&lt;S-Right&gt;	insert.txt	line 8568
i_&lt;S-ScrollWheelDown&gt;	insert.txt	line 8569
i_&lt;S-ScrollWheelLeft&gt;	insert.txt	line 8570
i_&lt;S-ScrollWheelRight&gt;	insert.txt	line 8571
i_&lt;S-ScrollWheelUp&gt;	insert.txt	line 8572
i_&lt;S-Up&gt;	insert.txt	line 8573
i_&lt;ScrollWheelDown&gt;	insert.txt	line 8574
i_&lt;ScrollWheelLeft&gt;	insert.txt	line 8575
i_&lt;ScrollWheelRight&gt;	insert.txt	line 8576
i_&lt;ScrollWheelUp&gt;	insert.txt	line 8577
i_&lt;Tab&gt;	insert.txt	line 8578
i_&lt;Up&gt;	insert.txt	line 8579
i_BS	insert.txt	line 8580
i_CTRL-&lt;PageDown&gt;	tabpage.txt	line 8581
i_CTRL-&lt;PageUp&gt;	tabpage.txt	line 8582
i_CTRL-@	insert.txt	line 8583
i_CTRL-A	insert.txt	line 8584
i_CTRL-B-gone	version5.txt	line 8585
i_CTRL-C	insert.txt	line 8586
i_CTRL-D	insert.txt	line 8587
i_CTRL-E	insert.txt	line 8588
i_CTRL-F	indent.txt	line 8589
i_CTRL-G_&lt;Down&gt;	insert.txt	line 8590
i_CTRL-G_&lt;Up&gt;	insert.txt	line 8591
i_CTRL-G_CTRL-J	insert.txt	line 8592
i_CTRL-G_CTRL-K	insert.txt	line 8593
i_CTRL-G_U	insert.txt	line 8594
i_CTRL-G_j	insert.txt	line 8595
i_CTRL-G_k	insert.txt	line 8596
i_CTRL-G_u	insert.txt	line 8597
i_CTRL-H	insert.txt	line 8598
i_CTRL-I	insert.txt	line 8599
i_CTRL-J	insert.txt	line 8600
i_CTRL-K	insert.txt	line 8601
i_CTRL-L	insert.txt	line 8602
i_CTRL-M	insert.txt	line 8603
i_CTRL-N	insert.txt	line 8604
i_CTRL-O	insert.txt	line 8605
i_CTRL-P	insert.txt	line 8606
i_CTRL-Q	insert.txt	line 8607
i_CTRL-R	insert.txt	line 8608
i_CTRL-R_-	insert.txt	line 8609
i_CTRL-R_=	insert.txt	line 8610
i_CTRL-R_CTRL-O	insert.txt	line 8611
i_CTRL-R_CTRL-P	insert.txt	line 8612
i_CTRL-R_CTRL-R	insert.txt	line 8613
i_CTRL-SHIFT-Q	insert.txt	line 8614
i_CTRL-SHIFT-V	insert.txt	line 8615
i_CTRL-T	insert.txt	line 8616
i_CTRL-U	insert.txt	line 8617
i_CTRL-V	insert.txt	line 8618
i_CTRL-V_digit	insert.txt	line 8619
i_CTRL-W	insert.txt	line 8620
i_CTRL-X	insert.txt	line 8621
i_CTRL-X_CTRL-D	insert.txt	line 8622
i_CTRL-X_CTRL-E	insert.txt	line 8623
i_CTRL-X_CTRL-F	insert.txt	line 8624
i_CTRL-X_CTRL-I	insert.txt	line 8625
i_CTRL-X_CTRL-K	insert.txt	line 8626
i_CTRL-X_CTRL-L	insert.txt	line 8627
i_CTRL-X_CTRL-N	insert.txt	line 8628
i_CTRL-X_CTRL-O	insert.txt	line 8629
i_CTRL-X_CTRL-P	insert.txt	line 8630
i_CTRL-X_CTRL-R	insert.txt	line 8631
i_CTRL-X_CTRL-S	insert.txt	line 8632
i_CTRL-X_CTRL-T	insert.txt	line 8633
i_CTRL-X_CTRL-U	insert.txt	line 8634
i_CTRL-X_CTRL-V	insert.txt	line 8635
i_CTRL-X_CTRL-Y	insert.txt	line 8636
i_CTRL-X_CTRL-Z	insert.txt	line 8637
i_CTRL-X_CTRL-]	insert.txt	line 8638
i_CTRL-X_index	index.txt	line 8639
i_CTRL-X_s	insert.txt	line 8640
i_CTRL-Y	insert.txt	line 8641
i_CTRL-Z	options.txt	line 8642
i_CTRL-[	insert.txt	line 8643
i_CTRL-\_CTRL-G	intro.txt	line 8644
i_CTRL-\_CTRL-N	intro.txt	line 8645
i_CTRL-\_CTRL-O	insert.txt	line 8646
i_CTRL-]	insert.txt	line 8647
i_CTRL-^	insert.txt	line 8648
i_CTRL-_	insert.txt	line 8649
i_DEL	insert.txt	line 8650
i_Tab	insert.txt	line 8651
i_^_CTRL-D	insert.txt	line 8652
i_backspacing	insert.txt	line 8653
i_digraph	digraph.txt	line 8654
i_esc	intro.txt	line 8655
i`	motion.txt	line 8656
ia64.vim	syntax.txt	line 8657
ib	motion.txt	line 8658
iccf	uganda.txt	line 8659
icon-changed	version4.txt	line 8660
iconise	starting.txt	line 8661
iconize	starting.txt	line 8662
iconv()	builtin.txt	line 8663
iconv-dynamic	mbyte.txt	line 8664
id()	builtin.txt	line 8665
ident-search	tips.txt	line 8666
idl-syntax	syntax.txt	line 8667
idl.vim	syntax.txt	line 8668
if_cscop.txt	if_cscop.txt	line 8669
if_lua.txt	if_lua.txt	line 8670
if_mzsch.txt	if_mzsch.txt	line 8671
if_ole.txt	if_ole.txt	line 8672
if_perl.txt	if_perl.txt	line 8673
if_pyth.txt	if_pyth.txt	line 8674
if_ruby.txt	if_ruby.txt	line 8675
if_sniff.txt	if_sniff.txt	line 8676
if_tcl.txt	if_tcl.txt	line 8677
ignore-errors	eval.txt	line 8678
ignore-timestamp	editing.txt	line 8679
implements	vim9class.txt	line 8680
import-autoload	vim9.txt	line 8681
import-legacy	vim9.txt	line 8682
import-map	vim9.txt	line 8683
improved-autocmds-5.4	version5.txt	line 8684
improved-quickfix	version5.txt	line 8685
improved-sessions	version5.txt	line 8686
improved-viminfo	version5.txt	line 8687
improvements-5	version5.txt	line 8688
improvements-6	version6.txt	line 8689
improvements-7	version7.txt	line 8690
improvements-8	version8.txt	line 8691
improvements-9	version9.txt	line 8692
in_bot	channel.txt	line 8693
in_buf	channel.txt	line 8694
in_io-buffer	channel.txt	line 8695
in_mode	channel.txt	line 8696
in_name	channel.txt	line 8697
in_top	channel.txt	line 8698
inactive-buffer	windows.txt	line 8699
include-search	tagsrch.txt	line 8700
inclusion	helphelp.txt	line 8701
inclusive	motion.txt	line 8702
inclusive-motion-selection-exclusive	motion.txt	line 8703
incomp-small-6	version6.txt	line 8704
incompatible-5	version5.txt	line 8705
incompatible-6	version6.txt	line 8706
incompatible-7	version7.txt	line 8707
incompatible-8	version8.txt	line 8708
incompatible-9	version9.txt	line 8709
incompatible-9.2	version9.txt	line 8710
indent()	builtin.txt	line 8711
indent-expression	indent.txt	line 8712
indent.txt	indent.txt	line 8713
indentkeys-format	indent.txt	line 8714
index	index.txt	line 8715
index()	builtin.txt	line 8716
index.txt	index.txt	line 8717
indexof()	builtin.txt	line 8718
info-message	starting.txt	line 8719
inform.vim	syntax.txt	line 8720
informix	ft_sql.txt	line 8721
initialization	starting.txt	line 8722
inline-function	vim9.txt	line 8723
input()	builtin.txt	line 8724
inputdialog()	builtin.txt	line 8725
inputlist()	builtin.txt	line 8726
inputrestore()	builtin.txt	line 8727
inputsave()	builtin.txt	line 8728
inputsecret()	builtin.txt	line 8729
ins-autocompletion	insert.txt	line 8730
ins-autocompletion-example	insert.txt	line 8731
ins-completion	insert.txt	line 8732
ins-completion-menu	insert.txt	line 8733
ins-expandtab	insert.txt	line 8734
ins-reverse	rileft.txt	line 8735
ins-smarttab	insert.txt	line 8736
ins-softtabstop	insert.txt	line 8737
ins-special-keys	insert.txt	line 8738
ins-special-special	insert.txt	line 8739
ins-textwidth	insert.txt	line 8740
insert	insert.txt	line 8741
insert()	builtin.txt	line 8742
insert-index	index.txt	line 8743
insert.txt	insert.txt	line 8744
insert_expand	insert.txt	line 8745
inserting	insert.txt	line 8746
inserting-ex	insert.txt	line 8747
inserting-file	insert.txt	line 8748
insertmode-variable	eval.txt	line 8749
install	usr_90.txt	line 8750
install-home	usr_90.txt	line 8751
install-registry	gui_w32.txt	line 8752
instanceof()	builtin.txt	line 8753
intel-itanium	syntax.txt	line 8754
intellimouse-wheel-problems	gui_w32.txt	line 8755
interactive-functions	usr_41.txt	line 8756
interface	vim9class.txt	line 8757
interfaces-5.2	version5.txt	line 8758
internal-error	message.txt	line 8759
internal-variables	eval.txt	line 8760
internal-wordlist	spell.txt	line 8761
internet	intro.txt	line 8762
interpolated-string	eval.txt	line 8763
interrupt()	builtin.txt	line 8764
intro	intro.txt	line 8765
intro.txt	intro.txt	line 8766
inverse	syntax.txt	line 8767
invert()	builtin.txt	line 8768
ip	motion.txt	line 8769
iquote	motion.txt	line 8770
is	motion.txt	line 8771
isabsolutepath()	builtin.txt	line 8772
isdirectory()	builtin.txt	line 8773
isinf()	builtin.txt	line 8774
islocked()	builtin.txt	line 8775
isnan()	builtin.txt	line 8776
it	motion.txt	line 8777
italic	syntax.txt	line 8778
items()	builtin.txt	line 8779
iw	motion.txt	line 8780
i{	motion.txt	line 8781
i}	motion.txt	line 8782
j	motion.txt	line 8783
java-cinoptions	indent.txt	line 8784
java-indenting	indent.txt	line 8785
java-package-info-url	syntax.txt	line 8786
java.vim	syntax.txt	line 8787
javascript-cinoptions	indent.txt	line 8788
javascript-indenting	indent.txt	line 8789
job	channel.txt	line 8790
job-callback	channel.txt	line 8791
job-channel-overview	channel.txt	line 8792
job-close_cb	channel.txt	line 8793
job-control	channel.txt	line 8794
job-drop	channel.txt	line 8795
job-err_cb	channel.txt	line 8796
job-err_io	channel.txt	line 8797
job-exit_cb	channel.txt	line 8798
job-functions	usr_41.txt	line 8799
job-functions-details	channel.txt	line 8800
job-in_io	channel.txt	line 8801
job-noblock	channel.txt	line 8802
job-options	channel.txt	line 8803
job-out_cb	channel.txt	line 8804
job-out_io	channel.txt	line 8805
job-start	channel.txt	line 8806
job-start-if-needed	channel.txt	line 8807
job-start-nochannel	channel.txt	line 8808
job-stoponexit	channel.txt	line 8809
job-term	channel.txt	line 8810
job-timeout	channel.txt	line 8811
job_getchannel()	channel.txt	line 8812
job_info()	channel.txt	line 8813
job_setoptions()	channel.txt	line 8814
job_start()	channel.txt	line 8815
job_status()	channel.txt	line 8816
job_stop()	channel.txt	line 8817
join()	builtin.txt	line 8818
jq.vim	syntax.txt	line 8819
jq_quote_highlight	syntax.txt	line 8820
js_decode()	builtin.txt	line 8821
js_encode()	builtin.txt	line 8822
jsbterm-mouse	options.txt	line 8823
json.vim	syntax.txt	line 8824
json_decode()	builtin.txt	line 8825
json_encode()	builtin.txt	line 8826
jump-motions	motion.txt	line 8827
jumplist	motion.txt	line 8828
jumplist-stack	motion.txt	line 8829
jumpto-diffs	diff.txt	line 8830
justify	usr_25.txt	line 8831
k	motion.txt	line 8832
kcc	uganda.txt	line 8833
kde	gui_x11.txt	line 8834
key-codes	intro.txt	line 8835
key-codes-changed	version4.txt	line 8836
key-mapping	map.txt	line 8837
key-notation	intro.txt	line 8838
key-variable	eval.txt	line 8839
keycodes	intro.txt	line 8840
keymap-accents	mbyte.txt	line 8841
keymap-file-format	mbyte.txt	line 8842
keymap-hebrew	mbyte.txt	line 8843
keypad-0	intro.txt	line 8844
keypad-9	intro.txt	line 8845
keypad-comma	term.txt	line 8846
keypad-divide	intro.txt	line 8847
keypad-end	intro.txt	line 8848
keypad-enter	intro.txt	line 8849
keypad-home	intro.txt	line 8850
keypad-minus	intro.txt	line 8851
keypad-multiply	intro.txt	line 8852
keypad-page-down	intro.txt	line 8853
keypad-page-up	intro.txt	line 8854
keypad-plus	intro.txt	line 8855
keypad-point	intro.txt	line 8856
keys()	builtin.txt	line 8857
keytrans()	builtin.txt	line 8858
kitty-keyboard-protocol	map.txt	line 8859
kitty-terminal	term.txt	line 8860
known-bugs	todo.txt	line 8861
l	motion.txt	line 8862
l:	eval.txt	line 8863
l:var	eval.txt	line 8864
lCursor	mbyte.txt	line 8865
lace.vim	syntax.txt	line 8866
lambda	eval.txt	line 8867
lang-variable	eval.txt	line 8868
language-mapping	map.txt	line 8869
language-server-protocol	channel.txt	line 8870
last-pattern	pattern.txt	line 8871
last-position-jump	usr_05.txt	line 8872
last_buffer_nr()	builtin.txt	line 8873
latex-syntax	syntax.txt	line 8874
lc_time-variable	eval.txt	line 8875
lcs-conceal	options.txt	line 8876
lcs-eol	options.txt	line 8877
lcs-extends	options.txt	line 8878
lcs-lead	options.txt	line 8879
lcs-leadmultispace	options.txt	line 8880
lcs-leadtab	options.txt	line 8881
lcs-multispace	options.txt	line 8882
lcs-nbsp	options.txt	line 8883
lcs-precedes	options.txt	line 8884
lcs-space	options.txt	line 8885
lcs-tab	options.txt	line 8886
lcs-trail	options.txt	line 8887
left-right-motions	motion.txt	line 8888
legacy-import	vim9.txt	line 8889
len()	builtin.txt	line 8890
less	various.txt	line 8891
letter	print.txt	line 8892
lex.vim	syntax.txt	line 8893
lf.vim	syntax.txt	line 8894
lhaskell.vim	syntax.txt	line 8895
libcall()	builtin.txt	line 8896
libcallnr()	builtin.txt	line 8897
license	uganda.txt	line 8898
lid	quickfix.txt	line 8899
lifelines.vim	syntax.txt	line 8900
limits	vi_diff.txt	line 8901
line()	builtin.txt	line 8902
line-continuation	repeat.txt	line 8903
line-continuation-comment	repeat.txt	line 8904
line2byte()	builtin.txt	line 8905
linefeed	intro.txt	line 8906
linewise	motion.txt	line 8907
linewise-register	change.txt	line 8908
linewise-visual	visual.txt	line 8909
lisp.vim	syntax.txt	line 8910
lispindent()	builtin.txt	line 8911
list	eval.txt	line 8912
list-concatenation	eval.txt	line 8913
list-functions	usr_41.txt	line 8914
list-identity	eval.txt	line 8915
list-index	eval.txt	line 8916
list-modification	eval.txt	line 8917
list-repeat	windows.txt	line 8918
list2blob()	builtin.txt	line 8919
list2str()	builtin.txt	line 8920
list2tuple()	builtin.txt	line 8921
listener_add()	builtin.txt	line 8922
listener_flush()	builtin.txt	line 8923
listener_remove()	builtin.txt	line 8924
lite.vim	syntax.txt	line 8925
literal-Dict	eval.txt	line 8926
literal-string	eval.txt	line 8927
live-grep	cmdline.txt	line 8928
lnum-variable	eval.txt	line 8929
load-plugins	starting.txt	line 8930
load-vim-script	repeat.txt	line 8931
local-additions	help.txt	line 8932
local-function	userfunc.txt	line 8933
local-noglobal	options.txt	line 8934
local-options	options.txt	line 8935
local-variable	eval.txt	line 8936
local-variables	userfunc.txt	line 8937
local_markfilelist	pi_netrw.txt	line 8938
locale	mbyte.txt	line 8939
locale-name	mbyte.txt	line 8940
localtime()	builtin.txt	line 8941
location-list	quickfix.txt	line 8942
location-list-file-window	quickfix.txt	line 8943
location-list-window	quickfix.txt	line 8944
log()	builtin.txt	line 8945
log10()	builtin.txt	line 8946
logiPat	pi_logipat.txt	line 8947
logiPat-arg	pi_logipat.txt	line 8948
logiPat-caveat	pi_logipat.txt	line 8949
logiPat-cmd	pi_logipat.txt	line 8950
logiPat-contents	pi_logipat.txt	line 8951
logiPat-copyright	pi_logipat.txt	line 8952
logiPat-examples	pi_logipat.txt	line 8953
logiPat-history	pi_logipat.txt	line 8954
logiPat-input	pi_logipat.txt	line 8955
logiPat-man	pi_logipat.txt	line 8956
logiPat-manual	pi_logipat.txt	line 8957
logiPat-operators	pi_logipat.txt	line 8958
logiPat-pattern	pi_logipat.txt	line 8959
long-lines	version5.txt	line 8960
love	intro.txt	line 8961
lowercase	change.txt	line 8962
lpc.vim	syntax.txt	line 8963
lua	if_lua.txt	line 8964
lua-blob	if_lua.txt	line 8965
lua-buffer	if_lua.txt	line 8966
lua-commands	if_lua.txt	line 8967
lua-dict	if_lua.txt	line 8968
lua-dynamic	if_lua.txt	line 8969
lua-eval	if_lua.txt	line 8970
lua-funcref	if_lua.txt	line 8971
lua-list	if_lua.txt	line 8972
lua-luaeval	if_lua.txt	line 8973
lua-vim	if_lua.txt	line 8974
lua-vim-variables	if_lua.txt	line 8975
lua-window	if_lua.txt	line 8976
lua.vim	syntax.txt	line 8977
luaeval()	builtin.txt	line 8978
m	motion.txt	line 8979
m'	motion.txt	line 8980
m&lt;	motion.txt	line 8981
m&gt;	motion.txt	line 8982
m[	motion.txt	line 8983
m]	motion.txt	line 8984
m`	motion.txt	line 8985
mac	os_mac.txt	line 8986
mac-bug	os_mac.txt	line 8987
mac-compile	os_mac.txt	line 8988
mac-darwin-feature	os_mac.txt	line 8989
mac-faq	os_mac.txt	line 8990
mac-filename	os_mac.txt	line 8991
mac-lack	os_mac.txt	line 8992
mac-standard-mappings	os_mac.txt	line 8993
mac-vimfile	os_mac.txt	line 8994
macintosh	os_mac.txt	line 8995
macro	map.txt	line 8996
mail-list	intro.txt	line 8997
mail.vim	syntax.txt	line 8998
maillist	intro.txt	line 8999
maillist-archive	intro.txt	line 9000
make.vim	syntax.txt	line 9001
man.vim	filetype.txt	line 9002
manpager.vim	filetype.txt	line 9003
manual-copyright	usr_01.txt	line 9004
map()	builtin.txt	line 9005
map-&lt;SID&gt;	map.txt	line 9006
map-CTRL-C	map.txt	line 9007
map-ambiguous	map.txt	line 9008
map-backslash	map.txt	line 9009
map-backtick	tips.txt	line 9010
map-bar	map.txt	line 9011
map-comments	map.txt	line 9012
map-empty-rhs	map.txt	line 9013
map-error	map.txt	line 9014
map-examples	map.txt	line 9015
map-keys-fails	map.txt	line 9016
map-listing	map.txt	line 9017
map-modes	map.txt	line 9018
map-multibyte	map.txt	line 9019
map-overview	map.txt	line 9020
map-precedence	map.txt	line 9021
map-return	map.txt	line 9022
map-self-destroy	tips.txt	line 9023
map-space_in_lhs	map.txt	line 9024
map-space_in_rhs	map.txt	line 9025
map-table	map.txt	line 9026
map-trailing-white	map.txt	line 9027
map-typing	map.txt	line 9028
map-which-keys	map.txt	line 9029
map.txt	map.txt	line 9030
map_CTRL-C	map.txt	line 9031
map_backslash	map.txt	line 9032
map_bar	map.txt	line 9033
map_empty_rhs	map.txt	line 9034
map_return	map.txt	line 9035
map_space_in_lhs	map.txt	line 9036
map_space_in_rhs	map.txt	line 9037
maparg()	builtin.txt	line 9038
mapcheck()	builtin.txt	line 9039
maple.vim	syntax.txt	line 9040
mapleader	map.txt	line 9041
maplist()	builtin.txt	line 9042
maplocalleader	map.txt	line 9043
mapmode-c	map.txt	line 9044
mapmode-i	map.txt	line 9045
mapmode-ic	map.txt	line 9046
mapmode-l	map.txt	line 9047
mapmode-n	map.txt	line 9048
mapmode-nvo	map.txt	line 9049
mapmode-o	map.txt	line 9050
mapmode-s	map.txt	line 9051
mapmode-t	map.txt	line 9052
mapmode-v	map.txt	line 9053
mapmode-x	map.txt	line 9054
mapnew()	builtin.txt	line 9055
mapping	map.txt	line 9056
mapping-dict	builtin.txt	line 9057
mapping-functions	usr_41.txt	line 9058
mapset()	builtin.txt	line 9059
mark	motion.txt	line 9060
mark-functions	usr_41.txt	line 9061
mark-motions	motion.txt	line 9062
markfilelist	pi_netrw.txt	line 9063
masm.vim	syntax.txt	line 9064
match()	builtin.txt	line 9065
match-highlight	pattern.txt	line 9066
match-parens	tips.txt	line 9067
match-pattern	builtin.txt	line 9068
matchadd()	builtin.txt	line 9069
matchaddpos()	builtin.txt	line 9070
matcharg()	builtin.txt	line 9071
matchbufline()	builtin.txt	line 9072
matchdelete()	builtin.txt	line 9073
matchend()	builtin.txt	line 9074
matchfuzzy()	builtin.txt	line 9075
matchfuzzypos()	builtin.txt	line 9076
matchit-install	usr_05.txt	line 9077
matchlist()	builtin.txt	line 9078
matchparen	pi_paren.txt	line 9079
matchstr()	builtin.txt	line 9080
matchstrlist()	builtin.txt	line 9081
matchstrpos()	builtin.txt	line 9082
matlab-indent	indent.txt	line 9083
matlab-indenting	indent.txt	line 9084
max()	builtin.txt	line 9085
maxcol-variable	eval.txt	line 9086
mbsync.vim	syntax.txt	line 9087
mbyte-IME	mbyte.txt	line 9088
mbyte-XIM	mbyte.txt	line 9089
mbyte-combining	mbyte.txt	line 9090
mbyte-composing	mbyte.txt	line 9091
mbyte-conversion	mbyte.txt	line 9092
mbyte-encoding	mbyte.txt	line 9093
mbyte-first	mbyte.txt	line 9094
mbyte-fonts-MSwin	mbyte.txt	line 9095
mbyte-fonts-X11	mbyte.txt	line 9096
mbyte-func	mbyte.txt	line 9097
mbyte-keymap	mbyte.txt	line 9098
mbyte-locale	mbyte.txt	line 9099
mbyte-options	mbyte.txt	line 9100
mbyte-terminal	mbyte.txt	line 9101
mbyte-utf8	mbyte.txt	line 9102
mbyte.txt	mbyte.txt	line 9103
menu-changes-5.4	version5.txt	line 9104
menu-examples	gui.txt	line 9105
menu-lazyload	gui.txt	line 9106
menu-priority	gui.txt	line 9107
menu-separator	gui.txt	line 9108
menu-shortcut	gui.txt	line 9109
menu-text	gui.txt	line 9110
menu-tips	gui.txt	line 9111
menu.vim	gui.txt	line 9112
menu_info()	builtin.txt	line 9113
menus	gui.txt	line 9114
merge	diff.txt	line 9115
message-history	message.txt	line 9116
message.txt	message.txt	line 9117
messages	message.txt	line 9118
meta	intro.txt	line 9119
method	eval.txt	line 9120
mf.vim	ft_mp.txt	line 9121
min()	builtin.txt	line 9122
missing-options	vi_diff.txt	line 9123
mkdir()	builtin.txt	line 9124
mlang.txt	mlang.txt	line 9125
mma.vim	syntax.txt	line 9126
mode()	builtin.txt	line 9127
mode-Ex	intro.txt	line 9128
mode-cmdline	cmdline.txt	line 9129
mode-ins-repl	insert.txt	line 9130
mode-replace	insert.txt	line 9131
mode-switching	intro.txt	line 9132
modeless-and-clipboard	version6.txt	line 9133
modeless-selection	gui.txt	line 9134
modeline	options.txt	line 9135
modeline-local	options.txt	line 9136
modeline-version	options.txt	line 9137
modifyOtherKeys	map.txt	line 9138
modula2.vim	syntax.txt	line 9139
modula2_iso_allow_lowline	syntax.txt	line 9140
modula2_iso_disallow_octals	syntax.txt	line 9141
modula2_iso_disallow_synonyms	syntax.txt	line 9142
modula2_pim_allow_lowline	syntax.txt	line 9143
modula2_pim_disallow_octals	syntax.txt	line 9144
modula2_pim_disallow_synonyms	syntax.txt	line 9145
modula2_r10_allow_lowline	syntax.txt	line 9146
moo.vim	syntax.txt	line 9147
more-compatible	version5.txt	line 9148
more-prompt	message.txt	line 9149
more-variables	eval.txt	line 9150
motif-intellimouse	gui.txt	line 9151
motion-count-multiplied	motion.txt	line 9152
motion.txt	motion.txt	line 9153
mouse-mode-table	term.txt	line 9154
mouse-overview	term.txt	line 9155
mouse-reporting	term.txt	line 9156
mouse-scrolling-off	scroll.txt	line 9157
mouse-swap-buttons	term.txt	line 9158
mouse-using	term.txt	line 9159
mouse_col-variable	eval.txt	line 9160
mouse_lnum-variable	eval.txt	line 9161
mouse_win-variable	eval.txt	line 9162
mouse_winid-variable	eval.txt	line 9163
movement	intro.txt	line 9164
mp.vim	ft_mp.txt	line 9165
ms-dos	os_msdos.txt	line 9166
msdos	os_msdos.txt	line 9167
msql.vim	syntax.txt	line 9168
mswin.vim	gui_w32.txt	line 9169
multi-byte	mbyte.txt	line 9170
multi-lang	mlang.txt	line 9171
multi-repeat	repeat.txt	line 9172
multibyte	mbyte.txt	line 9173
multibyte-ime	mbyte.txt	line 9174
multibyte-ime-compatibility	mbyte.txt	line 9175
multibyte-input	mbyte.txt	line 9176
multilang	mlang.txt	line 9177
multilang-menus	mlang.txt	line 9178
multilang-messages	mlang.txt	line 9179
multilang-scripts	mlang.txt	line 9180
multiple-constructors	vim9class.txt	line 9181
myfiletypefile	syntax.txt	line 9182
myscriptsfile	syntax.txt	line 9183
mysql	ft_sql.txt	line 9184
mysyntaxfile	syntax.txt	line 9185
mysyntaxfile-add	syntax.txt	line 9186
mysyntaxfile-replace	syntax.txt	line 9187
mzeval()	builtin.txt	line 9188
mzscheme	if_mzsch.txt	line 9189
mzscheme-buffer	if_mzsch.txt	line 9190
mzscheme-commands	if_mzsch.txt	line 9191
mzscheme-dynamic	if_mzsch.txt	line 9192
mzscheme-examples	if_mzsch.txt	line 9193
mzscheme-funcref	if_mzsch.txt	line 9194
mzscheme-mzeval	if_mzsch.txt	line 9195
mzscheme-sandbox	if_mzsch.txt	line 9196
mzscheme-setup	if_mzsch.txt	line 9197
mzscheme-threads	if_mzsch.txt	line 9198
mzscheme-vim	if_mzsch.txt	line 9199
mzscheme-vimext	if_mzsch.txt	line 9200
mzscheme-window	if_mzsch.txt	line 9201
n	pattern.txt	line 9202
n1ql.vim	syntax.txt	line 9203
nasm.vim	syntax.txt	line 9204
navigation	motion.txt	line 9205
nb-commands	netbeans.txt	line 9206
nb-events	netbeans.txt	line 9207
nb-functions	netbeans.txt	line 9208
nb-messages	netbeans.txt	line 9209
nb-protocol_errors	netbeans.txt	line 9210
nb-special	netbeans.txt	line 9211
nb-terms	netbeans.txt	line 9212
ncf.vim	syntax.txt	line 9213
neomutt.vim	syntax.txt	line 9214
netbeans	netbeans.txt	line 9215
netbeans-commands	netbeans.txt	line 9216
netbeans-configure	netbeans.txt	line 9217
netbeans-debugging	netbeans.txt	line 9218
netbeans-download	netbeans.txt	line 9219
netbeans-integration	netbeans.txt	line 9220
netbeans-intro	netbeans.txt	line 9221
netbeans-keybindings	netbeans.txt	line 9222
netbeans-messages	netbeans.txt	line 9223
netbeans-parameters	netbeans.txt	line 9224
netbeans-preparation	netbeans.txt	line 9225
netbeans-problems	netbeans.txt	line 9226
netbeans-protocol	netbeans.txt	line 9227
netbeans-run	netbeans.txt	line 9228
netbeans-setup	netbeans.txt	line 9229
netbeans-support	netbeans.txt	line 9230
netbeans-xpm	netbeans.txt	line 9231
netbeans.txt	netbeans.txt	line 9232
netreadfixup	pi_netrw.txt	line 9233
netrw	pi_netrw.txt	line 9234
netrw-&#37;	pi_netrw.txt	line 9235
netrw--	pi_netrw.txt	line 9236
netrw-:Explore	pi_netrw.txt	line 9237
netrw-:Hexplore	pi_netrw.txt	line 9238
netrw-:Lexplore	pi_netrw.txt	line 9239
netrw-:MF	pi_netrw.txt	line 9240
netrw-:MT	pi_netrw.txt	line 9241
netrw-:NetrwC	pi_netrw.txt	line 9242
netrw-:NetrwMB	pi_netrw.txt	line 9243
netrw-:Rexplore	pi_netrw.txt	line 9244
netrw-:Sexplore	pi_netrw.txt	line 9245
netrw-:Texplore	pi_netrw.txt	line 9246
netrw-:Vexplore	pi_netrw.txt	line 9247
netrw-C	pi_netrw.txt	line 9248
netrw-D	pi_netrw.txt	line 9249
netrw-I	pi_netrw.txt	line 9250
netrw-O	pi_netrw.txt	line 9251
netrw-P	pi_netrw.txt	line 9252
netrw-P17	pi_netrw.txt	line 9253
netrw-P18	pi_netrw.txt	line 9254
netrw-P19	pi_netrw.txt	line 9255
netrw-P20	pi_netrw.txt	line 9256
netrw-P21	pi_netrw.txt	line 9257
netrw-R	pi_netrw.txt	line 9258
netrw-S	pi_netrw.txt	line 9259
netrw-Tb	pi_netrw.txt	line 9260
netrw-Th	pi_netrw.txt	line 9261
netrw-U	pi_netrw.txt	line 9262
netrw-X	pi_netrw.txt	line 9263
netrw-a	pi_netrw.txt	line 9264
netrw-activate	pi_netrw.txt	line 9265
netrw-bookmark	pi_netrw.txt	line 9266
netrw-bookmarks	pi_netrw.txt	line 9267
netrw-browse	pi_netrw.txt	line 9268
netrw-browse-cmds	pi_netrw.txt	line 9269
netrw-browse-maps	pi_netrw.txt	line 9270
netrw-browser	pi_netrw.txt	line 9271
netrw-browser-options	pi_netrw.txt	line 9272
netrw-browser-settings	pi_netrw.txt	line 9273
netrw-browser-var	pi_netrw.txt	line 9274
netrw-browsing	pi_netrw.txt	line 9275
netrw-c-tab	pi_netrw.txt	line 9276
netrw-cB	pi_netrw.txt	line 9277
netrw-cadaver	pi_netrw.txt	line 9278
netrw-call	pi_netrw.txt	line 9279
netrw-cb	pi_netrw.txt	line 9280
netrw-cd	pi_netrw.txt	line 9281
netrw-chgup	pi_netrw.txt	line 9282
netrw-contents	pi_netrw.txt	line 9283
netrw-copyright	pi_netrw.txt	line 9284
netrw-cr	pi_netrw.txt	line 9285
netrw-createfile	pi_netrw.txt	line 9286
netrw-credits	pi_netrw.txt	line 9287
netrw-ctrl-h	pi_netrw.txt	line 9288
netrw-ctrl-l	pi_netrw.txt	line 9289
netrw-ctrl-r	pi_netrw.txt	line 9290
netrw-ctrl_l	pi_netrw.txt	line 9291
netrw-curdir	pi_netrw.txt	line 9292
netrw-d	pi_netrw.txt	line 9293
netrw-del	pi_netrw.txt	line 9294
netrw-delete	pi_netrw.txt	line 9295
netrw-dir	pi_netrw.txt	line 9296
netrw-dirlist	pi_netrw.txt	line 9297
netrw-downdir	pi_netrw.txt	line 9298
netrw-edithide	pi_netrw.txt	line 9299
netrw-editwindow	pi_netrw.txt	line 9300
netrw-enter	pi_netrw.txt	line 9301
netrw-ex	pi_netrw.txt	line 9302
netrw-explore	pi_netrw.txt	line 9303
netrw-explore-cmds	pi_netrw.txt	line 9304
netrw-expose	pi_netrw.txt	line 9305
netrw-externapp	pi_netrw.txt	line 9306
netrw-file	pi_netrw.txt	line 9307
netrw-filigree	pi_netrw.txt	line 9308
netrw-fixup	pi_netrw.txt	line 9309
netrw-ftp	pi_netrw.txt	line 9310
netrw-ftype	pi_netrw.txt	line 9311
netrw-gb	pi_netrw.txt	line 9312
netrw-gd	pi_netrw.txt	line 9313
netrw-getftype	pi_netrw.txt	line 9314
netrw-gf	pi_netrw.txt	line 9315
netrw-gh	pi_netrw.txt	line 9316
netrw-gitignore	pi_netrw.txt	line 9317
netrw-gn	pi_netrw.txt	line 9318
netrw-gp	pi_netrw.txt	line 9319
netrw-grep	pi_netrw.txt	line 9320
netrw-help	pi_netrw.txt	line 9321
netrw-hexplore	pi_netrw.txt	line 9322
netrw-hide	pi_netrw.txt	line 9323
netrw-hiding	pi_netrw.txt	line 9324
netrw-horiz	pi_netrw.txt	line 9325
netrw-i	pi_netrw.txt	line 9326
netrw-incompatible	pi_netrw.txt	line 9327
netrw-internal-variables	pi_netrw.txt	line 9328
netrw-intro-browse	pi_netrw.txt	line 9329
netrw-leftmouse	pi_netrw.txt	line 9330
netrw-lexplore	pi_netrw.txt	line 9331
netrw-list	pi_netrw.txt	line 9332
netrw-listbookmark	pi_netrw.txt	line 9333
netrw-listhack	pi_netrw.txt	line 9334
netrw-login	pi_netrw.txt	line 9335
netrw-mA	pi_netrw.txt	line 9336
netrw-mB	pi_netrw.txt	line 9337
netrw-mF	pi_netrw.txt	line 9338
netrw-mT	pi_netrw.txt	line 9339
netrw-mX	pi_netrw.txt	line 9340
netrw-ma	pi_netrw.txt	line 9341
netrw-mb	pi_netrw.txt	line 9342
netrw-mc	pi_netrw.txt	line 9343
netrw-md	pi_netrw.txt	line 9344
netrw-me	pi_netrw.txt	line 9345
netrw-mf	pi_netrw.txt	line 9346
netrw-mg	pi_netrw.txt	line 9347
netrw-mh	pi_netrw.txt	line 9348
netrw-middlemouse	pi_netrw.txt	line 9349
netrw-ml_get	pi_netrw.txt	line 9350
netrw-mm	pi_netrw.txt	line 9351
netrw-modify	pi_netrw.txt	line 9352
netrw-mouse	pi_netrw.txt	line 9353
netrw-move	pi_netrw.txt	line 9354
netrw-mr	pi_netrw.txt	line 9355
netrw-ms	pi_netrw.txt	line 9356
netrw-mt	pi_netrw.txt	line 9357
netrw-mu	pi_netrw.txt	line 9358
netrw-mv	pi_netrw.txt	line 9359
netrw-mx	pi_netrw.txt	line 9360
netrw-mz	pi_netrw.txt	line 9361
netrw-netrc	pi_netrw.txt	line 9362
netrw-newfile	pi_netrw.txt	line 9363
netrw-nexplore	pi_netrw.txt	line 9364
netrw-noload	pi_netrw.txt	line 9365
netrw-nread	pi_netrw.txt	line 9366
netrw-ntree	pi_netrw.txt	line 9367
netrw-nwrite	pi_netrw.txt	line 9368
netrw-o	pi_netrw.txt	line 9369
netrw-obtain	pi_netrw.txt	line 9370
netrw-options	pi_netrw.txt	line 9371
netrw-p	pi_netrw.txt	line 9372
netrw-p1	pi_netrw.txt	line 9373
netrw-p10	pi_netrw.txt	line 9374
netrw-p11	pi_netrw.txt	line 9375
netrw-p12	pi_netrw.txt	line 9376
netrw-p13	pi_netrw.txt	line 9377
netrw-p14	pi_netrw.txt	line 9378
netrw-p15	pi_netrw.txt	line 9379
netrw-p16	pi_netrw.txt	line 9380
netrw-p2	pi_netrw.txt	line 9381
netrw-p3	pi_netrw.txt	line 9382
netrw-p4	pi_netrw.txt	line 9383
netrw-p5	pi_netrw.txt	line 9384
netrw-p6	pi_netrw.txt	line 9385
netrw-p7	pi_netrw.txt	line 9386
netrw-p8	pi_netrw.txt	line 9387
netrw-p9	pi_netrw.txt	line 9388
netrw-passwd	pi_netrw.txt	line 9389
netrw-password	pi_netrw.txt	line 9390
netrw-path	pi_netrw.txt	line 9391
netrw-pexplore	pi_netrw.txt	line 9392
netrw-preview	pi_netrw.txt	line 9393
netrw-problems	pi_netrw.txt	line 9394
netrw-protocol	pi_netrw.txt	line 9395
netrw-prvwin	pi_netrw.txt	line 9396
netrw-pscp	pi_netrw.txt	line 9397
netrw-psftp	pi_netrw.txt	line 9398
netrw-putty	pi_netrw.txt	line 9399
netrw-qF	pi_netrw.txt	line 9400
netrw-qL	pi_netrw.txt	line 9401
netrw-qb	pi_netrw.txt	line 9402
netrw-qf	pi_netrw.txt	line 9403
netrw-quickcom	pi_netrw.txt	line 9404
netrw-quickcoms	pi_netrw.txt	line 9405
netrw-quickhelp	pi_netrw.txt	line 9406
netrw-quickmap	pi_netrw.txt	line 9407
netrw-quickmaps	pi_netrw.txt	line 9408
netrw-r	pi_netrw.txt	line 9409
netrw-read	pi_netrw.txt	line 9410
netrw-ref	pi_netrw.txt	line 9411
netrw-refresh	pi_netrw.txt	line 9412
netrw-rename	pi_netrw.txt	line 9413
netrw-reverse	pi_netrw.txt	line 9414
netrw-rexplore	pi_netrw.txt	line 9415
netrw-rightmouse	pi_netrw.txt	line 9416
netrw-s	pi_netrw.txt	line 9417
netrw-s-cr	pi_netrw.txt	line 9418
netrw-settings	pi_netrw.txt	line 9419
netrw-sexplore	pi_netrw.txt	line 9420
netrw-sort	pi_netrw.txt	line 9421
netrw-sort-sequence	pi_netrw.txt	line 9422
netrw-sortsequence	pi_netrw.txt	line 9423
netrw-source	pi_netrw.txt	line 9424
netrw-ssh-hack	pi_netrw.txt	line 9425
netrw-star	pi_netrw.txt	line 9426
netrw-starpat	pi_netrw.txt	line 9427
netrw-starstar	pi_netrw.txt	line 9428
netrw-starstarpat	pi_netrw.txt	line 9429
netrw-start	pi_netrw.txt	line 9430
netrw-t	pi_netrw.txt	line 9431
netrw-texplore	pi_netrw.txt	line 9432
netrw-trailingslash	pi_netrw.txt	line 9433
netrw-transparent	pi_netrw.txt	line 9434
netrw-u	pi_netrw.txt	line 9435
netrw-updir	pi_netrw.txt	line 9436
netrw-urls	pi_netrw.txt	line 9437
netrw-usermaps	pi_netrw.txt	line 9438
netrw-userpass	pi_netrw.txt	line 9439
netrw-v	pi_netrw.txt	line 9440
netrw-var	pi_netrw.txt	line 9441
netrw-variables	pi_netrw.txt	line 9442
netrw-vexplore	pi_netrw.txt	line 9443
netrw-windows-netrc	pi_netrw.txt	line 9444
netrw-windows-s	pi_netrw.txt	line 9445
netrw-write	pi_netrw.txt	line 9446
netrw-xfer	pi_netrw.txt	line 9447
netrw.txt	pi_netrw.txt	line 9448
netrw.vim	pi_netrw.txt	line 9449
netterm-mouse	options.txt	line 9450
network	pi_netrw.txt	line 9451
new()	vim9class.txt	line 9452
new-5	version5.txt	line 9453
new-6	version6.txt	line 9454
new-7	version7.txt	line 9455
new-8	version8.txt	line 9456
new-9	version9.txt	line 9457
new-GTK-GUI	version5.txt	line 9458
new-MzScheme	version7.txt	line 9459
new-Select-mode	version5.txt	line 9460
new-View	version6.txt	line 9461
new-argument-list	version6.txt	line 9462
new-buftype	version6.txt	line 9463
new-cmdwin	version6.txt	line 9464
new-color-schemes	version6.txt	line 9465
new-colorschemes-9	version9.txt	line 9466
new-commands	version5.txt	line 9467
new-commands-5.4	version5.txt	line 9468
new-conceal	version7.txt	line 9469
new-debug-itf	version6.txt	line 9470
new-debug-mode	version6.txt	line 9471
new-debug-support	version7.txt	line 9472
new-define-operator	version7.txt	line 9473
new-diff-mode	version6.txt	line 9474
new-encryption	version5.txt	line 9475
new-evim	version6.txt	line 9476
new-ex-commands-5.2	version5.txt	line 9477
new-features	develop.txt	line 9478
new-file-browser	version6.txt	line 9479
new-file-writing	version6.txt	line 9480
new-filetype	filetype.txt	line 9481
new-filetype-5.4	version5.txt	line 9482
new-filetype-plugins	version6.txt	line 9483
new-filetype-scripts	filetype.txt	line 9484
new-folding	version6.txt	line 9485
new-functions-5.2	version5.txt	line 9486
new-global-values	version6.txt	line 9487
new-highlighting	version5.txt	line 9488
new-indent-flex	version6.txt	line 9489
new-items-6	version6.txt	line 9490
new-items-7	version7.txt	line 9491
new-items-8	version8.txt	line 9492
new-items-9	version9.txt	line 9493
new-line-continuation	version5.txt	line 9494
new-location-list	version7.txt	line 9495
new-lua	version7.txt	line 9496
new-manpage-trans	version7.txt	line 9497
new-map-expression	version7.txt	line 9498
new-map-select	version7.txt	line 9499
new-more-encryption	version7.txt	line 9500
new-more-highlighting	version7.txt	line 9501
new-more-unicode	version7.txt	line 9502
new-multi-byte	version5.txt	line 9503
new-multi-lang	version6.txt	line 9504
new-multibyte	version5.txt	line 9505
new-netrw-explore	version7.txt	line 9506
new-network-files	version6.txt	line 9507
new-omni-completion	version7.txt	line 9508
new-onemore	version7.txt	line 9509
new-operator-mod	version6.txt	line 9510
new-options-5.2	version5.txt	line 9511
new-options-5.4	version5.txt	line 9512
new-other-8.2	version8.txt	line 9513
new-other-9.1	version9.txt	line 9514
new-other-9.2	version9.txt	line 9515
new-perl-python	version5.txt	line 9516
new-persistent-undo	version7.txt	line 9517
new-plugins	version6.txt	line 9518
new-popup-compl	version9.txt	line 9519
new-popup-window	version8.txt	line 9520
new-posix	version7.txt	line 9521
new-print-multibyte	version7.txt	line 9522
new-printing	version6.txt	line 9523
new-python3	version7.txt	line 9524
new-regexp-engine	version7.txt	line 9525
new-runtime-dir	version5.txt	line 9526
new-script	version5.txt	line 9527
new-script-5.4	version5.txt	line 9528
new-scroll-back	version7.txt	line 9529
new-search-path	version6.txt	line 9530
new-searchpat	version6.txt	line 9531
new-session-files	version5.txt	line 9532
new-spell	version7.txt	line 9533
new-style-testing	testing.txt	line 9534
new-tab-pages	version7.txt	line 9535
new-terminal-window	version8.txt	line 9536
new-text-properties	version8.txt	line 9537
new-undo-branches	version7.txt	line 9538
new-unlisted-buffers	version6.txt	line 9539
new-user-defined	version5.txt	line 9540
new-user-manual	version6.txt	line 9541
new-utf-8	version6.txt	line 9542
new-vertsplit	version6.txt	line 9543
new-vim-script	version7.txt	line 9544
new-vim-script-8	version8.txt	line 9545
new-vim-script-9	version9.txt	line 9546
new-vim-server	version6.txt	line 9547
new-vimgrep	version7.txt	line 9548
new-vimscript-8.2	version8.txt	line 9549
new-virtedit	version6.txt	line 9550
news	intro.txt	line 9551
nextnonblank()	builtin.txt	line 9552
ngettext()	builtin.txt	line 9553
no-eval-feature	eval.txt	line 9554
no-type-checking	eval.txt	line 9555
no_buffers_menu	gui.txt	line 9556
no_mail_maps	filetype.txt	line 9557
no_plugin_maps	filetype.txt	line 9558
nocombine	syntax.txt	line 9559
nohlsearch-auto	pattern.txt	line 9560
nohlsearch-install	usr_05.txt	line 9561
non-greedy	pattern.txt	line 9562
non-zero-arg	eval.txt	line 9563
none-function_argument	userfunc.txt	line 9564
none-variable	eval.txt	line 9565
normal-index	index.txt	line 9566
not-compatible	usr_01.txt	line 9567
not-edited	editing.txt	line 9568
notation	intro.txt	line 9569
notepad	gui_w32.txt	line 9570
nr2char()	builtin.txt	line 9571
nroff.vim	syntax.txt	line 9572
null	vim9.txt	line 9573
null-anomalies	vim9.txt	line 9574
null-compare	vim9.txt	line 9575
null-details	vim9.txt	line 9576
null-variable	eval.txt	line 9577
null-variables	vim9.txt	line 9578
null_blob	vim9.txt	line 9579
null_channel	vim9.txt	line 9580
null_class	vim9.txt	line 9581
null_dict	vim9.txt	line 9582
null_function	vim9.txt	line 9583
null_job	vim9.txt	line 9584
null_list	vim9.txt	line 9585
null_object	vim9.txt	line 9586
null_partial	vim9.txt	line 9587
null_string	vim9.txt	line 9588
number_relativenumber	options.txt	line 9589
numbered-function	eval.txt	line 9590
numbermax-variable	eval.txt	line 9591
numbermin-variable	eval.txt	line 9592
numbersize-variable	eval.txt	line 9593
o	insert.txt	line 9594
o_CTRL-V	motion.txt	line 9595
o_V	motion.txt	line 9596
o_object-select	motion.txt	line 9597
o_v	motion.txt	line 9598
obj-var-type-any	vim9class.txt	line 9599
object	vim9class.txt	line 9600
object-const-variable	vim9class.txt	line 9601
object-empty()	vim9class.txt	line 9602
object-final-variable	vim9class.txt	line 9603
object-len()	vim9class.txt	line 9604
object-motions	motion.txt	line 9605
object-select	motion.txt	line 9606
object-string()	vim9class.txt	line 9607
objects	index.txt	line 9608
obtaining-exted	netbeans.txt	line 9609
ocaml.vim	syntax.txt	line 9610
octal	eval.txt	line 9611
octal-nrformats	options.txt	line 9612
octal-number	eval.txt	line 9613
old-style-testing	testing.txt	line 9614
oldfiles-variable	eval.txt	line 9615
ole-activation	if_ole.txt	line 9616
ole-eval	if_ole.txt	line 9617
ole-gethwnd	if_ole.txt	line 9618
ole-interface	if_ole.txt	line 9619
ole-methods	if_ole.txt	line 9620
ole-normal	if_ole.txt	line 9621
ole-registration	if_ole.txt	line 9622
ole-sendkeys	if_ole.txt	line 9623
ole-setforeground	if_ole.txt	line 9624
omap-info	map.txt	line 9625
omni-sql-completion	ft_sql.txt	line 9626
online-help	helphelp.txt	line 9627
opening-window	windows.txt	line 9628
operator	motion.txt	line 9629
operator-doubled	motion.txt	line 9630
operator-pending-index	index.txt	line 9631
operator-resulting-pos	motion.txt	line 9632
operator-variable	eval.txt	line 9633
option-backslash	options.txt	line 9634
option-list	quickref.txt	line 9635
option-summary	options.txt	line 9636
option-value-function	options.txt	line 9637
option-window	options.txt	line 9638
option_restore()	todo.txt	line 9639
option_save()	todo.txt	line 9640
optional-function-argument	userfunc.txt	line 9641
options	options.txt	line 9642
options-changed	version5.txt	line 9643
options-in-terminal	terminal.txt	line 9644
options.txt	options.txt	line 9645
optwin	options.txt	line 9646
or()	builtin.txt	line 9647
oracle	ft_sql.txt	line 9648
os-support	vi_diff.txt	line 9649
os2	os_os2.txt	line 9650
os390	os_390.txt	line 9651
os_390.txt	os_390.txt	line 9652
os_amiga.txt	os_amiga.txt	line 9653
os_beos.txt	os_beos.txt	line 9654
os_dos.txt	os_dos.txt	line 9655
os_haiku.txt	os_haiku.txt	line 9656
os_mac.txt	os_mac.txt	line 9657
os_mint.txt	os_mint.txt	line 9658
os_msdos.txt	os_msdos.txt	line 9659
os_os2.txt	os_os2.txt	line 9660
os_qnx.txt	os_qnx.txt	line 9661
os_risc.txt	os_risc.txt	line 9662
os_unix.txt	os_unix.txt	line 9663
os_vms.txt	os_vms.txt	line 9664
os_win32.txt	os_win32.txt	line 9665
osc52-install	usr_05.txt	line 9666
other-features	vi_diff.txt	line 9667
out_buf	channel.txt	line 9668
out_cb	channel.txt	line 9669
out_io-buffer	channel.txt	line 9670
out_mode	channel.txt	line 9671
out_modifiable	channel.txt	line 9672
out_msg	channel.txt	line 9673
out_name	channel.txt	line 9674
out_timeout	channel.txt	line 9675
p	change.txt	line 9676
pack-add	repeat.txt	line 9677
package-cfilter	quickfix.txt	line 9678
package-comment	usr_05.txt	line 9679
package-create	repeat.txt	line 9680
package-doc	repeat.txt	line 9681
package-documentation	repeat.txt	line 9682
package-editorconfig	usr_05.txt	line 9683
package-helpcurwin	tips.txt	line 9684
package-helptoc	helphelp.txt	line 9685
package-hlyank	usr_05.txt	line 9686
package-justify	usr_25.txt	line 9687
package-matchit	usr_05.txt	line 9688
package-nohlsearch	usr_05.txt	line 9689
package-open	eval.txt	line 9690
package-osc52	usr_05.txt	line 9691
package-termdebug	terminal.txt	line 9692
package-translate_example	repeat.txt	line 9693
package-translation	repeat.txt	line 9694
packages	repeat.txt	line 9695
packload-two-steps	repeat.txt	line 9696
page-down	intro.txt	line 9697
page-up	intro.txt	line 9698
page_down	intro.txt	line 9699
page_up	intro.txt	line 9700
pager	message.txt	line 9701
papp.vim	syntax.txt	line 9702
paragraph	motion.txt	line 9703
partial	builtin.txt	line 9704
pascal.vim	syntax.txt	line 9705
patches-8	version8.txt	line 9706
patches-8.1	version8.txt	line 9707
patches-8.2	version8.txt	line 9708
patches-9	version9.txt	line 9709
patches-9.1	version9.txt	line 9710
patches-9.2	version9.txt	line 9711
patches-9.3	version9.txt	line 9712
patches-after-8.2	version9.txt	line 9713
patches-after-9.0	version9.txt	line 9714
patches-after-9.1	version9.txt	line 9715
patches-after-9.2	version9.txt	line 9716
pathshorten()	builtin.txt	line 9717
pattern	pattern.txt	line 9718
pattern-atoms	pattern.txt	line 9719
pattern-delimiter	change.txt	line 9720
pattern-multi-byte	pattern.txt	line 9721
pattern-multi-items	pattern.txt	line 9722
pattern-multibyte	pattern.txt	line 9723
pattern-overview	pattern.txt	line 9724
pattern-searches	pattern.txt	line 9725
pattern.txt	pattern.txt	line 9726
patterns-composing	pattern.txt	line 9727
pdev-option	print.txt	line 9728
peace	intro.txt	line 9729
penc-option	print.txt	line 9730
perl	if_perl.txt	line 9731
perl-Append	if_perl.txt	line 9732
perl-Blob	if_perl.txt	line 9733
perl-Buffer	if_perl.txt	line 9734
perl-Buffers	if_perl.txt	line 9735
perl-Count	if_perl.txt	line 9736
perl-Delete	if_perl.txt	line 9737
perl-DoCommand	if_perl.txt	line 9738
perl-Eval	if_perl.txt	line 9739
perl-Get	if_perl.txt	line 9740
perl-GetCursor	if_perl.txt	line 9741
perl-Msg	if_perl.txt	line 9742
perl-Name	if_perl.txt	line 9743
perl-Number	if_perl.txt	line 9744
perl-Set	if_perl.txt	line 9745
perl-SetHeight	if_perl.txt	line 9746
perl-SetOption	if_perl.txt	line 9747
perl-Windows	if_perl.txt	line 9748
perl-compiling	if_perl.txt	line 9749
perl-dynamic	if_perl.txt	line 9750
perl-editing	if_perl.txt	line 9751
perl-overview	if_perl.txt	line 9752
perl-patterns	pattern.txt	line 9753
perl-using	if_perl.txt	line 9754
perl.vim	syntax.txt	line 9755
perleval()	builtin.txt	line 9756
persistent-undo	undo.txt	line 9757
pexpr-option	print.txt	line 9758
pfn-option	print.txt	line 9759
pheader-option	print.txt	line 9760
photon-fonts	os_qnx.txt	line 9761
photon-gui	os_qnx.txt	line 9762
php-comment	indent.txt	line 9763
php-indent	indent.txt	line 9764
php-indenting	indent.txt	line 9765
php.vim	syntax.txt	line 9766
php3.vim	syntax.txt	line 9767
phtml.vim	syntax.txt	line 9768
pi_getscript.txt	pi_getscript.txt	line 9769
pi_gzip.txt	pi_gzip.txt	line 9770
pi_logipat.txt	pi_logipat.txt	line 9771
pi_netrw.txt	pi_netrw.txt	line 9772
pi_paren.txt	pi_paren.txt	line 9773
pi_spec.txt	pi_spec.txt	line 9774
pi_tar.txt	pi_tar.txt	line 9775
pi_tutor.txt	pi_tutor.txt	line 9776
pi_vimball.txt	pi_vimball.txt	line 9777
pi_zip.txt	pi_zip.txt	line 9778
pkzip	options.txt	line 9779
plaintex.vim	syntax.txt	line 9780
plsql	ft_sql.txt	line 9781
plugin	usr_05.txt	line 9782
plugin-details	filetype.txt	line 9783
plugin-filetype	usr_51.txt	line 9784
plugin-special	usr_51.txt	line 9785
plugin_exec	filetype.txt	line 9786
plugin_name.txt	helphelp.txt	line 9787
pmbcs-option	print.txt	line 9788
pmbfn-option	print.txt	line 9789
popt-option	print.txt	line 9790
popup	popup.txt	line 9791
popup-buffer	popup.txt	line 9792
popup-callback	popup.txt	line 9793
popup-close	popup.txt	line 9794
popup-examples	popup.txt	line 9795
popup-filter	popup.txt	line 9796
popup-filter-errors	popup.txt	line 9797
popup-filter-mode	popup.txt	line 9798
popup-function-details	popup.txt	line 9799
popup-functions	popup.txt	line 9800
popup-intro	popup.txt	line 9801
popup-mapping	popup.txt	line 9802
popup-mask	popup.txt	line 9803
popup-menu	gui.txt	line 9804
popup-menu-added	version5.txt	line 9805
popup-opacity	popup.txt	line 9806
popup-position	popup.txt	line 9807
popup-props	popup.txt	line 9808
popup-scrollbar	popup.txt	line 9809
popup-terminal	popup.txt	line 9810
popup-textprop-pos	popup.txt	line 9811
popup-usage	popup.txt	line 9812
popup-window	popup.txt	line 9813
popup-window-functions	usr_41.txt	line 9814
popup.txt	popup.txt	line 9815
popup_atcursor()	popup.txt	line 9816
popup_beval()	popup.txt	line 9817
popup_beval_example	popup.txt	line 9818
popup_clear()	popup.txt	line 9819
popup_close()	popup.txt	line 9820
popup_create()	popup.txt	line 9821
popup_create-arguments	popup.txt	line 9822
popup_dialog()	popup.txt	line 9823
popup_dialog-example	popup.txt	line 9824
popup_filter_menu()	popup.txt	line 9825
popup_filter_yesno()	popup.txt	line 9826
popup_findecho()	popup.txt	line 9827
popup_findinfo()	popup.txt	line 9828
popup_findpreview()	popup.txt	line 9829
popup_getoptions()	popup.txt	line 9830
popup_getpos()	popup.txt	line 9831
popup_hide()	popup.txt	line 9832
popup_list()	popup.txt	line 9833
popup_locate()	popup.txt	line 9834
popup_menu()	popup.txt	line 9835
popup_menu-shortcut-example	popup.txt	line 9836
popup_move()	popup.txt	line 9837
popup_notification()	popup.txt	line 9838
popup_setbuf()	popup.txt	line 9839
popup_setoptions()	popup.txt	line 9840
popup_settext()	popup.txt	line 9841
popup_show()	popup.txt	line 9842
popupmenu-completion	insert.txt	line 9843
popupmenu-keys	insert.txt	line 9844
popupwin	popup.txt	line 9845
ports-5.2	version5.txt	line 9846
ports-6	version6.txt	line 9847
posix	vi_diff.txt	line 9848
posix-compliance	vi_diff.txt	line 9849
posix-screen-size	vi_diff.txt	line 9850
postgresql	ft_sql.txt	line 9851
postscr.vim	syntax.txt	line 9852
postscript-cjk-printing	print.txt	line 9853
postscript-print-encoding	print.txt	line 9854
postscript-print-trouble	print.txt	line 9855
postscript-print-util	print.txt	line 9856
postscript-printing	print.txt	line 9857
pow()	builtin.txt	line 9858
ppwiz.vim	syntax.txt	line 9859
preinserted()	builtin.txt	line 9860
press-enter	message.txt	line 9861
press-return	message.txt	line 9862
prevcount-variable	eval.txt	line 9863
preview-popup	windows.txt	line 9864
preview-window	windows.txt	line 9865
prevnonblank()	builtin.txt	line 9866
print-intro	print.txt	line 9867
print-options	print.txt	line 9868
print.txt	print.txt	line 9869
printf()	builtin.txt	line 9870
printf-$	builtin.txt	line 9871
printf-&#37;	builtin.txt	line 9872
printf-B	builtin.txt	line 9873
printf-E	builtin.txt	line 9874
printf-G	builtin.txt	line 9875
printf-S	builtin.txt	line 9876
printf-X	builtin.txt	line 9877
printf-b	builtin.txt	line 9878
printf-c	builtin.txt	line 9879
printf-d	builtin.txt	line 9880
printf-e	builtin.txt	line 9881
printf-f	builtin.txt	line 9882
printf-g	builtin.txt	line 9883
printf-o	builtin.txt	line 9884
printf-s	builtin.txt	line 9885
printf-x	builtin.txt	line 9886
printing	print.txt	line 9887
printing-formfeed	print.txt	line 9888
profile	repeat.txt	line 9889
profiling	repeat.txt	line 9890
profiling-variable	eval.txt	line 9891
progname-variable	eval.txt	line 9892
progpath-variable	eval.txt	line 9893
progress.vim	syntax.txt	line 9894
prompt-buffer	channel.txt	line 9895
prompt_getprompt()	builtin.txt	line 9896
prompt_setcallback()	builtin.txt	line 9897
prompt_setinterrupt()	builtin.txt	line 9898
prompt_setprompt()	builtin.txt	line 9899
promptbuffer-functions	usr_41.txt	line 9900
pronounce	intro.txt	line 9901
prop_add()	textprop.txt	line 9902
prop_add_list()	textprop.txt	line 9903
prop_clear()	textprop.txt	line 9904
prop_find()	textprop.txt	line 9905
prop_list()	textprop.txt	line 9906
prop_remove()	textprop.txt	line 9907
prop_type_add()	textprop.txt	line 9908
prop_type_change()	textprop.txt	line 9909
prop_type_delete()	textprop.txt	line 9910
prop_type_get()	textprop.txt	line 9911
prop_type_list()	textprop.txt	line 9912
protected-method	vim9class.txt	line 9913
protected-variable	vim9class.txt	line 9914
ps1-about	ft_ps1.txt	line 9915
ps1-compiler	ft_ps1.txt	line 9916
ps1-folding	ft_ps1.txt	line 9917
ps1-keyword	ft_ps1.txt	line 9918
ps1-syntax	ft_ps1.txt	line 9919
psql	ft_sql.txt	line 9920
ptcap.vim	syntax.txt	line 9921
pterm-mouse	options.txt	line 9922
public-variable	vim9class.txt	line 9923
pum_getpos()	builtin.txt	line 9924
pumvisible()	builtin.txt	line 9925
put	change.txt	line 9926
put-Visual-mode	change.txt	line 9927
py3eval()	builtin.txt	line 9928
pyeval()	builtin.txt	line 9929
python	if_pyth.txt	line 9930
python-.locked	if_pyth.txt	line 9931
python-2-and-3	if_pyth.txt	line 9932
python-Dictionary	if_pyth.txt	line 9933
python-Function	if_pyth.txt	line 9934
python-List	if_pyth.txt	line 9935
python-Tuple	if_pyth.txt	line 9936
python-VIM_SPECIAL_PATH	if_pyth.txt	line 9937
python-_get_paths	if_pyth.txt	line 9938
python-bindeval	if_pyth.txt	line 9939
python-bindeval-objects	if_pyth.txt	line 9940
python-buffer	if_pyth.txt	line 9941
python-buffers	if_pyth.txt	line 9942
python-building	if_pyth.txt	line 9943
python-chdir	if_pyth.txt	line 9944
python-command	if_pyth.txt	line 9945
python-commands	if_pyth.txt	line 9946
python-current	if_pyth.txt	line 9947
python-dynamic	if_pyth.txt	line 9948
python-environment	if_pyth.txt	line 9949
python-error	if_pyth.txt	line 9950
python-eval	if_pyth.txt	line 9951
python-examples	if_pyth.txt	line 9952
python-fchdir	if_pyth.txt	line 9953
python-find_module	if_pyth.txt	line 9954
python-find_spec	if_pyth.txt	line 9955
python-foreach_rtp	if_pyth.txt	line 9956
python-input	if_pyth.txt	line 9957
python-options	if_pyth.txt	line 9958
python-output	if_pyth.txt	line 9959
python-path_hook	if_pyth.txt	line 9960
python-pyeval	if_pyth.txt	line 9961
python-range	if_pyth.txt	line 9962
python-special-path	if_pyth.txt	line 9963
python-stable	if_pyth.txt	line 9964
python-stable-abi	if_pyth.txt	line 9965
python-strwidth	if_pyth.txt	line 9966
python-tabpage	if_pyth.txt	line 9967
python-tabpages	if_pyth.txt	line 9968
python-vars	if_pyth.txt	line 9969
python-vim	if_pyth.txt	line 9970
python-vvars	if_pyth.txt	line 9971
python-window	if_pyth.txt	line 9972
python-windows	if_pyth.txt	line 9973
python.vim	syntax.txt	line 9974
python2-directory	if_pyth.txt	line 9975
python3	if_pyth.txt	line 9976
python3-directory	if_pyth.txt	line 9977
python3-stable-abi	if_pyth.txt	line 9978
python3-version-variable	eval.txt	line 9979
python_x	if_pyth.txt	line 9980
python_x-special-comments	if_pyth.txt	line 9981
pythonx	if_pyth.txt	line 9982
pythonx-directory	if_pyth.txt	line 9983
pyxeval()	builtin.txt	line 9984
q	repeat.txt	line 9985
q-args-example	map.txt	line 9986
q/	cmdline.txt	line 9987
q:	cmdline.txt	line 9988
q?	cmdline.txt	line 9989
qf.vim	filetype.txt	line 9990
qnx	os_qnx.txt	line 9991
qnx-compiling	os_qnx.txt	line 9992
qnx-general	os_qnx.txt	line 9993
qnx-terminal	os_qnx.txt	line 9994
quake.vim	syntax.txt	line 9995
quickfix	quickfix.txt	line 9996
quickfix-6	version6.txt	line 9997
quickfix-ID	quickfix.txt	line 9998
quickfix-biome	quickfix.txt	line 9999
quickfix-buffer	quickfix.txt	line 10000
quickfix-changedtick	quickfix.txt	line 10001
quickfix-context	quickfix.txt	line 10002
quickfix-cppcheck	quickfix.txt	line 10003
quickfix-directory-stack	quickfix.txt	line 10004
quickfix-error-lists	quickfix.txt	line 10005
quickfix-functions	usr_41.txt	line 10006
quickfix-gcc	quickfix.txt	line 10007
quickfix-groff	quickfix.txt	line 10008
quickfix-index	quickfix.txt	line 10009
quickfix-manx	quickfix.txt	line 10010
quickfix-pandoc	quickfix.txt	line 10011
quickfix-parse	quickfix.txt	line 10012
quickfix-perl	quickfix.txt	line 10013
quickfix-size	quickfix.txt	line 10014
quickfix-stack	quickfix.txt	line 10015
quickfix-title	quickfix.txt	line 10016
quickfix-toml	quickfix.txt	line 10017
quickfix-valid	quickfix.txt	line 10018
quickfix-window	quickfix.txt	line 10019
quickfix-window-ID	quickfix.txt	line 10020
quickfix-window-function	quickfix.txt	line 10021
quickfix.txt	quickfix.txt	line 10022
quickref	quickref.txt	line 10023
quickref.txt	quickref.txt	line 10024
quote	change.txt	line 10025
quote#	change.txt	line 10026
quote&#37;	change.txt	line 10027
quote+	gui_x11.txt	line 10028
quote-	change.txt	line 10029
quote.	change.txt	line 10030
quote/	change.txt	line 10031
quote0	change.txt	line 10032
quote1	change.txt	line 10033
quote2	change.txt	line 10034
quote3	change.txt	line 10035
quote4	change.txt	line 10036
quote9	change.txt	line 10037
quote:	change.txt	line 10038
quote=	change.txt	line 10039
quote_	change.txt	line 10040
quote_#	change.txt	line 10041
quote_&#37;	change.txt	line 10042
quote_-	change.txt	line 10043
quote_.	change.txt	line 10044
quote_/	change.txt	line 10045
quote_:	change.txt	line 10046
quote_=	change.txt	line 10047
quote_alpha	change.txt	line 10048
quote_number	change.txt	line 10049
quote_quote	change.txt	line 10050
quote_~	change.txt	line 10051
quotea	change.txt	line 10052
quotecommandquote	intro.txt	line 10053
quoteplus	gui_x11.txt	line 10054
quotequote	change.txt	line 10055
quotes	quotes.txt	line 10056
quotes.txt	quotes.txt	line 10057
quotestar	gui.txt	line 10058
quote~	change.txt	line 10059
r	change.txt	line 10060
r.vim	syntax.txt	line 10061
raku-unicode	ft_raku.txt	line 10062
rand()	builtin.txt	line 10063
random	builtin.txt	line 10064
range()	builtin.txt	line 10065
rasi.vim	syntax.txt	line 10066
raw-terminal-mode	term.txt	line 10067
rcp	pi_netrw.txt	line 10068
read-in-close-cb	channel.txt	line 10069
read-messages	insert.txt	line 10070
read-only-share	editing.txt	line 10071
read-only-variable	vim9class.txt	line 10072
read-stdin	version5.txt	line 10073
readblob()	builtin.txt	line 10074
readdir()	builtin.txt	line 10075
readdirex()	builtin.txt	line 10076
readfile()	builtin.txt	line 10077
readline.vim	syntax.txt	line 10078
recording	repeat.txt	line 10079
recover.txt	recover.txt	line 10080
recovery	recover.txt	line 10081
recursive_mapping	map.txt	line 10082
redo	undo.txt	line 10083
redo-register	undo.txt	line 10084
redraw_listener_add()	builtin.txt	line 10085
redraw_listener_remove()	builtin.txt	line 10086
reduce()	builtin.txt	line 10087
ref	intro.txt	line 10088
reference	intro.txt	line 10089
reference_toc	help.txt	line 10090
reg_executing()	builtin.txt	line 10091
reg_recording()	builtin.txt	line 10092
regexp	pattern.txt	line 10093
regexp-changes-5.4	version5.txt	line 10094
register-faq	sponsor.txt	line 10095
register-functions	usr_41.txt	line 10096
register-variable	eval.txt	line 10097
registers	change.txt	line 10098
rego.vim	syntax.txt	line 10099
regular-expression	pattern.txt	line 10100
reload	editing.txt	line 10101
reltime()	builtin.txt	line 10102
reltimefloat()	builtin.txt	line 10103
reltimestr()	builtin.txt	line 10104
remote.txt	remote.txt	line 10105
remote_expr()	builtin.txt	line 10106
remote_foreground()	builtin.txt	line 10107
remote_peek()	builtin.txt	line 10108
remote_read()	builtin.txt	line 10109
remote_send()	builtin.txt	line 10110
remote_startserver()	builtin.txt	line 10111
remove()	builtin.txt	line 10112
remove-filetype	filetype.txt	line 10113
remove-option-flags	options.txt	line 10114
rename()	builtin.txt	line 10115
rename-files	tips.txt	line 10116
repeat()	builtin.txt	line 10117
repeat.txt	repeat.txt	line 10118
repeating	repeat.txt	line 10119
replacing	change.txt	line 10120
replacing-ex	insert.txt	line 10121
reselect-Visual	visual.txt	line 10122
resolve()	builtin.txt	line 10123
restore-cursor	usr_05.txt	line 10124
restore-position	tips.txt	line 10125
restricted-mode	starting.txt	line 10126
retab-example	change.txt	line 10127
rethrow	eval.txt	line 10128
reverse()	builtin.txt	line 10129
rexx.vim	syntax.txt	line 10130
rgb.txt	gui_w32.txt	line 10131
rgview	starting.txt	line 10132
rgvim	starting.txt	line 10133
right-justify	change.txt	line 10134
rileft	rileft.txt	line 10135
rileft.txt	rileft.txt	line 10136
riscos	os_risc.txt	line 10137
rmd.vim	syntax.txt	line 10138
rot13	change.txt	line 10139
round()	builtin.txt	line 10140
rrst.vim	syntax.txt	line 10141
rst.vim	syntax.txt	line 10142
rsync	pi_netrw.txt	line 10143
ruby	if_ruby.txt	line 10144
ruby-blob	if_ruby.txt	line 10145
ruby-buffer	if_ruby.txt	line 10146
ruby-command	if_ruby.txt	line 10147
ruby-commands	if_ruby.txt	line 10148
ruby-dynamic	if_ruby.txt	line 10149
ruby-evaluate	if_ruby.txt	line 10150
ruby-globals	if_ruby.txt	line 10151
ruby-message	if_ruby.txt	line 10152
ruby-rubyeval	if_ruby.txt	line 10153
ruby-set_option	if_ruby.txt	line 10154
ruby-vim	if_ruby.txt	line 10155
ruby-window	if_ruby.txt	line 10156
ruby.vim	syntax.txt	line 10157
ruby_fold	syntax.txt	line 10158
ruby_foldable_groups	syntax.txt	line 10159
ruby_minlines	syntax.txt	line 10160
ruby_no_expensive	syntax.txt	line 10161
ruby_operators	syntax.txt	line 10162
ruby_space_errors	syntax.txt	line 10163
ruby_spellcheck_strings	syntax.txt	line 10164
rubyeval()	builtin.txt	line 10165
russian	russian.txt	line 10166
russian-intro	russian.txt	line 10167
russian-issues	russian.txt	line 10168
russian-keymap	russian.txt	line 10169
russian-l18n	russian.txt	line 10170
russian.txt	russian.txt	line 10171
rust	ft_rust.txt	line 10172
rust-auto-pairs	ft_rust.txt	line 10173
rust-commands	ft_rust.txt	line 10174
rust-intro	ft_rust.txt	line 10175
rust-mappings	ft_rust.txt	line 10176
rust-settings	ft_rust.txt	line 10177
rust-syntastic	ft_rust.txt	line 10178
rview	starting.txt	line 10179
rvim	starting.txt	line 10180
rxvt	syntax.txt	line 10181
s	change.txt	line 10182
s/\&amp;	change.txt	line 10183
s/\0	change.txt	line 10184
s/\1	change.txt	line 10185
s/\2	change.txt	line 10186
s/\3	change.txt	line 10187
s/\9	change.txt	line 10188
s/\&lt;CR&gt;	change.txt	line 10189
s/\=	change.txt	line 10190
s/\E	change.txt	line 10191
s/\L	change.txt	line 10192
s/\U	change.txt	line 10193
s/\\	change.txt	line 10194
s/\b	change.txt	line 10195
s/\e	change.txt	line 10196
s/\l	change.txt	line 10197
s/\n	change.txt	line 10198
s/\r	change.txt	line 10199
s/\t	change.txt	line 10200
s/\u	change.txt	line 10201
s/\~	change.txt	line 10202
s:netrw_passwd	pi_netrw.txt	line 10203
s:var	eval.txt	line 10204
s&lt;CR&gt;	change.txt	line 10205
sandbox	eval.txt	line 10206
sandbox-option	eval.txt	line 10207
save-file	editing.txt	line 10208
save-settings	starting.txt	line 10209
scheme.vim	syntax.txt	line 10210
scp	pi_netrw.txt	line 10211
scratch-buffer	windows.txt	line 10212
screenattr()	builtin.txt	line 10213
screenchar()	builtin.txt	line 10214
screenchars()	builtin.txt	line 10215
screencol()	builtin.txt	line 10216
screenpos()	builtin.txt	line 10217
screenrow()	builtin.txt	line 10218
screenstring()	builtin.txt	line 10219
script	usr_41.txt	line 10220
script-here	if_perl.txt	line 10221
script-local	map.txt	line 10222
script-variable	eval.txt	line 10223
scriptnames-dictionary	eval.txt	line 10224
scriptout-changed	version4.txt	line 10225
scriptversion	eval.txt	line 10226
scriptversion-1	eval.txt	line 10227
scriptversion-2	eval.txt	line 10228
scriptversion-3	eval.txt	line 10229
scriptversion-4	eval.txt	line 10230
scroll-binding	scroll.txt	line 10231
scroll-cursor	scroll.txt	line 10232
scroll-down	scroll.txt	line 10233
scroll-horizontal	scroll.txt	line 10234
scroll-insert	tips.txt	line 10235
scroll-mouse-wheel	scroll.txt	line 10236
scroll-region	term.txt	line 10237
scroll-smooth	tips.txt	line 10238
scroll-up	scroll.txt	line 10239
scroll.txt	scroll.txt	line 10240
scrollbind-quickadj	scroll.txt	line 10241
scrollbind-relative	scroll.txt	line 10242
scrolling	scroll.txt	line 10243
scrollstart-variable	eval.txt	line 10244
sdl.vim	syntax.txt	line 10245
search()	builtin.txt	line 10246
search()-sub-match	builtin.txt	line 10247
search-commands	pattern.txt	line 10248
search-offset	pattern.txt	line 10249
search-options	pattern.txt	line 10250
search-pattern	pattern.txt	line 10251
search-range	pattern.txt	line 10252
search-replace	change.txt	line 10253
searchcount()	builtin.txt	line 10254
searchdecl()	builtin.txt	line 10255
searchforward-variable	eval.txt	line 10256
searchpair()	builtin.txt	line 10257
searchpairpos()	builtin.txt	line 10258
searchpos()	builtin.txt	line 10259
section	motion.txt	line 10260
sed.vim	syntax.txt	line 10261
self	eval.txt	line 10262
send-money	sponsor.txt	line 10263
send-to-menu	gui_w32.txt	line 10264
sendto	gui_w32.txt	line 10265
sentence	motion.txt	line 10266
server-functions	usr_41.txt	line 10267
server2client()	builtin.txt	line 10268
serverlist()	builtin.txt	line 10269
servername-variable	eval.txt	line 10270
session-file	starting.txt	line 10271
set-option	options.txt	line 10272
set-spc-auto	spell.txt	line 10273
setbufline()	builtin.txt	line 10274
setbufvar()	builtin.txt	line 10275
setcellwidths()	builtin.txt	line 10276
setcharpos()	builtin.txt	line 10277
setcharsearch()	builtin.txt	line 10278
setcmdline()	builtin.txt	line 10279
setcmdpos()	builtin.txt	line 10280
setcursorcharpos()	builtin.txt	line 10281
setenv()	builtin.txt	line 10282
setfperm()	builtin.txt	line 10283
setline()	builtin.txt	line 10284
setloclist()	builtin.txt	line 10285
setmatches()	builtin.txt	line 10286
setpos()	builtin.txt	line 10287
setqflist()	builtin.txt	line 10288
setqflist-action	builtin.txt	line 10289
setqflist-examples	quickfix.txt	line 10290
setqflist-what	builtin.txt	line 10291
setreg()	builtin.txt	line 10292
settabvar()	builtin.txt	line 10293
settabwinvar()	builtin.txt	line 10294
settagstack()	builtin.txt	line 10295
setting-guifont	gui.txt	line 10296
setting-guitablabel	tabpage.txt	line 10297
setting-tabline	tabpage.txt	line 10298
setting-tabpanel	tabpage.txt	line 10299
setuid	change.txt	line 10300
setwinvar()	builtin.txt	line 10301
sftp	pi_netrw.txt	line 10302
sgml.vim	syntax.txt	line 10303
sgr-mouse	options.txt	line 10304
sh-awk	syntax.txt	line 10305
sh-embed	syntax.txt	line 10306
sh.vim	syntax.txt	line 10307
sha256()	builtin.txt	line 10308
shell-window	tips.txt	line 10309
shell_error-variable	eval.txt	line 10310
shellescape()	builtin.txt	line 10311
shift	intro.txt	line 10312
shift-left-right	change.txt	line 10313
shiftwidth()	builtin.txt	line 10314
shm-A	options.txt	line 10315
shm-C	options.txt	line 10316
shm-F	options.txt	line 10317
shm-I	options.txt	line 10318
shm-O	options.txt	line 10319
shm-S	options.txt	line 10320
shm-T	options.txt	line 10321
shm-W	options.txt	line 10322
shm-a	options.txt	line 10323
shm-c	options.txt	line 10324
shm-f	options.txt	line 10325
shm-i	options.txt	line 10326
shm-l	options.txt	line 10327
shm-m	options.txt	line 10328
shm-n	options.txt	line 10329
shm-o	options.txt	line 10330
shm-q	options.txt	line 10331
shm-r	options.txt	line 10332
shm-s	options.txt	line 10333
shm-t	options.txt	line 10334
shm-u	options.txt	line 10335
shm-w	options.txt	line 10336
shm-x	options.txt	line 10337
short-name-changed	version4.txt	line 10338
showing-menus	gui.txt	line 10339
sign-column	sign.txt	line 10340
sign-commands	sign.txt	line 10341
sign-functions	usr_41.txt	line 10342
sign-functions-details	sign.txt	line 10343
sign-group	sign.txt	line 10344
sign-identifier	sign.txt	line 10345
sign-intro	sign.txt	line 10346
sign-priority	sign.txt	line 10347
sign-support	sign.txt	line 10348
sign.txt	sign.txt	line 10349
sign_define()	sign.txt	line 10350
sign_getdefined()	sign.txt	line 10351
sign_getplaced()	sign.txt	line 10352
sign_jump()	sign.txt	line 10353
sign_place()	sign.txt	line 10354
sign_placelist()	sign.txt	line 10355
sign_undefine()	sign.txt	line 10356
sign_unplace()	sign.txt	line 10357
sign_unplacelist()	sign.txt	line 10358
signs	sign.txt	line 10359
simple-change	change.txt	line 10360
simplify()	builtin.txt	line 10361
simulated-command	vi_diff.txt	line 10362
sin()	builtin.txt	line 10363
single-repeat	repeat.txt	line 10364
sinh()	builtin.txt	line 10365
sizeofint-variable	eval.txt	line 10366
sizeoflong-variable	eval.txt	line 10367
sizeofpointer-variable	eval.txt	line 10368
skeleton	autocmd.txt	line 10369
skip_defaults_vim	starting.txt	line 10370
slice	eval.txt	line 10371
slice()	builtin.txt	line 10372
slow-fast-terminal	term.txt	line 10373
slow-start	starting.txt	line 10374
slow-terminal	term.txt	line 10375
socket-interface	channel.txt	line 10376
socketserver-clientserver	remote.txt	line 10377
socketserver-differences	remote.txt	line 10378
socketserver-name	remote.txt	line 10379
socketserver-x11	remote.txt	line 10380
sort()	builtin.txt	line 10381
sorting	change.txt	line 10382
sound-functions	usr_41.txt	line 10383
sound_clear()	builtin.txt	line 10384
sound_playevent()	builtin.txt	line 10385
sound_playfile()	builtin.txt	line 10386
sound_stop()	builtin.txt	line 10387
soundfold()	builtin.txt	line 10388
source-vim9-script	usr_52.txt	line 10389
space	intro.txt	line 10390
spec-customizing	pi_spec.txt	line 10391
spec-how-to-use-it	pi_spec.txt	line 10392
spec-setting-a-map	pi_spec.txt	line 10393
spec_chglog_format	pi_spec.txt	line 10394
spec_chglog_prepend	pi_spec.txt	line 10395
spec_chglog_release_info	pi_spec.txt	line 10396
special-buffers	windows.txt	line 10397
specifies	vim9class.txt	line 10398
speed-up	tips.txt	line 10399
spell	spell.txt	line 10400
spell-ACCENT	spell.txt	line 10401
spell-AUTHOR	spell.txt	line 10402
spell-BAD	spell.txt	line 10403
spell-BREAK	spell.txt	line 10404
spell-CHECKCOMPOUNDCASE	spell.txt	line 10405
spell-CHECKCOMPOUNDDUP	spell.txt	line 10406
spell-CHECKCOMPOUNDPATTERN	spell.txt	line 10407
spell-CHECKCOMPOUNDREP	spell.txt	line 10408
spell-CHECKCOMPOUNDTRIPLE	spell.txt	line 10409
spell-CHECKSHARPS	spell.txt	line 10410
spell-CIRCUMFIX	spell.txt	line 10411
spell-COMMON	spell.txt	line 10412
spell-COMPLEXPREFIXES	spell.txt	line 10413
spell-COMPOUND	spell.txt	line 10414
spell-COMPOUNDBEGIN	spell.txt	line 10415
spell-COMPOUNDEND	spell.txt	line 10416
spell-COMPOUNDFIRST	spell.txt	line 10417
spell-COMPOUNDFLAG	spell.txt	line 10418
spell-COMPOUNDFORBIDFLAG	spell.txt	line 10419
spell-COMPOUNDLAST	spell.txt	line 10420
spell-COMPOUNDMIDDLE	spell.txt	line 10421
spell-COMPOUNDMIN	spell.txt	line 10422
spell-COMPOUNDPERMITFLAG	spell.txt	line 10423
spell-COMPOUNDROOT	spell.txt	line 10424
spell-COMPOUNDRULE	spell.txt	line 10425
spell-COMPOUNDRULES	spell.txt	line 10426
spell-COMPOUNDSYLLABLE	spell.txt	line 10427
spell-COMPOUNDSYLMAX	spell.txt	line 10428
spell-COMPOUNDWORDMAX	spell.txt	line 10429
spell-COPYRIGHT	spell.txt	line 10430
spell-EMAIL	spell.txt	line 10431
spell-FLAG	spell.txt	line 10432
spell-FOL	spell.txt	line 10433
spell-FORBIDDENWORD	spell.txt	line 10434
spell-HOME	spell.txt	line 10435
spell-IGNOREEXTRA	spell.txt	line 10436
spell-KEEPCASE	spell.txt	line 10437
spell-KEY	spell.txt	line 10438
spell-LANG	spell.txt	line 10439
spell-LEMMA_PRESENT	spell.txt	line 10440
spell-LOW	spell.txt	line 10441
spell-MAP	spell.txt	line 10442
spell-MAXNGRAMSUGS	spell.txt	line 10443
spell-NAME	spell.txt	line 10444
spell-NEEDAFFIX	spell.txt	line 10445
spell-NEEDCOMPOUND	spell.txt	line 10446
spell-NOBREAK	spell.txt	line 10447
spell-NOCOMPOUNDSUGS	spell.txt	line 10448
spell-NOSPLITSUGS	spell.txt	line 10449
spell-NOSUGFILE	spell.txt	line 10450
spell-NOSUGGEST	spell.txt	line 10451
spell-ONLYINCOMPOUND	spell.txt	line 10452
spell-PFX	spell.txt	line 10453
spell-PFXPOSTPONE	spell.txt	line 10454
spell-PSEUDOROOT	spell.txt	line 10455
spell-RARE	spell.txt	line 10456
spell-REP	spell.txt	line 10457
spell-SAL	spell.txt	line 10458
spell-SET	spell.txt	line 10459
spell-SFX	spell.txt	line 10460
spell-SLASH	spell.txt	line 10461
spell-SOFOFROM	spell.txt	line 10462
spell-SOFOTO	spell.txt	line 10463
spell-SUGSWITHDOTS	spell.txt	line 10464
spell-SYLLABLE	spell.txt	line 10465
spell-SYLLABLENUM	spell.txt	line 10466
spell-SpellFileMissing	spell.txt	line 10467
spell-TRY	spell.txt	line 10468
spell-UPP	spell.txt	line 10469
spell-VERSION	spell.txt	line 10470
spell-WORDCHARS	spell.txt	line 10471
spell-aff-format	spell.txt	line 10472
spell-affix-chars	spell.txt	line 10473
spell-affix-comment	spell.txt	line 10474
spell-affix-flags	spell.txt	line 10475
spell-affix-mbyte	spell.txt	line 10476
spell-affix-not-supported	spell.txt	line 10477
spell-affix-vim	spell.txt	line 10478
spell-cjk	spell.txt	line 10479
spell-compound	spell.txt	line 10480
spell-dic-format	spell.txt	line 10481
spell-double-scoring	spell.txt	line 10482
spell-file-format	spell.txt	line 10483
spell-functions	usr_41.txt	line 10484
spell-german	spell.txt	line 10485
spell-load	spell.txt	line 10486
spell-midword	spell.txt	line 10487
spell-mkspell	spell.txt	line 10488
spell-quickstart	spell.txt	line 10489
spell-remarks	spell.txt	line 10490
spell-russian	spell.txt	line 10491
spell-sug-file	spell.txt	line 10492
spell-syntax	spell.txt	line 10493
spell-wordlist-format	spell.txt	line 10494
spell-yiddish	spell.txt	line 10495
spell.txt	spell.txt	line 10496
spellbadword()	builtin.txt	line 10497
spellfile-cleanup	spell.txt	line 10498
spellfile.vim	spell.txt	line 10499
spellsuggest()	builtin.txt	line 10500
split()	builtin.txt	line 10501
splitfind	windows.txt	line 10502
splitview	windows.txt	line 10503
sponsor	sponsor.txt	line 10504
sponsor-faq	sponsor.txt	line 10505
sponsor.txt	sponsor.txt	line 10506
spoon	os_unix.txt	line 10507
spup.vim	syntax.txt	line 10508
sql-adding-dialects	ft_sql.txt	line 10509
sql-completion	ft_sql.txt	line 10510
sql-completion-columns	ft_sql.txt	line 10511
sql-completion-customization	ft_sql.txt	line 10512
sql-completion-dynamic	ft_sql.txt	line 10513
sql-completion-filetypes	ft_sql.txt	line 10514
sql-completion-maps	ft_sql.txt	line 10515
sql-completion-procedures	ft_sql.txt	line 10516
sql-completion-static	ft_sql.txt	line 10517
sql-completion-tables	ft_sql.txt	line 10518
sql-completion-tutorial	ft_sql.txt	line 10519
sql-completion-views	ft_sql.txt	line 10520
sql-dialects	ft_sql.txt	line 10521
sql-macros	ft_sql.txt	line 10522
sql-matchit	ft_sql.txt	line 10523
sql-navigation	ft_sql.txt	line 10524
sql-object-motions	ft_sql.txt	line 10525
sql-predefined-objects	ft_sql.txt	line 10526
sql-type-default	ft_sql.txt	line 10527
sql-types	ft_sql.txt	line 10528
sql.vim	syntax.txt	line 10529
sqlanywhere	ft_sql.txt	line 10530
sqlanywhere.vim	syntax.txt	line 10531
sqlgettype	ft_sql.txt	line 10532
sqlinformix.vim	syntax.txt	line 10533
sqlj	ft_sql.txt	line 10534
sqlserver	ft_sql.txt	line 10535
sqlsettype	ft_sql.txt	line 10536
sqrt()	builtin.txt	line 10537
squirrel.vim	syntax.txt	line 10538
srand()	builtin.txt	line 10539
sscanf	eval.txt	line 10540
stacktrace-variable	eval.txt	line 10541
standard-plugin	usr_05.txt	line 10542
standard-plugin-list	help.txt	line 10543
standout	syntax.txt	line 10544
star	pattern.txt	line 10545
starstar	editing.txt	line 10546
starstar-wildcard	editing.txt	line 10547
start-of-file	pattern.txt	line 10548
start-vimdiff	diff.txt	line 10549
starting	starting.txt	line 10550
starting-amiga	starting.txt	line 10551
starting.txt	starting.txt	line 10552
startup	starting.txt	line 10553
startup-options	starting.txt	line 10554
startup-terminal	term.txt	line 10555
state()	builtin.txt	line 10556
static-tag	tagsrch.txt	line 10557
status-line	windows.txt	line 10558
statusmsg-variable	eval.txt	line 10559
stl-&#37;!	options.txt	line 10560
stl-&#37;@	options.txt	line 10561
stl-&#37;[FuncName]	options.txt	line 10562
stl-&#37;{	options.txt	line 10563
str2blob()	builtin.txt	line 10564
str2float()	builtin.txt	line 10565
str2list()	builtin.txt	line 10566
str2nr()	builtin.txt	line 10567
strcasestr()	builtin.txt	line 10568
strcharlen()	builtin.txt	line 10569
strcharpart()	builtin.txt	line 10570
strchars()	builtin.txt	line 10571
strchr()	builtin.txt	line 10572
strcspn()	builtin.txt	line 10573
strdisplaywidth()	builtin.txt	line 10574
strftime()	builtin.txt	line 10575
strgetchar()	builtin.txt	line 10576
stridx()	builtin.txt	line 10577
strikethrough	syntax.txt	line 10578
string	eval.txt	line 10579
string()	builtin.txt	line 10580
string-functions	usr_41.txt	line 10581
string-match	builtin.txt	line 10582
string-offset-encoding	eval.txt	line 10583
strlen()	builtin.txt	line 10584
strpart()	builtin.txt	line 10585
strpbrk()	builtin.txt	line 10586
strptime()	builtin.txt	line 10587
strrchr()	builtin.txt	line 10588
strridx()	builtin.txt	line 10589
strspn()	builtin.txt	line 10590
strstr()	builtin.txt	line 10591
strtrans()	builtin.txt	line 10592
strutf16len()	builtin.txt	line 10593
strwidth()	builtin.txt	line 10594
style-braces	develop.txt	line 10595
style-changes	develop.txt	line 10596
style-clang-format	develop.txt	line 10597
style-comments	develop.txt	line 10598
style-common-functions	develop.txt	line 10599
style-declarations	develop.txt	line 10600
style-examples	develop.txt	line 10601
style-functions	develop.txt	line 10602
style-indentation	develop.txt	line 10603
style-names	develop.txt	line 10604
style-spaces	develop.txt	line 10605
style-types	develop.txt	line 10606
style-various	develop.txt	line 10607
sub-menu-priority	gui.txt	line 10608
sub-replace-\=	change.txt	line 10609
sub-replace-expression	change.txt	line 10610
sub-replace-special	change.txt	line 10611
sublist	eval.txt	line 10612
submatch()	builtin.txt	line 10613
subscribe-maillist	intro.txt	line 10614
subscript	eval.txt	line 10615
substitute()	builtin.txt	line 10616
substitute-CR	version6.txt	line 10617
substring	eval.txt	line 10618
subtuple	eval.txt	line 10619
suffixes	cmdline.txt	line 10620
suspend	starting.txt	line 10621
swap-exists-choices	usr_11.txt	line 10622
swap-file	recover.txt	line 10623
swapchoice-variable	eval.txt	line 10624
swapcommand-variable	eval.txt	line 10625
swapfile-changed	version4.txt	line 10626
swapfilelist()	builtin.txt	line 10627
swapinfo()	builtin.txt	line 10628
swapname()	builtin.txt	line 10629
swapname-variable	eval.txt	line 10630
sybase	ft_sql.txt	line 10631
syn-sync-grouphere	syntax.txt	line 10632
syn-sync-groupthere	syntax.txt	line 10633
syn-sync-linecont	syntax.txt	line 10634
synID()	builtin.txt	line 10635
synIDattr()	builtin.txt	line 10636
synIDtrans()	builtin.txt	line 10637
syncbind	scroll.txt	line 10638
syncolor	syntax.txt	line 10639
synconcealed()	builtin.txt	line 10640
synload-1	syntax.txt	line 10641
synload-2	syntax.txt	line 10642
synload-3	syntax.txt	line 10643
synload-4	syntax.txt	line 10644
synload-5	syntax.txt	line 10645
synload-6	syntax.txt	line 10646
synstack()	builtin.txt	line 10647
syntax	syntax.txt	line 10648
syntax-functions	usr_41.txt	line 10649
syntax-highlighting	syntax.txt	line 10650
syntax-latex	syntax.txt	line 10651
syntax-loading	syntax.txt	line 10652
syntax-printing	usr_06.txt	line 10653
syntax-tex	syntax.txt	line 10654
syntax-vs-match	pattern.txt	line 10655
syntax.txt	syntax.txt	line 10656
syntax_cmd	syntax.txt	line 10657
sys-file-list	help.txt	line 10658
sysmouse	term.txt	line 10659
system()	builtin.txt	line 10660
system-functions	usr_41.txt	line 10661
system-vimrc	starting.txt	line 10662
systemlist()	builtin.txt	line 10663
s~	change.txt	line 10664
t	motion.txt	line 10665
t:	eval.txt	line 10666
t:var	eval.txt	line 10667
t_#2	term.txt	line 10668
t_#4	term.txt	line 10669
t_&#37;1	term.txt	line 10670
t_&#37;i	term.txt	line 10671
t_&amp;8	term.txt	line 10672
t_8b	term.txt	line 10673
t_8f	term.txt	line 10674
t_8u	term.txt	line 10675
t_@7	term.txt	line 10676
t_AB	term.txt	line 10677
t_AF	term.txt	line 10678
t_AL	term.txt	line 10679
t_AU	term.txt	line 10680
t_BD	term.txt	line 10681
t_BE	term.txt	line 10682
t_BS	term.txt	line 10683
t_CF	term.txt	line 10684
t_CS	term.txt	line 10685
t_CTRL-W_.	terminal.txt	line 10686
t_CTRL-W_:	terminal.txt	line 10687
t_CTRL-W_CTRL-C	terminal.txt	line 10688
t_CTRL-W_CTRL-W	terminal.txt	line 10689
t_CTRL-W_N	terminal.txt	line 10690
t_CTRL-W_gT	terminal.txt	line 10691
t_CTRL-W_gt	terminal.txt	line 10692
t_CTRL-W_quote	terminal.txt	line 10693
t_CTRL-\_CTRL-N	terminal.txt	line 10694
t_CV	term.txt	line 10695
t_Ce	term.txt	line 10696
t_Co	term.txt	line 10697
t_Cs	term.txt	line 10698
t_DL	term.txt	line 10699
t_Ds	term.txt	line 10700
t_EC	term.txt	line 10701
t_EI	term.txt	line 10702
t_ES	term.txt	line 10703
t_F1	term.txt	line 10704
t_F2	term.txt	line 10705
t_F3	term.txt	line 10706
t_F4	term.txt	line 10707
t_F5	term.txt	line 10708
t_F6	term.txt	line 10709
t_F7	term.txt	line 10710
t_F8	term.txt	line 10711
t_F9	term.txt	line 10712
t_GP	term.txt	line 10713
t_IE	term.txt	line 10714
t_IS	term.txt	line 10715
t_K1	term.txt	line 10716
t_K3	term.txt	line 10717
t_K4	term.txt	line 10718
t_K5	term.txt	line 10719
t_K6	term.txt	line 10720
t_K7	term.txt	line 10721
t_K8	term.txt	line 10722
t_K9	term.txt	line 10723
t_KA	term.txt	line 10724
t_KB	term.txt	line 10725
t_KC	term.txt	line 10726
t_KD	term.txt	line 10727
t_KE	term.txt	line 10728
t_KF	term.txt	line 10729
t_KG	term.txt	line 10730
t_KH	term.txt	line 10731
t_KI	term.txt	line 10732
t_KJ	term.txt	line 10733
t_KK	term.txt	line 10734
t_KL	term.txt	line 10735
t_PE	term.txt	line 10736
t_PS	term.txt	line 10737
t_RB	term.txt	line 10738
t_RC	term.txt	line 10739
t_RF	term.txt	line 10740
t_RI	term.txt	line 10741
t_RK	term.txt	line 10742
t_RS	term.txt	line 10743
t_RT	term.txt	line 10744
t_RV	term.txt	line 10745
t_Ri	term.txt	line 10746
t_SC	term.txt	line 10747
t_SH	term.txt	line 10748
t_SI	term.txt	line 10749
t_SR	term.txt	line 10750
t_ST	term.txt	line 10751
t_Sb	term.txt	line 10752
t_Sf	term.txt	line 10753
t_Si	term.txt	line 10754
t_TE	term.txt	line 10755
t_TI	term.txt	line 10756
t_Te	term.txt	line 10757
t_Ts	term.txt	line 10758
t_Us	term.txt	line 10759
t_VS	term.txt	line 10760
t_WP	term.txt	line 10761
t_WS	term.txt	line 10762
t_XM	term.txt	line 10763
t_ZH	term.txt	line 10764
t_ZR	term.txt	line 10765
t_al	term.txt	line 10766
t_bc	term.txt	line 10767
t_blob-variable	eval.txt	line 10768
t_bool-variable	eval.txt	line 10769
t_cd	term.txt	line 10770
t_cdl	version4.txt	line 10771
t_ce	term.txt	line 10772
t_channel-variable	eval.txt	line 10773
t_ci	version4.txt	line 10774
t_cil	version4.txt	line 10775
t_cl	term.txt	line 10776
t_class-variable	eval.txt	line 10777
t_cm	term.txt	line 10778
t_cri	version4.txt	line 10779
t_cs	term.txt	line 10780
t_csc	version4.txt	line 10781
t_cv	version4.txt	line 10782
t_cvv	version4.txt	line 10783
t_da	term.txt	line 10784
t_db	term.txt	line 10785
t_dict-variable	eval.txt	line 10786
t_dl	term.txt	line 10787
t_ds	term.txt	line 10788
t_ed	version4.txt	line 10789
t_el	version4.txt	line 10790
t_enum-variable	eval.txt	line 10791
t_enumvalue-variable	eval.txt	line 10792
t_f1	version4.txt	line 10793
t_f10	version4.txt	line 10794
t_f2	version4.txt	line 10795
t_f3	version4.txt	line 10796
t_f4	version4.txt	line 10797
t_f5	version4.txt	line 10798
t_f6	version4.txt	line 10799
t_f7	version4.txt	line 10800
t_f8	version4.txt	line 10801
t_f9	version4.txt	line 10802
t_fd	term.txt	line 10803
t_fe	term.txt	line 10804
t_float-variable	eval.txt	line 10805
t_fs	term.txt	line 10806
t_func-variable	eval.txt	line 10807
t_help	version4.txt	line 10808
t_il	version4.txt	line 10809
t_job-variable	eval.txt	line 10810
t_k1	term.txt	line 10811
t_k2	term.txt	line 10812
t_k3	term.txt	line 10813
t_k4	term.txt	line 10814
t_k5	term.txt	line 10815
t_k6	term.txt	line 10816
t_k7	term.txt	line 10817
t_k8	term.txt	line 10818
t_k9	term.txt	line 10819
t_k;	term.txt	line 10820
t_kB	term.txt	line 10821
t_kD	term.txt	line 10822
t_kI	term.txt	line 10823
t_kN	term.txt	line 10824
t_kP	term.txt	line 10825
t_kb	term.txt	line 10826
t_kd	term.txt	line 10827
t_ke	term.txt	line 10828
t_kh	term.txt	line 10829
t_kl	term.txt	line 10830
t_kr	term.txt	line 10831
t_ks	term.txt	line 10832
t_ku	term.txt	line 10833
t_le	term.txt	line 10834
t_list-variable	eval.txt	line 10835
t_mb	term.txt	line 10836
t_md	term.txt	line 10837
t_me	term.txt	line 10838
t_mr	term.txt	line 10839
t_ms	term.txt	line 10840
t_nd	term.txt	line 10841
t_none-variable	eval.txt	line 10842
t_number-variable	eval.txt	line 10843
t_object-variable	eval.txt	line 10844
t_op	term.txt	line 10845
t_se	term.txt	line 10846
t_sf1	version4.txt	line 10847
t_sf10	version4.txt	line 10848
t_sf2	version4.txt	line 10849
t_sf3	version4.txt	line 10850
t_sf4	version4.txt	line 10851
t_sf5	version4.txt	line 10852
t_sf6	version4.txt	line 10853
t_sf7	version4.txt	line 10854
t_sf8	version4.txt	line 10855
t_sf9	version4.txt	line 10856
t_skd	version4.txt	line 10857
t_skl	version4.txt	line 10858
t_skr	version4.txt	line 10859
t_sku	version4.txt	line 10860
t_so	term.txt	line 10861
t_sr	term.txt	line 10862
t_star7	term.txt	line 10863
t_string-variable	eval.txt	line 10864
t_tb	version4.txt	line 10865
t_te	term.txt	line 10866
t_ti	term.txt	line 10867
t_tp	version4.txt	line 10868
t_ts	term.txt	line 10869
t_ts_old	version4.txt	line 10870
t_tuple-variable	eval.txt	line 10871
t_typealias-variable	eval.txt	line 10872
t_u7	term.txt	line 10873
t_ue	term.txt	line 10874
t_undo	version4.txt	line 10875
t_us	term.txt	line 10876
t_ut	term.txt	line 10877
t_vb	term.txt	line 10878
t_ve	term.txt	line 10879
t_vi	term.txt	line 10880
t_vs	term.txt	line 10881
t_xn	term.txt	line 10882
t_xo	term.txt	line 10883
t_xs	term.txt	line 10884
tab	intro.txt	line 10885
tab-page	tabpage.txt	line 10886
tab-page-commands	tabpage.txt	line 10887
tab-page-intro	tabpage.txt	line 10888
tab-page-other	tabpage.txt	line 10889
tabline-menu	tabpage.txt	line 10890
tabnew-autocmd	tabpage.txt	line 10891
tabpage	tabpage.txt	line 10892
tabpage-variable	eval.txt	line 10893
tabpage.txt	tabpage.txt	line 10894
tabpagebuflist()	builtin.txt	line 10895
tabpagenr()	builtin.txt	line 10896
tabpagewinnr()	builtin.txt	line 10897
tabpanel	tabpage.txt	line 10898
tabpanel-mouse	tabpage.txt	line 10899
tabpanel-scroll	tabpage.txt	line 10900
tabpanel_getinfo()	builtin.txt	line 10901
tabpanel_scroll()	builtin.txt	line 10902
tag	tagsrch.txt	line 10903
tag-!	tagsrch.txt	line 10904
tag-binary-search	tagsrch.txt	line 10905
tag-blocks	motion.txt	line 10906
tag-commands	tagsrch.txt	line 10907
tag-details	tagsrch.txt	line 10908
tag-function	tagsrch.txt	line 10909
tag-functions	usr_41.txt	line 10910
tag-highlight	syntax.txt	line 10911
tag-matchlist	tagsrch.txt	line 10912
tag-old-static	tagsrch.txt	line 10913
tag-overloaded	version5.txt	line 10914
tag-preview	tagsrch.txt	line 10915
tag-priority	tagsrch.txt	line 10916
tag-regexp	tagsrch.txt	line 10917
tag-search	tagsrch.txt	line 10918
tag-security	tagsrch.txt	line 10919
tag-skip-file	tagsrch.txt	line 10920
tag-stack	tagsrch.txt	line 10921
tagfiles()	builtin.txt	line 10922
taglist()	builtin.txt	line 10923
tags	tagsrch.txt	line 10924
tags-and-searches	tagsrch.txt	line 10925
tags-file-changed	version5.txt	line 10926
tags-file-format	tagsrch.txt	line 10927
tags-option	tagsrch.txt	line 10928
tagsrch.txt	tagsrch.txt	line 10929
tagstack	tagsrch.txt	line 10930
tagstack-examples	tagsrch.txt	line 10931
tan()	builtin.txt	line 10932
tanh()	builtin.txt	line 10933
tar	pi_tar.txt	line 10934
tar-contents	pi_tar.txt	line 10935
tar-copyright	pi_tar.txt	line 10936
tar-history	pi_tar.txt	line 10937
tar-manual	pi_tar.txt	line 10938
tar-mappings	pi_tar.txt	line 10939
tar-options	pi_tar.txt	line 10940
tar-usage	pi_tar.txt	line 10941
tcl	if_tcl.txt	line 10942
tcl-beep	if_tcl.txt	line 10943
tcl-buffer	if_tcl.txt	line 10944
tcl-buffer-append	if_tcl.txt	line 10945
tcl-buffer-cmds	if_tcl.txt	line 10946
tcl-buffer-command	if_tcl.txt	line 10947
tcl-buffer-count	if_tcl.txt	line 10948
tcl-buffer-delcmd	if_tcl.txt	line 10949
tcl-buffer-delete	if_tcl.txt	line 10950
tcl-buffer-expr	if_tcl.txt	line 10951
tcl-buffer-get	if_tcl.txt	line 10952
tcl-buffer-insert	if_tcl.txt	line 10953
tcl-buffer-last	if_tcl.txt	line 10954
tcl-buffer-mark	if_tcl.txt	line 10955
tcl-buffer-option	if_tcl.txt	line 10956
tcl-buffer-set	if_tcl.txt	line 10957
tcl-buffer-windows	if_tcl.txt	line 10958
tcl-bugs	if_tcl.txt	line 10959
tcl-command	if_tcl.txt	line 10960
tcl-commands	if_tcl.txt	line 10961
tcl-dynamic	if_tcl.txt	line 10962
tcl-ex-commands	if_tcl.txt	line 10963
tcl-examples	if_tcl.txt	line 10964
tcl-expr	if_tcl.txt	line 10965
tcl-linenumbers	if_tcl.txt	line 10966
tcl-misc	if_tcl.txt	line 10967
tcl-option	if_tcl.txt	line 10968
tcl-output	if_tcl.txt	line 10969
tcl-var-current	if_tcl.txt	line 10970
tcl-var-lbase	if_tcl.txt	line 10971
tcl-var-line	if_tcl.txt	line 10972
tcl-var-lnum	if_tcl.txt	line 10973
tcl-var-range	if_tcl.txt	line 10974
tcl-variables	if_tcl.txt	line 10975
tcl-window	if_tcl.txt	line 10976
tcl-window-buffer	if_tcl.txt	line 10977
tcl-window-cmds	if_tcl.txt	line 10978
tcl-window-command	if_tcl.txt	line 10979
tcl-window-cursor	if_tcl.txt	line 10980
tcl-window-delcmd	if_tcl.txt	line 10981
tcl-window-expr	if_tcl.txt	line 10982
tcl-window-height	if_tcl.txt	line 10983
tcl-window-option	if_tcl.txt	line 10984
tcsh-style	cmdline.txt	line 10985
tcsh.vim	syntax.txt	line 10986
tear-off-menus	gui.txt	line 10987
telnet-CTRL-]	tagsrch.txt	line 10988
temp-file-name	builtin.txt	line 10989
tempfile	change.txt	line 10990
template	autocmd.txt	line 10991
tempname()	builtin.txt	line 10992
term++close	terminal.txt	line 10993
term++open	terminal.txt	line 10994
term++shell	terminal.txt	line 10995
term-dependent-settings	term.txt	line 10996
term-list	syntax.txt	line 10997
term.txt	term.txt	line 10998
term_dumpdiff()	terminal.txt	line 10999
term_dumpload()	terminal.txt	line 11000
term_dumpwrite()	terminal.txt	line 11001
term_getaltscreen()	terminal.txt	line 11002
term_getansicolors()	terminal.txt	line 11003
term_getattr()	terminal.txt	line 11004
term_getcursor()	terminal.txt	line 11005
term_getjob()	terminal.txt	line 11006
term_getline()	terminal.txt	line 11007
term_getscrolled()	terminal.txt	line 11008
term_getsize()	terminal.txt	line 11009
term_getstatus()	terminal.txt	line 11010
term_gettitle()	terminal.txt	line 11011
term_gettty()	terminal.txt	line 11012
term_list()	terminal.txt	line 11013
term_scrape()	terminal.txt	line 11014
term_sendkeys()	terminal.txt	line 11015
term_setansicolors()	terminal.txt	line 11016
term_setapi()	terminal.txt	line 11017
term_setkill()	terminal.txt	line 11018
term_setrestore()	terminal.txt	line 11019
term_setsize()	terminal.txt	line 11020
term_start()	terminal.txt	line 11021
term_wait()	terminal.txt	line 11022
termblinkresp-variable	eval.txt	line 11023
termcap	term.txt	line 11024
termcap-changed	version4.txt	line 11025
termcap-colors	term.txt	line 11026
termcap-cursor-color	term.txt	line 11027
termcap-cursor-shape	term.txt	line 11028
termcap-options	term.txt	line 11029
termcap-title	term.txt	line 11030
termda1-variable	eval.txt	line 11031
termdebug	terminal.txt	line 11032
termdebug-commands	terminal.txt	line 11033
termdebug-communication	terminal.txt	line 11034
termdebug-customizing	terminal.txt	line 11035
termdebug-events	terminal.txt	line 11036
termdebug-example	terminal.txt	line 11037
termdebug-frames	terminal.txt	line 11038
termdebug-mappings	terminal.txt	line 11039
termdebug-prompt	terminal.txt	line 11040
termdebug-remote	terminal.txt	line 11041
termdebug-remote-example	terminal.txt	line 11042
termdebug-remote-window	terminal.txt	line 11043
termdebug-starting	terminal.txt	line 11044
termdebug-stepping	terminal.txt	line 11045
termdebug-substitute-path	terminal.txt	line 11046
termdebug-timeout	terminal.txt	line 11047
termdebug-variables	terminal.txt	line 11048
termdebug_contributing	terminal.txt	line 11049
termdebug_disasm_window	terminal.txt	line 11050
termdebug_evaluate_in_popup	terminal.txt	line 11051
termdebug_map_K	terminal.txt	line 11052
termdebug_map_minus	terminal.txt	line 11053
termdebug_map_plus	terminal.txt	line 11054
termdebug_popup	terminal.txt	line 11055
termdebug_shortcuts	terminal.txt	line 11056
termdebug_signs	terminal.txt	line 11057
termdebug_use_prompt	terminal.txt	line 11058
termdebug_variables_window	terminal.txt	line 11059
termdebug_wide	terminal.txt	line 11060
termdebug_winbar	terminal.txt	line 11061
terminal	terminal.txt	line 11062
terminal-api	terminal.txt	line 11063
terminal-autoshelldir	terminal.txt	line 11064
terminal-bufname	terminal.txt	line 11065
terminal-client-server	terminal.txt	line 11066
terminal-close	terminal.txt	line 11067
terminal-colors	os_unix.txt	line 11068
terminal-communication	terminal.txt	line 11069
terminal-cursor-style	terminal.txt	line 11070
terminal-debug	terminal.txt	line 11071
terminal-debugger	terminal.txt	line 11072
terminal-diff	terminal.txt	line 11073
terminal-diffscreendump	terminal.txt	line 11074
terminal-dumptest	terminal.txt	line 11075
terminal-function-details	terminal.txt	line 11076
terminal-functions	usr_41.txt	line 11077
terminal-info	term.txt	line 11078
terminal-job-index	index.txt	line 11079
terminal-key-codes	term.txt	line 11080
terminal-mouse	term.txt	line 11081
terminal-ms-windows	terminal.txt	line 11082
terminal-nospecial	terminal.txt	line 11083
terminal-options	term.txt	line 11084
terminal-output-codes	term.txt	line 11085
terminal-resizing	terminal.txt	line 11086
terminal-screendump	terminal.txt	line 11087
terminal-session	terminal.txt	line 11088
terminal-size-color	terminal.txt	line 11089
terminal-special-keys	terminal.txt	line 11090
terminal-testing	terminal.txt	line 11091
terminal-to-job	terminal.txt	line 11092
terminal-typing	terminal.txt	line 11093
terminal-unix	terminal.txt	line 11094
terminal-use	terminal.txt	line 11095
terminal-window	terminal.txt	line 11096
terminal.txt	terminal.txt	line 11097
terminalprops()	builtin.txt	line 11098
terminfo	term.txt	line 11099
termosc-variable	eval.txt	line 11100
termrbgresp-variable	eval.txt	line 11101
termresponse-variable	eval.txt	line 11102
termrfgresp-variable	eval.txt	line 11103
termstyleresp-variable	eval.txt	line 11104
termu7resp-variable	eval.txt	line 11105
termux	builtin.txt	line 11106
ternary	eval.txt	line 11107
test-functions	usr_41.txt	line 11108
test-functions-details	testing.txt	line 11109
test_alloc_fail()	testing.txt	line 11110
test_autochdir()	testing.txt	line 11111
test_feedinput()	testing.txt	line 11112
test_garbagecollect_now()	testing.txt	line 11113
test_garbagecollect_soon()	testing.txt	line 11114
test_getvalue()	testing.txt	line 11115
test_gui_event()	testing.txt	line 11116
test_ignore_error()	testing.txt	line 11117
test_mswin_event()	testing.txt	line 11118
test_null_blob()	testing.txt	line 11119
test_null_channel()	testing.txt	line 11120
test_null_dict()	testing.txt	line 11121
test_null_function()	testing.txt	line 11122
test_null_job()	testing.txt	line 11123
test_null_list()	testing.txt	line 11124
test_null_partial()	testing.txt	line 11125
test_null_string()	testing.txt	line 11126
test_null_tuple()	testing.txt	line 11127
test_option_not_set()	testing.txt	line 11128
test_override()	testing.txt	line 11129
test_refcount()	testing.txt	line 11130
test_setmouse()	testing.txt	line 11131
test_settime()	testing.txt	line 11132
test_srand_seed()	testing.txt	line 11133
test_unknown()	testing.txt	line 11134
test_void()	testing.txt	line 11135
testing	testing.txt	line 11136
testing-support	testing.txt	line 11137
testing-variable	eval.txt	line 11138
testing.txt	testing.txt	line 11139
tex-cchar	syntax.txt	line 11140
tex-cole	syntax.txt	line 11141
tex-conceal	syntax.txt	line 11142
tex-error	syntax.txt	line 11143
tex-folding	syntax.txt	line 11144
tex-matchcheck	syntax.txt	line 11145
tex-math	syntax.txt	line 11146
tex-morecommands	syntax.txt	line 11147
tex-nospell	syntax.txt	line 11148
tex-package	syntax.txt	line 11149
tex-runon	syntax.txt	line 11150
tex-slow	syntax.txt	line 11151
tex-stopzone	syntax.txt	line 11152
tex-style	syntax.txt	line 11153
tex-supersub	syntax.txt	line 11154
tex-sync	syntax.txt	line 11155
tex-verb	syntax.txt	line 11156
tex.vim	syntax.txt	line 11157
text-functions	usr_41.txt	line 11158
text-objects	motion.txt	line 11159
text-objects-changed	version5.txt	line 11160
text-prop-changes	textprop.txt	line 11161
text-prop-cleared	textprop.txt	line 11162
text-prop-functions	textprop.txt	line 11163
text-prop-functions-details	textprop.txt	line 11164
text-prop-intro	textprop.txt	line 11165
text-properties	textprop.txt	line 11166
text-property-functions	usr_41.txt	line 11167
textlock	eval.txt	line 11168
textprop	textprop.txt	line 11169
textprop.txt	textprop.txt	line 11170
tf.vim	syntax.txt	line 11171
this_session-variable	eval.txt	line 11172
throw-catch	eval.txt	line 11173
throw-expression	eval.txt	line 11174
throw-from-catch	eval.txt	line 11175
throw-variables	eval.txt	line 11176
throwpoint-variable	eval.txt	line 11177
time-functions	usr_41.txt	line 11178
timer	builtin.txt	line 11179
timer-functions	usr_41.txt	line 11180
timer_info()	builtin.txt	line 11181
timer_pause()	builtin.txt	line 11182
timer_start()	builtin.txt	line 11183
timer_stop()	builtin.txt	line 11184
timer_stopall()	builtin.txt	line 11185
timers	builtin.txt	line 11186
timestamp	editing.txt	line 11187
timestamps	editing.txt	line 11188
tips	tips.txt	line 11189
tips.txt	tips.txt	line 11190
tmux	syntax.txt	line 11191
tmux-integration	term.txt	line 11192
todo	todo.txt	line 11193
todo.txt	todo.txt	line 11194
toggle	options.txt	line 11195
toggle-revins	version4.txt	line 11196
tolower()	builtin.txt	line 11197
toolbar-icon	gui.txt	line 11198
tooltips	gui.txt	line 11199
toupper()	builtin.txt	line 11200
tr()	builtin.txt	line 11201
trim()	builtin.txt	line 11202
trojan-horse	starting.txt	line 11203
true	vim9.txt	line 11204
true-variable	eval.txt	line 11205
trunc()	builtin.txt	line 11206
truthy	eval.txt	line 11207
try-conditionals	eval.txt	line 11208
try-echoerr	eval.txt	line 11209
try-finally	eval.txt	line 11210
try-nested	eval.txt	line 11211
try-nesting	eval.txt	line 11212
tuple	eval.txt	line 11213
tuple-concatenation	eval.txt	line 11214
tuple-functions	usr_41.txt	line 11215
tuple-identity	eval.txt	line 11216
tuple-index	eval.txt	line 11217
tuple-modification	eval.txt	line 11218
tuple-type	vim9.txt	line 11219
tuple2list()	builtin.txt	line 11220
tutor	usr_01.txt	line 11221
two-engines	pattern.txt	line 11222
type()	builtin.txt	line 11223
type-casting	vim9.txt	line 11224
type-checking	vim9.txt	line 11225
type-inference	vim9.txt	line 11226
type-mistakes	tips.txt	line 11227
type-parameter-naming	vim9.txt	line 11228
type-variable-naming	vim9.txt	line 11229
typealias	vim9class.txt	line 11230
typename()	builtin.txt	line 11231
typescript.vim	syntax.txt	line 11232
typescriptreact.vim	syntax.txt	line 11233
u	undo.txt	line 11234
uganda	uganda.txt	line 11235
uganda.txt	uganda.txt	line 11236
undercurl	syntax.txt	line 11237
underdashed	syntax.txt	line 11238
underdotted	syntax.txt	line 11239
underdouble	syntax.txt	line 11240
underline	syntax.txt	line 11241
underline-codes	syntax.txt	line 11242
undo	undo.txt	line 11243
undo-blocks	undo.txt	line 11244
undo-branches	undo.txt	line 11245
undo-break	undo.txt	line 11246
undo-close-block	undo.txt	line 11247
undo-commands	undo.txt	line 11248
undo-persistence	undo.txt	line 11249
undo-redo	undo.txt	line 11250
undo-remarks	undo.txt	line 11251
undo-tree	undo.txt	line 11252
undo-two-ways	undo.txt	line 11253
undo.txt	undo.txt	line 11254
undo_ftplugin	usr_51.txt	line 11255
undo_indent	usr_51.txt	line 11256
undofile()	builtin.txt	line 11257
undotree()	builtin.txt	line 11258
unicode	mbyte.txt	line 11259
uniq()	builtin.txt	line 11260
unique	change.txt	line 11261
unix	os_unix.txt	line 11262
unlisted-buffer	windows.txt	line 11263
up-down-motions	motion.txt	line 11264
uppercase	change.txt	line 11265
uri_decode()	builtin.txt	line 11266
uri_encode()	builtin.txt	line 11267
urxvt-mouse	options.txt	line 11268
use-visual-cmds	version4.txt	line 11269
useful-mappings	tips.txt	line 11270
usenet	intro.txt	line 11271
user-cmd-ambiguous	map.txt	line 11272
user-commands	map.txt	line 11273
user-functions	eval.txt	line 11274
user-manual	usr_toc.txt	line 11275
userfunc.txt	userfunc.txt	line 11276
using-&lt;Plug&gt;	usr_51.txt	line 11277
using-menus	gui.txt	line 11278
using-scripts	repeat.txt	line 11279
using-xxd	tips.txt	line 11280
using_CTRL-V	map.txt	line 11281
usr	usr_toc.txt	line 11282
usr_01.txt	usr_01.txt	line 11283
usr_02.txt	usr_02.txt	line 11284
usr_03.txt	usr_03.txt	line 11285
usr_04.txt	usr_04.txt	line 11286
usr_05.txt	usr_05.txt	line 11287
usr_06.txt	usr_06.txt	line 11288
usr_07.txt	usr_07.txt	line 11289
usr_08.txt	usr_08.txt	line 11290
usr_09.txt	usr_09.txt	line 11291
usr_10.txt	usr_10.txt	line 11292
usr_11.txt	usr_11.txt	line 11293
usr_12.txt	usr_12.txt	line 11294
usr_20.txt	usr_20.txt	line 11295
usr_21.txt	usr_21.txt	line 11296
usr_22.txt	usr_22.txt	line 11297
usr_23.txt	usr_23.txt	line 11298
usr_24.txt	usr_24.txt	line 11299
usr_25.txt	usr_25.txt	line 11300
usr_26.txt	usr_26.txt	line 11301
usr_27.txt	usr_27.txt	line 11302
usr_28.txt	usr_28.txt	line 11303
usr_29.txt	usr_29.txt	line 11304
usr_30.txt	usr_30.txt	line 11305
usr_31.txt	usr_31.txt	line 11306
usr_32.txt	usr_32.txt	line 11307
usr_40.txt	usr_40.txt	line 11308
usr_41.txt	usr_41.txt	line 11309
usr_42.txt	usr_42.txt	line 11310
usr_43.txt	usr_43.txt	line 11311
usr_44.txt	usr_44.txt	line 11312
usr_45.txt	usr_45.txt	line 11313
usr_50.txt	usr_50.txt	line 11314
usr_51.txt	usr_51.txt	line 11315
usr_52.txt	usr_52.txt	line 11316
usr_90.txt	usr_90.txt	line 11317
usr_toc.txt	usr_toc.txt	line 11318
utf-8	mbyte.txt	line 11319
utf-8-char-arg	mbyte.txt	line 11320
utf-8-in-xwindows	mbyte.txt	line 11321
utf-8-typing	mbyte.txt	line 11322
utf16idx()	builtin.txt	line 11323
utf8	mbyte.txt	line 11324
v	visual.txt	line 11325
v:	eval.txt	line 11326
v:argv	eval.txt	line 11327
v:beval_bufnr	eval.txt	line 11328
v:beval_col	eval.txt	line 11329
v:beval_lnum	eval.txt	line 11330
v:beval_text	eval.txt	line 11331
v:beval_winid	eval.txt	line 11332
v:beval_winnr	eval.txt	line 11333
v:char	eval.txt	line 11334
v:charconvert_from	eval.txt	line 11335
v:charconvert_to	eval.txt	line 11336
v:clipmethod	eval.txt	line 11337
v:clipproviders	eval.txt	line 11338
v:cmdarg	eval.txt	line 11339
v:cmdbang	eval.txt	line 11340
v:collate	eval.txt	line 11341
v:colornames	eval.txt	line 11342
v:completed_item	eval.txt	line 11343
v:count	eval.txt	line 11344
v:count1	eval.txt	line 11345
v:ctype	eval.txt	line 11346
v:dying	eval.txt	line 11347
v:echospace	eval.txt	line 11348
v:errmsg	eval.txt	line 11349
v:errors	eval.txt	line 11350
v:event	eval.txt	line 11351
v:exception	eval.txt	line 11352
v:exiting	eval.txt	line 11353
v:false	eval.txt	line 11354
v:fcs_choice	eval.txt	line 11355
v:fcs_reason	eval.txt	line 11356
v:fname	eval.txt	line 11357
v:fname_diff	eval.txt	line 11358
v:fname_in	eval.txt	line 11359
v:fname_new	eval.txt	line 11360
v:fname_out	eval.txt	line 11361
v:folddashes	eval.txt	line 11362
v:foldend	eval.txt	line 11363
v:foldlevel	eval.txt	line 11364
v:foldstart	eval.txt	line 11365
v:hlsearch	eval.txt	line 11366
v:insertmode	eval.txt	line 11367
v:key	eval.txt	line 11368
v:lang	eval.txt	line 11369
v:lc_time	eval.txt	line 11370
v:lnum	eval.txt	line 11371
v:maxcol	eval.txt	line 11372
v:mouse_col	eval.txt	line 11373
v:mouse_lnum	eval.txt	line 11374
v:mouse_win	eval.txt	line 11375
v:mouse_winid	eval.txt	line 11376
v:none	eval.txt	line 11377
v:null	eval.txt	line 11378
v:numbermax	eval.txt	line 11379
v:numbermin	eval.txt	line 11380
v:numbersize	eval.txt	line 11381
v:oldfiles	eval.txt	line 11382
v:operator	eval.txt	line 11383
v:option_command	eval.txt	line 11384
v:option_new	eval.txt	line 11385
v:option_old	eval.txt	line 11386
v:option_oldglobal	eval.txt	line 11387
v:option_oldlocal	eval.txt	line 11388
v:option_type	eval.txt	line 11389
v:prevcount	eval.txt	line 11390
v:profiling	eval.txt	line 11391
v:progname	eval.txt	line 11392
v:progpath	eval.txt	line 11393
v:python3_version	eval.txt	line 11394
v:register	eval.txt	line 11395
v:scrollstart	eval.txt	line 11396
v:searchforward	eval.txt	line 11397
v:servername	eval.txt	line 11398
v:shell_error	eval.txt	line 11399
v:sizeofint	eval.txt	line 11400
v:sizeoflong	eval.txt	line 11401
v:sizeofpointer	eval.txt	line 11402
v:stacktrace	eval.txt	line 11403
v:statusmsg	eval.txt	line 11404
v:swapchoice	eval.txt	line 11405
v:swapcommand	eval.txt	line 11406
v:swapname	eval.txt	line 11407
v:t_TYPE	eval.txt	line 11408
v:t_blob	eval.txt	line 11409
v:t_bool	eval.txt	line 11410
v:t_channel	eval.txt	line 11411
v:t_class	eval.txt	line 11412
v:t_dict	eval.txt	line 11413
v:t_enum	eval.txt	line 11414
v:t_enumvalue	eval.txt	line 11415
v:t_float	eval.txt	line 11416
v:t_func	eval.txt	line 11417
v:t_job	eval.txt	line 11418
v:t_list	eval.txt	line 11419
v:t_none	eval.txt	line 11420
v:t_number	eval.txt	line 11421
v:t_object	eval.txt	line 11422
v:t_string	eval.txt	line 11423
v:t_tuple	eval.txt	line 11424
v:t_typealias	eval.txt	line 11425
v:termblinkresp	eval.txt	line 11426
v:termda1	eval.txt	line 11427
v:termosc	eval.txt	line 11428
v:termrbgresp	eval.txt	line 11429
v:termresponse	eval.txt	line 11430
v:termrfgresp	eval.txt	line 11431
v:termstyleresp	eval.txt	line 11432
v:termu7resp	eval.txt	line 11433
v:testing	eval.txt	line 11434
v:this_session	eval.txt	line 11435
v:throwpoint	eval.txt	line 11436
v:true	eval.txt	line 11437
v:val	eval.txt	line 11438
v:var	eval.txt	line 11439
v:version	eval.txt	line 11440
v:versionlong	eval.txt	line 11441
v:vim_did_enter	eval.txt	line 11442
v:vim_did_init	eval.txt	line 11443
v:warningmsg	eval.txt	line 11444
v:wayland_display	eval.txt	line 11445
v:windowid	eval.txt	line 11446
v_!	change.txt	line 11447
v_$	visual.txt	line 11448
v_:	cmdline.txt	line 11449
v_&lt;	change.txt	line 11450
v_&lt;BS&gt;	change.txt	line 11451
v_&lt;Del&gt;	change.txt	line 11452
v_&lt;Esc&gt;	visual.txt	line 11453
v_=	change.txt	line 11454
v_&gt;	change.txt	line 11455
v_C	change.txt	line 11456
v_CTRL-A	change.txt	line 11457
v_CTRL-C	visual.txt	line 11458
v_CTRL-G	visual.txt	line 11459
v_CTRL-H	change.txt	line 11460
v_CTRL-O	visual.txt	line 11461
v_CTRL-R	visual.txt	line 11462
v_CTRL-V	visual.txt	line 11463
v_CTRL-X	change.txt	line 11464
v_CTRL-Z	starting.txt	line 11465
v_CTRL-\_CTRL-G	intro.txt	line 11466
v_CTRL-\_CTRL-N	intro.txt	line 11467
v_CTRL-]	tagsrch.txt	line 11468
v_D	change.txt	line 11469
v_J	change.txt	line 11470
v_K	various.txt	line 11471
v_O	visual.txt	line 11472
v_P	change.txt	line 11473
v_R	change.txt	line 11474
v_S	change.txt	line 11475
v_U	change.txt	line 11476
v_V	visual.txt	line 11477
v_X	change.txt	line 11478
v_Y	change.txt	line 11479
v_a	motion.txt	line 11480
v_a'	motion.txt	line 11481
v_a(	motion.txt	line 11482
v_a)	motion.txt	line 11483
v_a&lt;	motion.txt	line 11484
v_a&gt;	motion.txt	line 11485
v_aB	motion.txt	line 11486
v_aW	motion.txt	line 11487
v_a[	motion.txt	line 11488
v_a]	motion.txt	line 11489
v_a`	motion.txt	line 11490
v_ab	motion.txt	line 11491
v_ap	motion.txt	line 11492
v_aquote	motion.txt	line 11493
v_as	motion.txt	line 11494
v_at	motion.txt	line 11495
v_aw	motion.txt	line 11496
v_a{	motion.txt	line 11497
v_a}	motion.txt	line 11498
v_b_&lt;	visual.txt	line 11499
v_b_&lt;_example	visual.txt	line 11500
v_b_&gt;	visual.txt	line 11501
v_b_&gt;_example	visual.txt	line 11502
v_b_A	visual.txt	line 11503
v_b_A_example	visual.txt	line 11504
v_b_C	visual.txt	line 11505
v_b_D	change.txt	line 11506
v_b_I	visual.txt	line 11507
v_b_I_example	visual.txt	line 11508
v_b_c	visual.txt	line 11509
v_b_r	visual.txt	line 11510
v_b_r_example	visual.txt	line 11511
v_c	change.txt	line 11512
v_d	change.txt	line 11513
v_g?	change.txt	line 11514
v_gF	editing.txt	line 11515
v_gJ	change.txt	line 11516
v_gN	visual.txt	line 11517
v_gV	visual.txt	line 11518
v_g]	tagsrch.txt	line 11519
v_g_CTRL-A	change.txt	line 11520
v_g_CTRL-G	editing.txt	line 11521
v_g_CTRL-X	change.txt	line 11522
v_g_CTRL-]	tagsrch.txt	line 11523
v_gf	editing.txt	line 11524
v_gn	visual.txt	line 11525
v_gq	change.txt	line 11526
v_gv	visual.txt	line 11527
v_gw	change.txt	line 11528
v_i	motion.txt	line 11529
v_i'	motion.txt	line 11530
v_i(	motion.txt	line 11531
v_i)	motion.txt	line 11532
v_i&lt;	motion.txt	line 11533
v_i&gt;	motion.txt	line 11534
v_iB	motion.txt	line 11535
v_iW	motion.txt	line 11536
v_i[	motion.txt	line 11537
v_i]	motion.txt	line 11538
v_i`	motion.txt	line 11539
v_ib	motion.txt	line 11540
v_ip	motion.txt	line 11541
v_iquote	motion.txt	line 11542
v_is	motion.txt	line 11543
v_it	motion.txt	line 11544
v_iw	motion.txt	line 11545
v_i{	motion.txt	line 11546
v_i}	motion.txt	line 11547
v_o	visual.txt	line 11548
v_object-select	motion.txt	line 11549
v_p	change.txt	line 11550
v_r	change.txt	line 11551
v_s	change.txt	line 11552
v_u	change.txt	line 11553
v_v	visual.txt	line 11554
v_x	change.txt	line 11555
v_y	change.txt	line 11556
v_zy	change.txt	line 11557
v_~	change.txt	line 11558
vab	motion.txt	line 11559
val-variable	eval.txt	line 11560
valgrind	debug.txt	line 11561
values()	builtin.txt	line 11562
var-functions	usr_41.txt	line 11563
variable-categories	vim9.txt	line 11564
variable-scope	eval.txt	line 11565
variable-types	vim9.txt	line 11566
variables	eval.txt	line 11567
variadic-tuple	vim9.txt	line 11568
various	various.txt	line 11569
various-cmds	various.txt	line 11570
various-functions	usr_41.txt	line 11571
various-motions	motion.txt	line 11572
various.txt	various.txt	line 11573
vb.vim	syntax.txt	line 11574
vba	pi_vimball.txt	line 11575
verbose	starting.txt	line 11576
version-5.1	version5.txt	line 11577
version-5.2	version5.txt	line 11578
version-5.3	version5.txt	line 11579
version-5.4	version5.txt	line 11580
version-5.5	version5.txt	line 11581
version-5.6	version5.txt	line 11582
version-5.7	version5.txt	line 11583
version-5.8	version5.txt	line 11584
version-6.1	version6.txt	line 11585
version-6.2	version6.txt	line 11586
version-6.3	version6.txt	line 11587
version-6.4	version6.txt	line 11588
version-7.0	version7.txt	line 11589
version-7.1	version7.txt	line 11590
version-7.2	version7.txt	line 11591
version-7.3	version7.txt	line 11592
version-7.4	version7.txt	line 11593
version-8.0	version8.txt	line 11594
version-8.1	version8.txt	line 11595
version-8.2	version8.txt	line 11596
version-9.0	version9.txt	line 11597
version-9.1	version9.txt	line 11598
version-9.2	version9.txt	line 11599
version-9.3	version9.txt	line 11600
version-variable	eval.txt	line 11601
version4.txt	version4.txt	line 11602
version5.txt	version5.txt	line 11603
version6.txt	version6.txt	line 11604
version7.0	version7.txt	line 11605
version7.1	version7.txt	line 11606
version7.2	version7.txt	line 11607
version7.3	version7.txt	line 11608
version7.4	version7.txt	line 11609
version7.txt	version7.txt	line 11610
version8.0	version8.txt	line 11611
version8.1	version8.txt	line 11612
version8.2	version8.txt	line 11613
version8.txt	version8.txt	line 11614
version9.0	version9.txt	line 11615
version9.1	version9.txt	line 11616
version9.2	version9.txt	line 11617
version9.3	version9.txt	line 11618
version9.txt	version9.txt	line 11619
versionlong-variable	eval.txt	line 11620
vi	intro.txt	line 11621
vi-differences	vi_diff.txt	line 11622
vi-features	vi_diff.txt	line 11623
vi:	options.txt	line 11624
vi_diff.txt	vi_diff.txt	line 11625
vib	motion.txt	line 11626
vietnamese	vietnamese.txt	line 11627
vietnamese-ime_diff	vietnamese.txt	line 11628
vietnamese-intro	vietnamese.txt	line 11629
vietnamese-keymap	vietnamese.txt	line 11630
vietnamese-l10n	vietnamese.txt	line 11631
vietnamese-telex_utf-8	vietnamese.txt	line 11632
vietnamese-viqr_utf-8	vietnamese.txt	line 11633
vietnamese-vni_utf-8	vietnamese.txt	line 11634
vietnamese.txt	vietnamese.txt	line 11635
view	starting.txt	line 11636
view-diffs	diff.txt	line 11637
view-file	starting.txt	line 11638
views-sessions	starting.txt	line 11639
vim-7.4	version7.txt	line 11640
vim-8	version8.txt	line 11641
vim-8.1	version8.txt	line 11642
vim-8.2	version8.txt	line 11643
vim-9	version9.txt	line 11644
vim-9.0	version9.txt	line 11645
vim-9.1	version9.txt	line 11646
vim-9.2	version9.txt	line 11647
vim-9.3	version9.txt	line 11648
vim-additions	vi_diff.txt	line 11649
vim-announce	intro.txt	line 11650
vim-arguments	starting.txt	line 11651
vim-changelog	version8.txt	line 11652
vim-default-editor	gui_w32.txt	line 11653
vim-dev	intro.txt	line 11654
vim-mac	intro.txt	line 11655
vim-modes	intro.txt	line 11656
vim-modes-intro	intro.txt	line 11657
vim-raku	ft_raku.txt	line 11658
vim-script-intro	usr_41.txt	line 11659
vim-script-library	eval.txt	line 11660
vim-script-notation	usr_41.txt	line 11661
vim-security	intro.txt	line 11662
vim-shebang	various.txt	line 11663
vim-tutor-create	pi_tutor.txt	line 11664
vim-tutor-mode	pi_tutor.txt	line 11665
vim-tutor-usage	pi_tutor.txt	line 11666
vim-use	intro.txt	line 11667
vim-variable	eval.txt	line 11668
vim.b	if_lua.txt	line 11669
vim.g	if_lua.txt	line 11670
vim.t	if_lua.txt	line 11671
vim.v	if_lua.txt	line 11672
vim.vim	syntax.txt	line 11673
vim.w	if_lua.txt	line 11674
vim7	version7.txt	line 11675
vim8	version8.txt	line 11676
vim9	vim9.txt	line 11677
vim9-access-modes	vim9class.txt	line 11678
vim9-autoload	vim9.txt	line 11679
vim9-boolean	vim9.txt	line 11680
vim9-class	vim9class.txt	line 11681
vim9-class-type	vim9.txt	line 11682
vim9-classes	vim9.txt	line 11683
vim9-const	vim9.txt	line 11684
vim9-curly	vim9.txt	line 11685
vim9-debug	repeat.txt	line 11686
vim9-declaration	vim9.txt	line 11687
vim9-declarations	usr_41.txt	line 11688
vim9-differences	vim9.txt	line 11689
vim9-enum-type	vim9.txt	line 11690
vim9-enumvalue-type	vim9.txt	line 11691
vim9-export	vim9.txt	line 11692
vim9-false-true	vim9.txt	line 11693
vim9-final	vim9.txt	line 11694
vim9-func-declaration	vim9.txt	line 11695
vim9-func-type	vim9.txt	line 11696
vim9-function-defined-later	vim9.txt	line 11697
vim9-gotchas	vim9.txt	line 11698
vim9-ignored-argument	vim9.txt	line 11699
vim9-import	vim9.txt	line 11700
vim9-interface-type	vim9.txt	line 11701
vim9-lambda	vim9.txt	line 11702
vim9-lambda-arguments	vim9.txt	line 11703
vim9-line-continuation	vim9.txt	line 11704
vim9-literal-dict	vim9.txt	line 11705
vim9-mix	vim9.txt	line 11706
vim9-namespace	vim9.txt	line 11707
vim9-no-dict-function	vim9.txt	line 11708
vim9-no-shorten	vim9.txt	line 11709
vim9-object-type	vim9.txt	line 11710
vim9-partial-declaration	vim9.txt	line 11711
vim9-rationale	vim9.txt	line 11712
vim9-reload	vim9.txt	line 11713
vim9-s-namespace	vim9.txt	line 11714
vim9-scopes	vim9.txt	line 11715
vim9-string-index	vim9.txt	line 11716
vim9-typealias-type	vim9.txt	line 11717
vim9-types	vim9.txt	line 11718
vim9-unpack-ignore	vim9.txt	line 11719
vim9-user-command	vim9.txt	line 11720
vim9-variable-arguments	vim9.txt	line 11721
vim9-white-space	vim9.txt	line 11722
vim9.txt	vim9.txt	line 11723
vim9class.txt	vim9class.txt	line 11724
vim9script	vim9.txt	line 11725
vim_announce	intro.txt	line 11727
vim_dev	intro.txt	line 11728
vim_did_enter-variable	eval.txt	line 11729
vim_did_init-variable	eval.txt	line 11730
vim_mac	intro.txt	line 11731
vim_starting	builtin.txt	line 11732
vim_use	intro.txt	line 11733
vimball	pi_vimball.txt	line 11734
vimball-contents	pi_vimball.txt	line 11735
vimball-extract	pi_vimball.txt	line 11736
vimball-history	pi_vimball.txt	line 11737
vimball-intro	pi_vimball.txt	line 11738
vimball-manual	pi_vimball.txt	line 11739
vimball-windows	pi_vimball.txt	line 11740
vimdev	intro.txt	line 11741
vimdiff	diff.txt	line 11742
vimfiles	options.txt	line 11743
viminfo	starting.txt	line 11744
viminfo-!	options.txt	line 11745
viminfo-&#37;	options.txt	line 11746
viminfo-'	options.txt	line 11747
viminfo-/	options.txt	line 11748
viminfo-:	options.txt	line 11749
viminfo-&lt;	options.txt	line 11750
viminfo-@	options.txt	line 11751
viminfo-c	options.txt	line 11752
viminfo-encoding	starting.txt	line 11753
viminfo-errors	starting.txt	line 11754
viminfo-f	options.txt	line 11755
viminfo-file	starting.txt	line 11756
viminfo-file-marks	starting.txt	line 11757
viminfo-file-name	starting.txt	line 11758
viminfo-h	options.txt	line 11759
viminfo-n	options.txt	line 11760
viminfo-quote	options.txt	line 11761
viminfo-r	options.txt	line 11762
viminfo-read	starting.txt	line 11763
viminfo-read-write	starting.txt	line 11764
viminfo-s	options.txt	line 11765
viminfo-security	starting.txt	line 11766
viminfo-timestamp	starting.txt	line 11767
viminfo-write	starting.txt	line 11768
vimrc	starting.txt	line 11769
vimrc-filetype	usr_05.txt	line 11770
vimrc-intro	usr_05.txt	line 11771
vimrc-option-example	starting.txt	line 11772
vimrc_example.vim	usr_05.txt	line 11773
vimscript-version	eval.txt	line 11774
vimscript-versions	eval.txt	line 11775
vimtutor	usr_01.txt	line 11776
virtcol()	builtin.txt	line 11777
virtcol2col()	builtin.txt	line 11778
virtual-text	textprop.txt	line 11779
visual-block	visual.txt	line 11780
visual-change	visual.txt	line 11781
visual-examples	visual.txt	line 11782
visual-index	index.txt	line 11783
visual-mode	visual.txt	line 11784
visual-operators	visual.txt	line 11785
visual-repeat	visual.txt	line 11786
visual-search	visual.txt	line 11787
visual-start	visual.txt	line 11788
visual-use	visual.txt	line 11789
visual.txt	visual.txt	line 11790
visualmode()	builtin.txt	line 11791
vms	os_vms.txt	line 11792
vms-authors	os_vms.txt	line 11793
vms-changes	os_vms.txt	line 11794
vms-compiling	os_vms.txt	line 11795
vms-deploy	os_vms.txt	line 11796
vms-download	os_vms.txt	line 11797
vms-gui	os_vms.txt	line 11798
vms-notes	os_vms.txt	line 11799
vms-problems	os_vms.txt	line 11800
vms-started	os_vms.txt	line 11801
vms-usage	os_vms.txt	line 11802
vreplace-mode	insert.txt	line 11803
vt100-cursor-keys	term.txt	line 11804
vt100-function-keys	term.txt	line 11805
w	motion.txt	line 11806
w32-clientserver	remote.txt	line 11807
w32-experimental-keycode-trans-strategy	gui_w32.txt	line 11808
w32-xpm-support	gui_w32.txt	line 11809
w:	eval.txt	line 11810
w:current_syntax	syntax.txt	line 11811
w:quickfix_title	quickfix.txt	line 11812
w:var	eval.txt	line 11813
waittime	channel.txt	line 11814
warningmsg-variable	eval.txt	line 11815
wayland	wayland.txt	line 11816
wayland-and-x11	wayland.txt	line 11817
wayland-gui	wayland.txt	line 11818
wayland-persist	wayland.txt	line 11819
wayland-primary-selection	wayland.txt	line 11820
wayland-seat	wayland.txt	line 11821
wayland-selections	wayland.txt	line 11822
wayland-useful	wayland.txt	line 11823
wayland.txt	wayland.txt	line 11824
wayland_display-variable	eval.txt	line 11825
wdl-syntax	syntax.txt	line 11826
wdl.vim	syntax.txt	line 11827
white-space	pattern.txt	line 11828
whitespace	pattern.txt	line 11829
wildcard	editing.txt	line 11830
wildcards	editing.txt	line 11831
wildmenumode()	builtin.txt	line 11832
wildtrigger()	builtin.txt	line 11833
win-scrolled-resized	windows.txt	line 11834
win16	os_win32.txt	line 11835
win32	os_win32.txt	line 11836
win32-!start	gui_w32.txt	line 11837
win32-PATH	os_win32.txt	line 11838
win32-backslashes	os_win32.txt	line 11839
win32-cmdargs	os_win32.txt	line 11840
win32-colors	gui_w32.txt	line 11841
win32-compiling	os_win32.txt	line 11842
win32-curdir	os_win32.txt	line 11843
win32-faq	os_win32.txt	line 11844
win32-gettext	mlang.txt	line 11845
win32-gui	gui_w32.txt	line 11846
win32-hidden-menus	gui.txt	line 11847
win32-installer	os_win32.txt	line 11848
win32-mouse	os_win32.txt	line 11849
win32-open-with-menu	gui_w32.txt	line 11850
win32-popup-menu	gui_w32.txt	line 11851
win32-problems	os_win32.txt	line 11852
win32-quotes	os_win32.txt	line 11853
win32-restore	os_win32.txt	line 11854
win32-startup	os_win32.txt	line 11855
win32-term	os_win32.txt	line 11856
win32-term-colors	os_win32.txt	line 11857
win32-vimrun	gui_w32.txt	line 11858
win32-win3.1	os_win32.txt	line 11859
win32-win95	os_win32.txt	line 11860
win32s	os_win32.txt	line 11861
win_execute()	builtin.txt	line 11862
win_findbuf()	builtin.txt	line 11863
win_getid()	builtin.txt	line 11864
win_gettype()	builtin.txt	line 11865
win_gotoid()	builtin.txt	line 11866
win_id2tabwin()	builtin.txt	line 11867
win_id2win()	builtin.txt	line 11868
win_move_separator()	builtin.txt	line 11869
win_move_statusline()	builtin.txt	line 11870
win_screenpos()	builtin.txt	line 11871
win_splitmove()	builtin.txt	line 11872
winbufnr()	builtin.txt	line 11873
wincol()	builtin.txt	line 11874
window	windows.txt	line 11875
window-ID	windows.txt	line 11876
window-contents	intro.txt	line 11877
window-exit	editing.txt	line 11878
window-functions	usr_41.txt	line 11879
window-move-cursor	windows.txt	line 11880
window-moving	windows.txt	line 11881
window-resize	windows.txt	line 11882
window-size	term.txt	line 11883
window-size-functions	usr_41.txt	line 11884
window-tag	windows.txt	line 11885
window-toolbar	gui.txt	line 11886
window-variable	eval.txt	line 11887
windowid	windows.txt	line 11888
windowid-variable	eval.txt	line 11889
windows	windows.txt	line 11890
windows-3.1	os_win32.txt	line 11891
windows-asynchronously	os_win32.txt	line 11892
windows-icon	os_win32.txt	line 11893
windows-intro	windows.txt	line 11894
windows-starting	windows.txt	line 11895
windows.txt	windows.txt	line 11896
windows95	os_win32.txt	line 11897
windows98	os_win32.txt	line 11898
windowsme	os_win32.txt	line 11899
windowsversion()	builtin.txt	line 11900
winheight()	builtin.txt	line 11901
winid	windows.txt	line 11902
winlayout()	builtin.txt	line 11903
winline()	builtin.txt	line 11904
winnr()	builtin.txt	line 11905
winrestcmd()	builtin.txt	line 11906
winrestview()	builtin.txt	line 11907
winsaveview()	builtin.txt	line 11908
winwidth()	builtin.txt	line 11909
word	motion.txt	line 11910
word-count	editing.txt	line 11911
word-motions	motion.txt	line 11912
wordcount()	builtin.txt	line 11913
workbench	starting.txt	line 11914
workshop	workshop.txt	line 11915
workshop-support	workshop.txt	line 11916
workshop.txt	workshop.txt	line 11917
wrap-off	intro.txt	line 11918
write-compiler-plugin	usr_51.txt	line 11919
write-device	editing.txt	line 11920
write-fail	editing.txt	line 11921
write-filetype-plugin	usr_51.txt	line 11922
write-library-script	usr_52.txt	line 11923
write-local-help	usr_51.txt	line 11924
write-permissions	editing.txt	line 11925
write-plugin	usr_51.txt	line 11926
write-plugin-quickload	usr_52.txt	line 11927
write-quit	editing.txt	line 11928
write-readonly	editing.txt	line 11929
writefile()	builtin.txt	line 11930
writing	editing.txt	line 11931
www	intro.txt	line 11932
x	change.txt	line 11933
x-input-method	mbyte.txt	line 11934
x-resources	version5.txt	line 11935
x11-clientserver	remote.txt	line 11936
x11-cut-buffer	gui_x11.txt	line 11937
x11-selection	gui_x11.txt	line 11938
xattr	editing.txt	line 11939
xdg-base-dir	starting.txt	line 11940
xdg-runtime	starting.txt	line 11941
xdg-vimrc	starting.txt	line 11942
xdg.vim	starting.txt	line 11943
xf86conf.vim	syntax.txt	line 11944
xfontset	mbyte.txt	line 11945
xfree-xterm	syntax.txt	line 11946
xim	mbyte.txt	line 11947
xim-input-style	mbyte.txt	line 11948
xiterm	syntax.txt	line 11949
xml-folding	syntax.txt	line 11950
xml-omni-datafile	insert.txt	line 11951
xml.vim	syntax.txt	line 11952
xor()	builtin.txt	line 11953
xpm.vim	syntax.txt	line 11954
xterm-8-bit	term.txt	line 11955
xterm-8bit	term.txt	line 11956
xterm-blink	syntax.txt	line 11957
xterm-blinking-cursor	syntax.txt	line 11958
xterm-bracketed-paste	term.txt	line 11959
xterm-clipboard	term.txt	line 11960
xterm-codes	term.txt	line 11961
xterm-color	syntax.txt	line 11962
xterm-command-server	term.txt	line 11963
xterm-copy-paste	term.txt	line 11964
xterm-cursor-keys	term.txt	line 11965
xterm-end-home-keys	term.txt	line 11966
xterm-focus-event	term.txt	line 11967
xterm-function-keys	term.txt	line 11968
xterm-kitty	term.txt	line 11969
xterm-modifier-keys	term.txt	line 11970
xterm-mouse	options.txt	line 11971
xterm-mouse-wheel	scroll.txt	line 11972
xterm-resize	term.txt	line 11973
xterm-save-screen	tips.txt	line 11974
xterm-screens	tips.txt	line 11975
xterm-scroll-region	term.txt	line 11976
xterm-shifted-keys	term.txt	line 11977
xterm-terminfo-entries	term.txt	line 11978
xterm-true-color	term.txt	line 11979
y	change.txt	line 11980
yaml.vim	syntax.txt	line 11981
yank	change.txt	line 11982
ye-option-gone	version4.txt	line 11983
year-2000	intro.txt	line 11984
your-runtime-dir	usr_43.txt	line 11985
yy	change.txt	line 11986
z	index.txt	line 11987
z+	scroll.txt	line 11988
z-	scroll.txt	line 11989
z.	scroll.txt	line 11990
z/OS	os_390.txt	line 11991
z&lt;CR&gt;	scroll.txt	line 11992
z&lt;Left&gt;	scroll.txt	line 11993
z&lt;Right&gt;	scroll.txt	line 11994
z=	spell.txt	line 11995
zA	fold.txt	line 11996
zC	fold.txt	line 11997
zD	fold.txt	line 11998
zE	fold.txt	line 11999
zF	fold.txt	line 12000
zG	spell.txt	line 12001
zH	scroll.txt	line 12002
zL	scroll.txt	line 12003
zM	fold.txt	line 12004
zN	fold.txt	line 12005
zN&lt;CR&gt;	scroll.txt	line 12006
zO	fold.txt	line 12007
zOS	os_390.txt	line 12008
zOS-Bugs	os_390.txt	line 12009
zOS-Motif	os_390.txt	line 12010
zOS-PuTTY	os_390.txt	line 12011
zOS-has-ebcdic	os_390.txt	line 12012
zOS-limitations	os_390.txt	line 12013
zOS-open-source	os_390.txt	line 12014
zP	change.txt	line 12015
zR	fold.txt	line 12016
zW	spell.txt	line 12017
zX	fold.txt	line 12018
z^	scroll.txt	line 12019
za	fold.txt	line 12020
zb	scroll.txt	line 12021
zc	fold.txt	line 12022
zd	fold.txt	line 12023
ze	scroll.txt	line 12024
zf	fold.txt	line 12025
zg	spell.txt	line 12026
zh	scroll.txt	line 12027
zi	fold.txt	line 12028
zip	pi_zip.txt	line 12029
zip-contents	pi_zip.txt	line 12030
zip-copyright	pi_zip.txt	line 12031
zip-extension	pi_zip.txt	line 12032
zip-history	pi_zip.txt	line 12033
zip-manual	pi_zip.txt	line 12034
zip-usage	pi_zip.txt	line 12035
zip-x	pi_zip.txt	line 12036
zj	fold.txt	line 12037
zk	fold.txt	line 12038
zl	scroll.txt	line 12039
zm	fold.txt	line 12040
zn	fold.txt	line 12041
zo	fold.txt	line 12042
zp	change.txt	line 12043
zr	fold.txt	line 12044
zs	scroll.txt	line 12045
zsh.vim	syntax.txt	line 12046
zt	scroll.txt	line 12047
zuG	spell.txt	line 12048
zuW	spell.txt	line 12049
zug	spell.txt	line 12050
zuw	spell.txt	line 12051
zv	fold.txt	line 12052
zw	spell.txt	line 12053
zx	fold.txt	line 12054
zy	change.txt	line 12055
zz	scroll.txt	line 12056
{	motion.txt	line 12057
{Visual}	intro.txt	line 12058
{address}	cmdline.txt	line 12059
{arglist}	editing.txt	line 12060
{aupat}	autocmd.txt	line 12061
{bufname}	windows.txt	line 12062
{char1-char2}	intro.txt	line 12063
{event}	autocmd.txt	line 12064
{file}	editing.txt	line 12065
{group-name}	syntax.txt	line 12066
{lhs}	map.txt	line 12067
{motion}	intro.txt	line 12068
{move-around}	visual.txt	line 12069
{offset}	pattern.txt	line 12070
{register}	change.txt	line 12071
{rhs}	map.txt	line 12072
{server}	remote.txt	line 12073
{subject}	helphelp.txt	line 12074
{{{	fold.txt	line 12075
{}	intro.txt	line 12076
}	motion.txt	line 12077
}}}	fold.txt	line 12078
~	change.txt	line 12079
top - main help file