X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=vim%2Fnotmuch.vim;h=d7b310c8a07cfa99afb284a8c8ee99d44d5d5028;hp=9109470a9561eba268dcedc20426b59d9d3611da;hb=3d15ed9290013e31a743c20139da16c8ccaa2bb7;hpb=062a73b9312a4df84f61d1c998b365ceed92313b diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 9109470a..d7b310c8 100644 --- a/vim/notmuch.vim +++ b/vim/notmuch.vim @@ -67,7 +67,7 @@ function! s:new_file_buffer(type, fname) ruby $curbuf.init(VIM::evaluate('a:type')) endfunction -function! s:compose_unload() +function! s:on_compose_delete() if b:compose_done return endif @@ -126,7 +126,7 @@ function! s:show_reply() ruby open_reply get_message.mail let b:compose_done = 0 call s:set_map(g:notmuch_compose_maps) - autocmd BufUnload call s:compose_unload() + autocmd BufDelete call s:on_compose_delete() startinsert! endfunction @@ -134,7 +134,7 @@ function! s:compose() ruby open_compose let b:compose_done = 0 call s:set_map(g:notmuch_compose_maps) - autocmd BufUnload call s:compose_unload() + autocmd BufDelete call s:on_compose_delete() startinsert! endfunction