diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-29 23:29:09 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-29 23:29:09 +1300 |
commit | 5f1f5b9de3d9ab80a0b5ecef4559b88990f42f4a (patch) | |
tree | c8cac5ff8f52c26411c8a49239ca6711555e19e8 /vim/after/ftplugin/diff.vim | |
parent | Remove boilerplate after/ftplugin load guards (diff) | |
download | dotfiles-5f1f5b9de3d9ab80a0b5ecef4559b88990f42f4a.tar.gz dotfiles-5f1f5b9de3d9ab80a0b5ecef4559b88990f42f4a.zip |
Remove double-key mapping shortcuts
I never use these anyway; I'm firmly in the habit of using underscores
to represent the current line these days.
Diffstat (limited to 'vim/after/ftplugin/diff.vim')
-rw-r--r-- | vim/after/ftplugin/diff.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/vim/after/ftplugin/diff.vim b/vim/after/ftplugin/diff.vim index 15682e7b..1813e4b0 100644 --- a/vim/after/ftplugin/diff.vim +++ b/vim/after/ftplugin/diff.vim @@ -28,8 +28,6 @@ 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' |