diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-10 01:55:15 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-10 01:56:49 +1200 |
commit | f36ef6745c3c96914eb7be228125c1d53bf70287 (patch) | |
tree | a42fc40eafc296b522071d60d754eb3c83ffece7 /vim/after/ftplugin/diff.vim | |
parent | Add explicit group to ftdetect rule (diff) | |
download | dotfiles-f36ef6745c3c96914eb7be228125c1d53bf70287.tar.gz dotfiles-f36ef6745c3c96914eb7be228125c1d53bf70287.zip |
Overhaul after/ftplugin
Use .= operator to append to b:undo_ftplugin, as we're requiring Vim 7.0
or later everywhere here anyway. Also remove &compatible where we don't
need line breaks.
Diffstat (limited to 'vim/after/ftplugin/diff.vim')
-rw-r--r-- | vim/after/ftplugin/diff.vim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vim/after/ftplugin/diff.vim b/vim/after/ftplugin/diff.vim index 5b0e7b31..1e2bb2f8 100644 --- a/vim/after/ftplugin/diff.vim +++ b/vim/after/ftplugin/diff.vim @@ -1,5 +1,5 @@ " Extra configuration for diffs -if &filetype != 'diff' || &compatible || v:version < 700 +if &filetype !=# 'diff' || v:version < 700 || &compatible finish endif @@ -12,7 +12,6 @@ endif nmap <buffer> <LocalLeader>p <Plug>(DiffPrune) xmap <buffer> <LocalLeader>p <Plug>(DiffPrune) nmap <buffer> <LocalLeader>pp <Plug>(DiffPrune)_ -let b:undo_ftplugin = b:undo_ftplugin - \ . '|nunmap <buffer> <LocalLeader>p' +let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>p' \ . '|xunmap <buffer> <LocalLeader>p' \ . '|nunmap <buffer> <LocalLeader>pp' |