aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-24 11:45:39 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-24 11:45:39 +1200
commit014e440a9ab61b2dfce9ac37dc56391be936648c (patch)
tree8ebd2aac1a6e1e0512c84ab2bd420008c24890e3 /vim/after/ftplugin
parentMerge branch 'release/v4.44.0' into develop (diff)
downloaddotfiles-014e440a9ab61b2dfce9ac37dc56391be936648c.tar.gz
dotfiles-014e440a9ab61b2dfce9ac37dc56391be936648c.zip
Tolerate spaces for final reply move
Diffstat (limited to 'vim/after/ftplugin')
-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 47c82bb6..2e63c449 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -34,7 +34,7 @@ if line('.') == 1 && col('.') == 1
endwhile
" Now move to the first quoted or unquoted blank line
- call search('\m^>\=$', 'c')
+ call search('\m^>\= *$', 'c')
endif