aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-13 00:01:12 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-13 00:01:23 +1200
commitf2274102f837df619f74c870b225e521854a779c (patch)
tree0f2a545b176c904a465aa4b94ea87ace8e3d7f14 /plugin
parentMerge branch 'hotfix/v1.0.2' into develop (diff)
downloadvim-toggle-flags-f2274102f837df619f74c870b225e521854a779c.tar.gz
vim-toggle-flags-f2274102f837df619f74c870b225e521854a779c.zip
Switch to two-spacing
Diffstat (limited to 'plugin')
-rw-r--r--plugin/toggle_flags.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/toggle_flags.vim b/plugin/toggle_flags.vim
index a70e204..abf21c5 100644
--- a/plugin/toggle_flags.vim
+++ b/plugin/toggle_flags.vim
@@ -29,9 +29,9 @@ function! s:Has(option, flag)
execute 'let l:current = &' . a:option
" If the flag we're toggling is longer than one character, this must by
- " necessity be a delimited option. I think all of those in VimL are
- " comma-separated. Extend the flag and value so that they'll still match at
- " the start and end. Otherwise, use them as-is.
+ " necessity be a delimited option. I think all of those in VimL are
+ " comma-separated. Extend the flag and value so that they'll still match at
+ " the start and end. Otherwise, use them as-is.
if strlen(a:flag) > 1
let l:search_flag = ',' . a:flag . ','
let l:search_value = ',' . l:current . ','