aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/diff.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/diff.vim')
-rw-r--r--vim/after/ftplugin/diff.vim9
1 files changed, 6 insertions, 3 deletions
diff --git a/vim/after/ftplugin/diff.vim b/vim/after/ftplugin/diff.vim
index 109b5b49..eecc8b8c 100644
--- a/vim/after/ftplugin/diff.vim
+++ b/vim/after/ftplugin/diff.vim
@@ -15,9 +15,12 @@ let b:undo_ftplugin .= '|nunmap <buffer> {'
\ . '|nunmap <buffer> }'
" Set mappings
-nmap <buffer> <LocalLeader>p <Plug>(DiffPrune)
-xmap <buffer> <LocalLeader>p <Plug>(DiffPrune)
-nmap <buffer> <LocalLeader>pp <Plug>(DiffPrune)_
+nmap <buffer> <LocalLeader>p
+ \ <Plug>(DiffPrune)
+xmap <buffer> <LocalLeader>p
+ \ <Plug>(DiffPrune)
+nmap <buffer> <LocalLeader>pp
+ \ <Plug>(DiffPrune)_
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>p'
\ . '|xunmap <buffer> <LocalLeader>p'
\ . '|nunmap <buffer> <LocalLeader>pp'