aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-19 22:02:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-19 22:02:42 +1200
commit22f39d04ab09e2fa10f4c9482f5735a1c928d7e8 (patch)
treef5141f3d28e437958e2a55415361beb61d0a90dd
parentMerge branch 'release/v1.0.0' (diff)
parentBump VERSION (diff)
downloadvim-toggle-flags-22f39d04ab09e2fa10f4c9482f5735a1c928d7e8.tar.gz
vim-toggle-flags-22f39d04ab09e2fa10f4c9482f5735a1c928d7e8.zip
Merge branch 'hotfix/v1.0.1'
* hotfix/v1.0.1: Bump VERSION Correct normal command
-rw-r--r--VERSION2
-rw-r--r--plugin/toggle_flags.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 3eefcb9..7dea76e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.0
+1.0.1
diff --git a/plugin/toggle_flags.vim b/plugin/toggle_flags.vim
index 4157164..a70e204 100644
--- a/plugin/toggle_flags.vim
+++ b/plugin/toggle_flags.vim
@@ -15,7 +15,7 @@ let g:loaded_toggle_flags = 1
" Show an error-highlighted message and beep, but without a real :echoerr
function! s:Error(message)
- execute 'normal! \<Esc>'
+ execute "normal! \<Esc>"
echohl ErrorMsg
echomsg a:message
echohl None