vmail 2.7.4 → 2.7.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vmail.vim +2 -0
- data/lib/vmail/version.rb +1 -1
- metadata +1 -1
data/lib/vmail.vim
CHANGED
@@ -75,6 +75,7 @@ function! s:create_message_window()
|
|
75
75
|
setlocal buftype=nofile
|
76
76
|
let s:message_window_bufnr = bufnr('%')
|
77
77
|
call s:message_window_mappings()
|
78
|
+
setlocal ft=mail
|
78
79
|
close
|
79
80
|
endfunction
|
80
81
|
|
@@ -629,6 +630,7 @@ func! s:open_compose_window(command)
|
|
629
630
|
"call feedkeys("\<cr>")
|
630
631
|
call s:compose_window_mappings()
|
631
632
|
setlocal completefunc=CompleteContact
|
633
|
+
setlocal ft=mail
|
632
634
|
normal 1G
|
633
635
|
endfunc
|
634
636
|
|
data/lib/vmail/version.rb
CHANGED