aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-24 15:51:08 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-24 15:51:08 +1200
commitb62afaaea89bcb300b45d3c7667463e08d31e481 (patch)
tree976e507ff9976c0d3b252e475788e963e58e4aaf
parentFirst release (diff)
parentBump VERSION (diff)
downloadvim-colon-operator-b62afaaea89bcb300b45d3c7667463e08d31e481.tar.gz
vim-colon-operator-b62afaaea89bcb300b45d3c7667463e08d31e481.zip
Merge branch 'release/v0.2.0'v0.2.0
* release/v0.2.0: Bump VERSION Remove redundant :normal command
-rw-r--r--VERSION2
-rw-r--r--autoload/colon_operator.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 6e8bf73..0ea3a94 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.1.0
+0.2.0
diff --git a/autoload/colon_operator.vim b/autoload/colon_operator.vim
index 04a099b..5773fa6 100644
--- a/autoload/colon_operator.vim
+++ b/autoload/colon_operator.vim
@@ -4,7 +4,7 @@ function! colon_operator#Operatorfunc(type) abort
if !exists('s:command')
let s:command = input('g:', '', 'command')
endif
- execute 'normal! :''[,'']'.s:command."\<CR>"
+ execute ':''[,'']'.s:command
endfunction
" Clear command so that we get prompted to input it, set operator function,