aboutsummaryrefslogtreecommitdiff
path: root/doc/diff_prune.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/diff_prune.txt')
-rw-r--r--doc/diff_prune.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/diff_prune.txt b/doc/diff_prune.txt
index ed1932b..ea7fabb 100644
--- a/doc/diff_prune.txt
+++ b/doc/diff_prune.txt
@@ -19,17 +19,17 @@ This plugin is only available if 'compatible' is not set. It requires Vim 7.0
or newer.
MAPPINGS *diff_prune-mappings*
- *<Plug>DiffPrune*
+ *<Plug>(DiffPrune)*
-A single mapping target name `<Plug>DiffPrune` for normal and visual modes
+A single mapping target name `<Plug>(DiffPrune)` for normal and visual modes
provided. You could put this in your `~/.vimrc` to use `<LocalLeader>p`:
>
augroup vimrc
autocmd!
autocmd FileType diff
- \ nmap <buffer> <LocalLeader>p <Plug>DiffPrune
+ \ nmap <buffer> <LocalLeader>p <Plug>(DiffPrune)
autocmd FileType diff
- \ xmap <buffer> <LocalLeader>p <Plug>DiffPrune
+ \ xmap <buffer> <LocalLeader>p <Plug>(DiffPrune)
augroup END
<
AUTHOR *diff_prune-author*