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 0ea3a94..0d91a54 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.2.0
+0.3.0
diff --git a/autoload/colon_operator.vim b/autoload/colon_operator.vim
index 5773fa6..1469e95 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 ':''[,'']'.s:command
+ execute '''[,'']'.s:command
endfunction
" Clear command so that we get prompted to input it, set operator function,