Lines Matching refs:This
25 This is a simple, yet powerful mechanism.
32 This shows how three modes are used. After going to the last line with "G",
35 Notice the use of special keys inside <>. This is called angle bracket
37 itself. This makes the mappings better readable and you can copy and paste
88 This causes <F7> to perform a select block "a{" in operator-pending mode, just
89 like you typed it. This mapping is useful if typing a { on your keyboard is a
107 This is "n" for Normal mode, "i" for Insert mode, etc. A blank is used for a
129 text (this was so in old versions of Vim). This mapping will do it: >
159 When a mapping triggers itself, it will run forever. This can be used to
167 Now you type ",,". This triggers the mapping. It replaces "5.1" with "5.2"
169 next one. The mapping ends in ",,". This triggers the same mapping again,
171 This continues until there is an error. In this case it could be a file
209 separates the two commands. This also means that a | character can't be used
226 This makes the spacebar move a blank-separated word forward.
272 To make a key do nothing, map it to <Nop> (five characters). This will make
444 to a file. This will make that happen: >
477 for you. This triggers the Filetype event. Use this to do something when a
513 as MS-Windows, you still use forward slashes in autocommands. This
525 This will delete all autocommands for the "FileWritePre" event that use the
554 together. This can be used to delete all the autocommands in a certain group,
564 This will do the same as: >
587 This is useful to have one autocommand trigger another one. Example: >
591 This defines an autocommand that is triggered when a new file has been edited.
614 This will make the cursor jump to the last line of *.log files when you start
623 ":normal" command inside an ":execute" command. This also makes it possible
629 This also shows the use of a backslash to break a long command into more
630 lines. This can be used in Vim scripts (not at the command line).