aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-23 14:45:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-23 14:45:33 +1200
commitb4c127d40a7acaafd7b94d1901b59da9db0265de (patch)
tree2e0bfed2055b29ba78f0bd714930d26d46719dad
parentMake space appending for quote indent configurable (diff)
downloaddotfiles-b4c127d40a7acaafd7b94d1901b59da9db0265de.tar.gz
dotfiles-b4c127d40a7acaafd7b94d1901b59da9db0265de.zip
Don't add spaces when quoting mail
-rw-r--r--vim/after/ftplugin/mail.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index e01872d6..39999075 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -1,3 +1,7 @@
+" Don't append spaces after quote chars, for strict compliance with
+" format=flowed
+let b:quote_space = 0
+
" If something hasn't already moved the cursor, we'll move to an optimal point
" to start writing
if line('.') == 1 && col('.') == 1