comparison runtime/doc/map.txt @ 10004:8061455d9179

commit https://github.com/vim/vim/commit/818078ddfbb8cc2546f697c5675a251d095722ec Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 27 21:58:42 2016 +0200 Updated runtime files and translations.
author Christian Brabandt <cb@256bit.org>
date Sat, 27 Aug 2016 22:00:08 +0200
parents 35ce559b8553
children 9f48eab77d62
comparison
equal deleted inserted replaced
10003:3aa9bc9ddcbe 10004:8061455d9179
1 *map.txt* For Vim version 7.4. Last change: 2016 Jul 30 1 *map.txt* For Vim version 7.4. Last change: 2016 Aug 26
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
428 (or '|') is considered to be part of {rhs}. This allows the {rhs} to end 428 (or '|') is considered to be part of {rhs}. This allows the {rhs} to end
429 with a space. 429 with a space.
430 430
431 Note: When using mappings for Visual mode, you can use the "'<" mark, which 431 Note: When using mappings for Visual mode, you can use the "'<" mark, which
432 is the start of the last selected Visual area in the current buffer |'<|. 432 is the start of the last selected Visual area in the current buffer |'<|.
433
434 The |:filter| command can be used to select what mappings to list. The
435 pattern is matched against the {lhs} and {rhs} in the raw form.
433 436
434 *:map-verbose* 437 *:map-verbose*
435 When 'verbose' is non-zero, listing a key map will also display where it was 438 When 'verbose' is non-zero, listing a key map will also display where it was
436 last defined. Example: > 439 last defined. Example: >
437 440
1175 the characters in the first two columns are 1178 the characters in the first two columns are
1176 ! Command has the -bang attribute 1179 ! Command has the -bang attribute
1177 " Command has the -register attribute 1180 " Command has the -register attribute
1178 b Command is local to current buffer 1181 b Command is local to current buffer
1179 (see below for details on attributes) 1182 (see below for details on attributes)
1183 The list can be filtered on command name with
1184 |:filter|, e.g., to list all commands with "Pyth" in
1185 the name: >
1186 filter Pyth command
1180 1187
1181 :com[mand] {cmd} List the user-defined commands that start with {cmd} 1188 :com[mand] {cmd} List the user-defined commands that start with {cmd}
1182 1189
1183 *:command-verbose* 1190 *:command-verbose*
1184 When 'verbose' is non-zero, listing a command will also display where it was 1191 When 'verbose' is non-zero, listing a command will also display where it was