vmail 2.7.4 → 2.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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