vmail 1.5.5 → 1.5.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '1.5.5'
2
+ VERSION = '1.5.6'
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 5
8
- - 5
9
- version: 1.5.5
8
+ - 6
9
+ version: 1.5.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi