aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/mail.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-23 11:22:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-23 11:22:45 +1200
commitd57502b1c94a8c3d8e82d5664a3eb27adbc37301 (patch)
tree85f1b621516b8d94ad9bb43be9760dd9e4a1e4b2 /vim/after/ftplugin/mail.vim
parentRun repeat blank squeeze on mail reply (diff)
downloaddotfiles-d57502b1c94a8c3d8e82d5664a3eb27adbc37301.tar.gz
dotfiles-d57502b1c94a8c3d8e82d5664a3eb27adbc37301.zip
Correct :return to :break
Diffstat (limited to 'vim/after/ftplugin/mail.vim')
-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 fbe0d3af..15277f7b 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -29,7 +29,7 @@ for lnum in range(1, line('$'))
" Get the leading quote string, if any; stop if there isn't one
let quote = matchstr(line, '^[> \t]\+')
if strlen(quote) == 0
- return
+ break
endif
" Normalise the quote with no intermediate and one trailing space