summaryrefslogtreecommitdiffstats
path: root/runtime/doc/map.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-12-14 21:17:39 +0100
committerBram Moolenaar <Bram@vim.org>2011-12-14 21:17:39 +0100
commitf1568eca24d30d4f308e987657c53cd48d97d8fa (patch)
tree900c802d8096eca43c957c0b3c16cc36cec32e7b /runtime/doc/map.txt
parentf788a0610309ed9787b4e48216c7d7d4446744c5 (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/map.txt')
-rw-r--r--runtime/doc/map.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index 759c90c528..73b79f23dd 100644
--- a/runtime/doc/map.txt
+++ b/runtime/doc/map.txt
@@ -1,4 +1,4 @@
-*map.txt* For Vim version 7.3. Last change: 2011 Oct 12
+*map.txt* For Vim version 7.3. Last change: 2011 Oct 22
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -246,8 +246,8 @@ have these mappings: >
inoremap <expr> <C-L>x "foo"
If you now type CTRL-L nothing happens yet, Vim needs the next character to
decide what mapping to use. If you type 'x' the second mapping is used and
-"foo" is inserted. If you type 'a' the first mapping is used, getchar() gets
-the 'a' and returns it.
+"foo" is inserted. If you type any other key the first mapping is used,
+getchar() gets the typed key and returns it.
Here is an example that inserts a list number that increases: >
let counter = 0