aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-06 12:51:16 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-06 12:51:16 +1300
commitab305d7ca1eef3ce32afb4e549c07722de8d2264 (patch)
treed441c2656a1bf3f45597f0c38aa3a8ac53b49852 /vim/plugin
parentUse stridx() instead of very-nomagic regex match (diff)
downloaddotfiles-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.vim2
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