aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-12-30 20:30:58 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-12-30 20:30:58 +1300
commit8383e8e779532b8b8e8fbd0ad12966fccb6ec41f (patch)
treeefff0e407701a979f6e76de21af047da3916e320
parentAdd missing undo for strict quote map defs (diff)
downloaddotfiles-8383e8e779532b8b8e8fbd0ad12966fccb6ec41f.tar.gz
dotfiles-8383e8e779532b8b8e8fbd0ad12966fccb6ec41f.zip
Add trailing commas
-rw-r--r--vim/autoload/mail.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/autoload/mail.vim b/vim/autoload/mail.vim
index bc9bac4a..abed119a 100644
--- a/vim/autoload/mail.vim
+++ b/vim/autoload/mail.vim
@@ -18,7 +18,7 @@ endfunction
function! mail#FlagImportant() abort
call mail#AddHeaderFields({
\ 'Importance': 'High',
- \ 'X-Priority': 1
+ \ 'X-Priority': 1,
\ })
endfunction
@@ -26,7 +26,7 @@ endfunction
function! mail#FlagUnimportant() abort
call mail#AddHeaderFields({
\ 'Importance': 'Low',
- \ 'X-Priority': 5
+ \ 'X-Priority': 5,
\ })
endfunction