diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-23 14:45:33 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-05-23 14:45:33 +1200 |
commit | b4c127d40a7acaafd7b94d1901b59da9db0265de (patch) | |
tree | 2e0bfed2055b29ba78f0bd714930d26d46719dad | |
parent | Make space appending for quote indent configurable (diff) | |
download | dotfiles-b4c127d40a7acaafd7b94d1901b59da9db0265de.tar.gz dotfiles-b4c127d40a7acaafd7b94d1901b59da9db0265de.zip |
Don't add spaces when quoting mail
-rw-r--r-- | vim/after/ftplugin/mail.vim | 4 |
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 |