diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-09-27 22:23:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-09-27 22:23:55 +0200 |
commit | 24a98a0eb77245adc50facad8b735b20bfd31a7e (patch) | |
tree | ffdfef4e7528ec317d59463e5ff83d07e466c0d7 /runtime/doc/map.txt | |
parent | 9cf39cc57f63f57b4a335cd25371eb456824f049 (diff) | |
download | vim-git-24a98a0eb77245adc50facad8b735b20bfd31a7e.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/map.txt')
-rw-r--r-- | runtime/doc/map.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index 80e9077bf..2efeb3bc6 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1,4 +1,4 @@ -*map.txt* For Vim version 8.0. Last change: 2017 Sep 17 +*map.txt* For Vim version 8.0. Last change: 2017 Sep 23 VIM REFERENCE MANUAL by Bram Moolenaar @@ -29,7 +29,7 @@ manual. 1. Key mapping *key-mapping* *mapping* *macro* Key mapping is used to change the meaning of typed keys. The most common use -is to define a sequence commands for a function key. Example: > +is to define a sequence of commands for a function key. Example: > :map <F2> a<C-R>=strftime("%c")<CR><Esc> |