X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/65a4107e36354156d74ba5001400e3c23fd504b7..d9c2f3a6974308eebace858b251af04d00238ee2:/.vim/ftplugin/mail.vim diff --git a/.vim/ftplugin/mail.vim b/.vim/ftplugin/mail.vim index 147c776..0431526 100644 --- a/.vim/ftplugin/mail.vim +++ b/.vim/ftplugin/mail.vim @@ -1,34 +1,14 @@ -nmap :w:%!~/.bin/mail/mailplate --keep-unknown official -nmap :w:%!~/.bin/mail/mailplate --keep-unknown private -nmap :w:%!~/.bin/mail/mailplate --keep-unknown debian -nmap :w:%!~/.bin/mail/mailplate --keep-unknown ul -nmap :w:%!~/.bin/mail/mailplate --keep-unknown uzh -nmap :w:%!~/.bin/mail/mailplate --keep-unknown sudetia -nmap :w:%!~/.bin/mail/mailplate --auto --keep-unknown 2>/dev/null - -" Checking attachments in edited emails for use in Mutt: warns user when -" exiting -" by Hugo Haas - 20 June 2004 -" based on an idea by The Doctor What explained at -" -" http://www.vim.org/scripts/download_script.php?src_id=3165 -autocmd BufUnload mutt-* call CheckAttachments() -function! CheckAttachments() - let l:english = 'attach\(ing\|ed\|ment\)\?\|included with this mail' - let l:french = 'attach\(e\|er\|ée\?s\?\|ement\|ant\)' - let l:german = 'an\(gehängt\|hängsel\|bei\)\|bei\(gefügt|lage\)\|\(im\|siehe\)\_sanhang' - let l:ic = &ignorecase - if (l:ic == 0) - set ignorecase - endif - if (search('^\([^>|].*\)\?\<\(re-\?\)\?\('.l:english.'\|'.l:german.'\)\>', "w") != 0) - let l:temp = inputdialog("Do you want to attach a file? [Hit return] ") - endif - if (l:ic == 0) - set noignorecase - endif - echo -endfunction +nmap :w:%!mailplate --keep-unknown official +nmap :w:%!mailplate --keep-unknown tahi +nmap :w:%!mailplate --keep-unknown pmvm +nmap :w:%!mailplate --keep-unknown pobox +nmap :w:%!mailplate --keep-unknown debian +nmap :w:%!mailplate --keep-unknown debconf +nmap :w:%!mailplate --keep-unknown uniwh +nmap :w:%!mailplate --keep-unknown mtfk +nmap :w:%!mailplate --keep-unknown sudetia +nmap :w:%!mailplate --keep-unknown private +nmap :w:%!mailplate --auto --keep-unknown 2>/dev/null " change subject line " Before: Subject: old @@ -73,8 +53,8 @@ set completefunc=LBDBCompleteFn " And this magic by James Vega, which ensures that we only complete with lbdb " on the recipient lines of the mail header. -ino DelegateCompletion(1) -ino DelegateCompletion(0) +inoremap DelegateCompletion(1) +inoremap DelegateCompletion(0) fun! DelegateCompletion(next) if getline('.') =~? '^\%(To\|B\=Cc\):'