diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-15 13:05:56 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-15 13:05:56 +1200 |
commit | 4c6224a138eb5a479a462df3f384266bd9cfeffb (patch) | |
tree | b32e8307740d048b87b225b8c924a14dcbaa3925 | |
parent | Bump VERSION (diff) | |
parent | Bump VERSION (diff) | |
download | vim-toggle-flags-4c6224a138eb5a479a462df3f384266bd9cfeffb.tar.gz vim-toggle-flags-4c6224a138eb5a479a462df3f384266bd9cfeffb.zip |
Merge branch 'release/v0.4.0'v0.4.0
* release/v0.4.0:
Bump VERSION
Remove unneeded \m
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | plugin/toggle_option_flags.vim | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -0.3.0 +0.4.0 diff --git a/plugin/toggle_option_flags.vim b/plugin/toggle_option_flags.vim index 0dad325..fe3e83a 100644 --- a/plugin/toggle_option_flags.vim +++ b/plugin/toggle_option_flags.vim @@ -50,7 +50,7 @@ endfunction function! s:Toggle(option, flag, local) " Check for spurious option strings, we don't want to :execute anything funny - if a:option =~# '\m\L' + if a:option =~# '\L' call s:Error('Illegal option name') return 0 endif |