summaryrefslogtreecommitdiff
path: root/runtime/doc/map.txt
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2012-02-04 21:59:01 +0100
committerBram Moolenaar <bram@vim.org>2012-02-04 21:59:01 +0100
commit83f31dd86e65ec264c3e15ad869b7395013acc15 (patch)
tree40fab7a7eee9f7b57dd5d214fd1813ec000fb420 /runtime/doc/map.txt
parentaf3c4d2ebb46a180056a818c2181d967bff36fa9 (diff)
downloadvim-83f31dd86e65ec264c3e15ad869b7395013acc15.tar.gz
updated for version 7.3.423v7.3.423v7-3-423
Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
Diffstat (limited to 'runtime/doc/map.txt')
-rw-r--r--runtime/doc/map.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index 73b79f23..f117f6fb 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 22
+*map.txt* For Vim version 7.3. Last change: 2012 Feb 02
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -527,7 +527,7 @@ mappings.
<LocalLeader> is just like <Leader>, except that it uses "maplocalleader"
instead of "mapleader". <LocalLeader> is to be used for mappings which are
local to a buffer. Example: >
- :map <LocalLeader>q \DoItNow
+ :map <buffer> <LocalLeader>A oanother line<Esc>
<
In a global plugin <Leader> should be used and in a filetype plugin
<LocalLeader>. "mapleader" and "maplocalleader" can be equal. Although, if