aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-24 15:52:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-24 15:52:47 +1200
commitf966411229eae27333166a2e13ff868f1bf2b705 (patch)
tree00081111cf19c8ce5e2c6aa99f94ba514d9c7ca3
parentMerge branch 'release/v0.2.0' (diff)
parentBump VERSION (diff)
downloadvim-colon-operator-f966411229eae27333166a2e13ff868f1bf2b705.tar.gz
vim-colon-operator-f966411229eae27333166a2e13ff868f1bf2b705.zip
Merge branch 'release/v0.3.0'v0.3.0
* release/v0.3.0: Bump VERSION Remove redundant colon
-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,