aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-14 19:27:04 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-14 19:27:04 +1200
commit13d56c5d0f0af692914a7f39673da357d6e50213 (patch)
tree19ff243b0cf77fc3ea10e2b44b7b7bf894b5f9cf
parentEnsure only actual quoted mail lines are reshaped (diff)
downloaddotfiles-13d56c5d0f0af692914a7f39673da357d6e50213.tar.gz
dotfiles-13d56c5d0f0af692914a7f39673da357d6e50213.zip
Correct a misleading word in mail ftplugin comment
-rw-r--r--vim/after/ftplugin/mail.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index 260b0363..cba446a3 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -44,7 +44,7 @@ for lnum in range(1, line('$'))
" Get current line
let line = getline(lnum)
- " Get the leading quote string, if any; stop if there isn't one
+ " Get the leading quote string, if any; skip if there isn't one
let quote = matchstr(line, '^>[> ]*')
if strlen(quote) == 0
continue