Lines Matching refs:This

8 Vim can be tuned to work like you want it to.  This chapter shows you how to
57 This initializes Vim for new users (as opposed to traditional Vi users). See
69 This chapter only explains the most basic items. For more information on how
81 In this section we will explain the various commands used in this file. This
89 This loads the "defaults.vim" file in the $VIMRUNTIME directory. This sets up
104 This tells Vim to keep a backup copy of a file when overwriting it. But not
108 This also sets the 'undofile' option, if available. This will store the
122 This switches on the 'hlsearch' option, telling Vim to highlight matches with
131 This makes Vim break text to avoid lines getting longer than 78 characters.
133 actually two parts here. "autocmd FileType text" is an autocommand. This
146 This loads the "matchit" plugin if the required features are available.
147 It makes the |%| command more powerful. This is explained at
170 This has to be done in the system vimrc file. See |system-vimrc|. If you
184 This specifies where in Insert mode the <BS> is allowed to delete the
229 This makes typing Esc take effect more quickly. Normally Vim waits a second
253 This defines a key mapping. More about that in the next section. This
254 defines the "Q" command to do formatting with the "gq" operator. This is how
275 This mapping yanks the visually selected text and searches for it in C files.
287 This switches on three very clever mechanisms:
316 Another autocommand. This time it is used after reading any file. The
320 See |line-continuation|. This only works in a Vim script file, not when
327 This adds the ":DiffOrig" command. Use this in a modified buffer to see the
355 <F5> The F5 function key. This is the trigger key that causes the
391 For example, the matchit plugin. This plugin makes the "%" command jump to
401 This works, because when `:packadd` loaded the plugin it also added the
410 2. unpack the archive in that directory. This assumes the top
579 Let us use the "doit.vim" plugin as an example. This plugin comes with
581 directory. This time we will do it from inside Vim. (You may skip some of
626 This opens a new window, with a list of options with a one-line explanation.
654 border. This is what the 'scrolloff' option does, it specifies an offset
687 This doesn't change the text in the file, only the way it is displayed.
693 line. You can change that with the 'whichwrap' option. This sets it to the
698 This allows the <BS> key, when used in the first position of a line, to move
706 This is still only for Normal mode. To let <Left> and <Right> do this in
757 This time a comma is automatically deleted.
770 This does mean there is less room to edit text, thus it's a compromise.