vmail 1.1.0 → 1.1.1
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 -1
- data/lib/vmail/imap_client.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +3 -3
data/lib/vmail.vim
CHANGED
|
@@ -856,7 +856,8 @@ call s:focus_list_window() " to go list window
|
|
|
856
856
|
" send window width
|
|
857
857
|
call system(s:set_window_width_command . winwidth(1))
|
|
858
858
|
|
|
859
|
-
|
|
859
|
+
" TODO complete this feature later. Don't release it half-baked
|
|
860
|
+
" autocmd VimResized <buffer> call system(s:set_window_width_command . winwidth(1))
|
|
860
861
|
|
|
861
862
|
autocmd bufreadpost *.txt call <SID>turn_into_compose_window()
|
|
862
863
|
|
data/lib/vmail/imap_client.rb
CHANGED
|
@@ -136,7 +136,7 @@ module Vmail
|
|
|
136
136
|
reconnect_if_necessary(4) do
|
|
137
137
|
# this is just to prime the IMAP connection
|
|
138
138
|
# It's necessary for some reason before update and deliver.
|
|
139
|
-
log "priming connection
|
|
139
|
+
log "priming connection"
|
|
140
140
|
|
|
141
141
|
res = @imap.fetch(@ids[-1], ["ENVELOPE"])
|
|
142
142
|
if res.nil?
|
data/lib/vmail/version.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 1.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Daniel Choi
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-12-
|
|
17
|
+
date: 2010-12-22 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|