vmail 1.0.2 → 1.0.3
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 +1 -3
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/lib/vmail.vim
CHANGED
@@ -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>
|
data/lib/vmail/version.rb
CHANGED