vmail 0.4.8 → 0.4.9
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/version.rb +1 -1
- metadata +2 -2
data/lib/vmail.vim
CHANGED
|
@@ -184,7 +184,7 @@ function! s:update()
|
|
|
184
184
|
let command = s:update_command
|
|
185
185
|
echo "checking for new messages. please wait..."
|
|
186
186
|
let res = system(command)
|
|
187
|
-
if
|
|
187
|
+
if len(split(res, "\n", '')) > 0
|
|
188
188
|
setlocal modifiable
|
|
189
189
|
let line = line('$')
|
|
190
190
|
put =res
|
|
@@ -594,6 +594,7 @@ function! s:cancel_compose()
|
|
|
594
594
|
call s:focus_list_window()
|
|
595
595
|
wincmd p
|
|
596
596
|
close!
|
|
597
|
+
normal z.
|
|
597
598
|
endfunction
|
|
598
599
|
|
|
599
600
|
function! s:send_message()
|
data/lib/vmail/version.rb
CHANGED