From 19448ce894eb2c25af150157234b5fc526dc017f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 31 May 2018 10:40:52 +1200 Subject: Spin off mail_mutt Vim plugin --- vim/plugin/mail_mutt.vim | 56 ------------------------------------------------ 1 file changed, 56 deletions(-) delete mode 100644 vim/plugin/mail_mutt.vim (limited to 'vim/plugin') diff --git a/vim/plugin/mail_mutt.vim b/vim/plugin/mail_mutt.vim deleted file mode 100644 index 63cae2f6..00000000 --- a/vim/plugin/mail_mutt.vim +++ /dev/null @@ -1,56 +0,0 @@ -" -" mail_mutt.vim: Start a mutt(1) message with the lines in the given range, -" defaulting to the entire buffer. -" -" Author: Tom Ryder -" License: Same as Vim itself -" -if exists('g:loaded_mail_mutt') || &compatible - finish -endif -if !has('user_commands') - finish -endif -let g:loaded_mail_mutt = 1 - -" Declare function -function! s:MailMutt(start, end) - - " Check we'll have mutt(1) to execute - if !executable('mutt') - echoerr 'mutt not found in $PATH' - finish - endif - - " Create a temporary file - let l:tf = tempname() - - " Write the contents of the buffer to it - let l:range = a:start . ',' . a:end - let l:command = 'write ' . fnameescape(l:tf) - execute l:range . l:command - - " Run mutt(1) with that file as its input - execute '!mutt -i ' . shellescape(l:tf) - -endfunction - -" Create a command to wrap around that function -command -nargs=0 -range=% - \ MailMutt - \ call MailMutt(, ) - -" Mapping to mail current line in normal mode -nnoremap - \ MailMuttLine - \ :.MailMutt - -" Mapping to mail whole buffer in normal mode -nnoremap - \ MailMuttBuffer - \ :%MailMutt - -" Mapping to mail selected lines in visual/select mode -vnoremap - \ MailMuttSelected - \ :MailMutt -- cgit v1.2.3