vmail 1.5.5 → 1.5.6
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/README.markdown +4 -0
- data/lib/vmail.vim +2 -2
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -73,6 +73,10 @@ You can omit the password key-value pair if you'd rather not have the password
|
|
73
73
|
saved in the file. In that case, you'll prompted for the password each time you
|
74
74
|
start vmail.
|
75
75
|
|
76
|
+
You can also add an `always_cc:` key-value pair. This will pre-insert
|
77
|
+
whatever email address you specify in the `cc:` line of any email you
|
78
|
+
start composing in vmail.
|
79
|
+
|
76
80
|
If you want to configure vmail with multiple Gmail accounts, [here's how][multiaccount].
|
77
81
|
|
78
82
|
[multiaccount]:https://github.com/danchoi/vmail/wiki/How-can-i-quickly-switch-between-multiple-accounts%3F
|
data/lib/vmail.vim
CHANGED
@@ -61,9 +61,9 @@ endfunction
|
|
61
61
|
function! s:create_message_window()
|
62
62
|
exec "split " . s:message_bufname
|
63
63
|
setlocal modifiable
|
64
|
+
setlocal buftype=nofile
|
64
65
|
let s:message_window_bufnr = bufnr('%')
|
65
66
|
call s:message_window_mappings()
|
66
|
-
write
|
67
67
|
close
|
68
68
|
endfunction
|
69
69
|
|
@@ -101,8 +101,8 @@ function! s:show_message(stay_in_message_list)
|
|
101
101
|
" critical: don't call execute 'normal \<cr>'
|
102
102
|
" call feedkeys("<cr>")
|
103
103
|
1delete
|
104
|
-
write
|
105
104
|
normal 1Gjk
|
105
|
+
set nomodifiable
|
106
106
|
if a:stay_in_message_list
|
107
107
|
call s:focus_list_window()
|
108
108
|
end
|
data/lib/vmail/version.rb
CHANGED