diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-06 12:51:16 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-06 12:51:16 +1300 |
commit | ab305d7ca1eef3ce32afb4e549c07722de8d2264 (patch) | |
tree | d441c2656a1bf3f45597f0c38aa3a8ac53b49852 /vim/plugin | |
parent | Use stridx() instead of very-nomagic regex match (diff) | |
download | dotfiles-ab305d7ca1eef3ce32afb4e549c07722de8d2264.tar.gz dotfiles-ab305d7ca1eef3ce32afb4e549c07722de8d2264.zip |
Correct a comment
This likely got butchered by a wayward search-and-replace.
Diffstat (limited to 'vim/plugin')
-rw-r--r-- | vim/plugin/toggle_option_flag.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/plugin/toggle_option_flag.vim b/vim/plugin/toggle_option_flag.vim index ea7064d4..1d4b11ce 100644 --- a/vim/plugin/toggle_option_flag.vim +++ b/vim/plugin/toggle_option_flag.vim @@ -26,7 +26,7 @@ function! s:Toggle(option, flag, local) \ ? 'setlocal' \ : 'set' - " Horrible :execute to get the option's current current into a variable + " Horrible :execute to get the option's current setting into a variable " (I couldn't get {curly braces} indirection to work) let l:current = '' execute 'let l:current = &' . a:option |