aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-08-23 09:35:11 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-08-23 09:35:11 +1200
commit389f2da8759cbbcf275798fb1e8c93114fa2dc0c (patch)
treefa81cc6a8e9d6d4b9ef6e0c2108e454c8635c966
parentMerge branch 'release/v1.1.0' (diff)
parentBump VERSION (diff)
downloadvim-diff-prune-389f2da8759cbbcf275798fb1e8c93114fa2dc0c.tar.gz
vim-diff-prune-389f2da8759cbbcf275798fb1e8c93114fa2dc0c.zip
Merge branch 'release/v1.2.0'v1.2.0
* release/v1.2.0: Bump VERSION Use "x" prefix for visual mode mappings, not "v"
-rw-r--r--VERSION2
-rw-r--r--after/ftplugin/diff/prune.vim4
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index 9084fa2..26aaba0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.1.0
+1.2.0
diff --git a/after/ftplugin/diff/prune.vim b/after/ftplugin/diff/prune.vim
index 53e05cb..814d173 100644
--- a/after/ftplugin/diff/prune.vim
+++ b/after/ftplugin/diff/prune.vim
@@ -26,7 +26,7 @@ nnoremap <buffer> <silent> <unique>
let b:undo_ftplugin .= '|nunmap <buffer> <Plug>(DiffPrune)'
" Define visual mode mapping target
-vnoremap <buffer> <silent> <unique>
+xnoremap <buffer> <silent> <unique>
\ <Plug>(DiffPrune)
\ :<C-U>call diff#prune#Prune(visualmode())<CR>
-let b:undo_ftplugin .= '|vunmap <buffer> <Plug>(DiffPrune)'
+let b:undo_ftplugin .= '|xunmap <buffer> <Plug>(DiffPrune)'