aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-15 13:05:56 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-15 13:05:56 +1200
commit4c6224a138eb5a479a462df3f384266bd9cfeffb (patch)
treeb32e8307740d048b87b225b8c924a14dcbaa3925
parentBump VERSION (diff)
parentBump VERSION (diff)
downloadvim-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--VERSION2
-rw-r--r--plugin/toggle_option_flags.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 0d91a54..1d0ba9e 100644
--- a/VERSION
+++ b/VERSION
@@ -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