vmail 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/vmail.vim +1 -3
  2. data/lib/vmail/version.rb +1 -1
  3. metadata +2 -2
@@ -225,8 +225,6 @@ endfunc
225
225
 
226
226
  " gets new messages since last update
227
227
  function! s:update()
228
- call s:focus_list_window()
229
- redraw
230
228
  let command = s:update_command
231
229
  echo "checking for new messages. please wait..."
232
230
  let res = system(command)
@@ -783,7 +781,7 @@ func! s:message_window_mappings()
783
781
  nnoremap <silent> <buffer> <Leader>b :call <SID>focus_list_window()<cr>:call <SID>move_to_mailbox(0)<CR>
784
782
  nnoremap <silent> <buffer> <Leader>B :call <SID>focus_list_window()<cr>:call <SID>move_to_mailbox(1)<CR>
785
783
 
786
- nnoremap <silent> <buffer> u :call <SID>update()<CR>
784
+ nnoremap <silent> <buffer> u :call <SID>focus_list_window()<cr>:call <SID>update()<CR>
787
785
  nnoremap <silent> <buffer> <Leader>m :call <SID>focus_list_window()<cr>:call <SID>mailbox_window()<CR>
788
786
  nnoremap <silent> <buffer> <Leader>A :call <SID>save_attachments()<cr>
789
787
  nnoremap <silent> <buffer> <Space> :call <SID>toggle_maximize_window()<cr>
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 2
9
- version: 1.0.2
8
+ - 3
9
+ version: 1.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi