diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-19 22:02:42 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-19 22:02:42 +1200 |
commit | 22f39d04ab09e2fa10f4c9482f5735a1c928d7e8 (patch) | |
tree | f5141f3d28e437958e2a55415361beb61d0a90dd | |
parent | Merge branch 'release/v1.0.0' (diff) | |
parent | Bump VERSION (diff) | |
download | vim-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-- | VERSION | 2 | ||||
-rw-r--r-- | plugin/toggle_flags.vim | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 |