diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-29 09:07:47 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-29 09:07:47 +1200 |
commit | 021da41a8c22fa90b305b5d49ff9a0aea6ee5c78 (patch) | |
tree | 9ebe2931d3dc312b3cbe4db62819c7ed1e8570ad | |
parent | Abbreviate plugin a bit more (diff) | |
download | vim-toggle-flags-021da41a8c22fa90b305b5d49ff9a0aea6ee5c78.tar.gz vim-toggle-flags-021da41a8c22fa90b305b5d49ff9a0aea6ee5c78.zip |
Correct a comment
-rw-r--r-- | autoload/toggle_flags.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/toggle_flags.vim b/autoload/toggle_flags.vim index eba30c2..9483c2c 100644 --- a/autoload/toggle_flags.vim +++ b/autoload/toggle_flags.vim @@ -14,7 +14,7 @@ function! s:Has(option, flag) abort execute 'let 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 + " necessity be a delimited option. I think all of those in Vim script 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 |