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.
Files changed (3) hide show
  1. data/lib/vmail.vim +2 -1
  2. data/lib/vmail/version.rb +1 -1
  3. metadata +2 -2
@@ -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 match(res, '^\d\+') != -1
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()
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.4.8"
2
+ VERSION = "0.4.9"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 8
9
- version: 0.4.8
8
+ - 9
9
+ version: 0.4.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi