comparison runtime/doc/map.txt @ 532:7052f11a3dc9

updated for version 7.0150
author vimboss
date Sun, 25 Sep 2005 22:16:38 +0000
parents 52e76e2b5b65
children 862863033fdd
comparison
equal deleted inserted replaced
531:da9142bd190a 532:7052f11a3dc9
1 *map.txt* For Vim version 7.0aa. Last change: 2005 Aug 16 1 *map.txt* For Vim version 7.0aa. Last change: 2005 Sep 22
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
304 that mapping won't get expanded yet, Vim is waiting for another character. 304 that mapping won't get expanded yet, Vim is waiting for another character.
305 If you type a space, then "foo" will get inserted, plus the space. If you 305 If you type a space, then "foo" will get inserted, plus the space. If you
306 type "a", then "bar" will get inserted. 306 type "a", then "bar" will get inserted.
307 {Vi does not allow ambiguous mappings} 307 {Vi does not allow ambiguous mappings}
308 308
309 *map_CTRL_C* 309 *map_CTRL-C*
310 It's not possible to use a CTRL-C in the {lhs}. You just can't map CTRL-C. 310 Using CTRL-C in the {lhs} is possible, but it will only work when Vim is
311 The reason is that CTRL-C must always be available to break a running command. 311 waiting for a key, not when Vim is busy with something. When Vim is busy
312 Exception: When using the GUI version on MS-Windows CTRL-C can be mapped to 312 CTRL-C interrupts/breaks the command.
313 allow a Copy command to the clipboard. Use CTRL-Break to interrupt Vim. 313 When using the GUI version on MS-Windows CTRL-C can be mapped to allow a Copy
314 command to the clipboard. Use CTRL-Break to interrupt Vim.
314 315
315 *map_space_in_lhs* 316 *map_space_in_lhs*
316 To include a space in {lhs} precede it with a CTRL-V (type two CTRL-Vs for 317 To include a space in {lhs} precede it with a CTRL-V (type two CTRL-Vs for
317 each space). 318 each space).
318 *map_space_in_rhs* 319 *map_space_in_rhs*