vmail 0.8.9 → 0.9.0
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 -2
- data/lib/vmail/imap_client.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/lib/vmail.vim
CHANGED
@@ -84,8 +84,8 @@ function! s:show_message(stay_in_message_list)
|
|
84
84
|
write
|
85
85
|
" this just clears the command line and prevents the screen from
|
86
86
|
" moving up when the next echo statement executes:
|
87
|
-
call feedkeys(":\<cr>")
|
88
|
-
redraw
|
87
|
+
" call feedkeys(":\<cr>")
|
88
|
+
" redraw
|
89
89
|
" substract 2: because lines numbers start at 1 & messages start at line 2
|
90
90
|
let s:current_message_index = line('.') - 2
|
91
91
|
if s:current_message_index < 0
|
data/lib/vmail/imap_client.rb
CHANGED
@@ -425,7 +425,7 @@ module Vmail
|
|
425
425
|
|
426
426
|
#{formatter.process_body}
|
427
427
|
EOF
|
428
|
-
log "storing message_cache[[#{@mailbox}, #{uid}]]"
|
428
|
+
# log "storing message_cache[[#{@mailbox}, #{uid}]]"
|
429
429
|
d = {:mail => mail, :size => size, :message_text => message_text}
|
430
430
|
message_cache[[@mailbox, uid]] = d
|
431
431
|
rescue
|
data/lib/vmail/version.rb
CHANGED