aboutsummaryrefslogtreecommitdiff
path: root/plugin/replace_operator.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-29 23:35:42 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-29 23:35:42 +1300
commitcd86574069dfa34fc5843c6bb1dbe425710f85de (patch)
tree97332bc1d09c7cb2a96f13b587f3e2419d9c837d /plugin/replace_operator.vim
parentMerge branch 'hotfix/v1.0.1' (diff)
parentBump VERSION (diff)
downloadvim-replace-operator-cd86574069dfa34fc5843c6bb1dbe425710f85de.tar.gz
vim-replace-operator-cd86574069dfa34fc5843c6bb1dbe425710f85de.zip
Merge branch 'hotfix/v1.0.2' into develop
* hotfix/v1.0.2: Correct active register passing
Diffstat (limited to 'plugin/replace_operator.vim')
-rw-r--r--plugin/replace_operator.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/replace_operator.vim b/plugin/replace_operator.vim
index 982b573..a8cf835 100644
--- a/plugin/replace_operator.vim
+++ b/plugin/replace_operator.vim
@@ -15,6 +15,6 @@ let g:loaded_replace_operator = 1
" Set up mapping
nnoremap <expr> <Plug>(ReplaceOperator)
- \ replace_operator#Map()
+ \ replace_operator#Map(v:register)
xnoremap <expr> <Plug>(ReplaceOperator)
- \ replace_operator#Map()
+ \ replace_operator#Map(v:register)