aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,