comparison runtime/doc/map.txt @ 481:66080ac5dab7 v7.0130

updated for version 7.0130
author vimboss
date Mon, 15 Aug 2005 21:41:48 +0000
parents 9595cf1d80a7
children 6f8b578776ab
comparison
equal deleted inserted replaced
480:bf5ba8a0cdee 481:66080ac5dab7
270 (or '|') is considered to be part of {rhs}. This allows the {rhs} to end 270 (or '|') is considered to be part of {rhs}. This allows the {rhs} to end
271 with a space. 271 with a space.
272 272
273 Note: When using mappings for Visual mode, you can use the "'<" mark, which 273 Note: When using mappings for Visual mode, you can use the "'<" mark, which
274 is the start of the last selected Visual area in the current buffer |'<|. 274 is the start of the last selected Visual area in the current buffer |'<|.
275
276 *:map-verbose*
277 When 'verbose' is non-zero, listing a key map will also display where it was
278 last defined. Example: >
279
280 :verbose map <C-W>*
281 n <C-W>* * <C-W><C-S>*
282 Last set from /home/abcd/.vimrc
283
284 When the map was defined by hand there is no "Last set" message. When the map
285 was defined while executing a function, user command or autocommand, the
286 script in which it was defined is reported.
287 {not available when compiled without the +eval feature}
275 288
276 *map_backslash* 289 *map_backslash*
277 Note that only CTRL-V is mentioned here as a special character for mappings 290 Note that only CTRL-V is mentioned here as a special character for mappings
278 and abbreviations. When 'cpoptions' does not contain 'B', a backslash can 291 and abbreviations. When 'cpoptions' does not contain 'B', a backslash can
279 also be used like CTRL-V. The <> notation can be fully used then |<>|. But 292 also be used like CTRL-V. The <> notation can be fully used then |<>|. But