vmail 0.8.5 → 0.8.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vmail.vim +3 -3
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/lib/vmail.vim
CHANGED
@@ -743,9 +743,9 @@ func! s:message_window_mappings()
|
|
743
743
|
nmap <silent> <buffer> <leader>3 <leader>#
|
744
744
|
nmap <silent> <buffer> <leader>1 <leader>!
|
745
745
|
|
746
|
-
nnoremap <silent> <buffer> <Leader>b :call <SID>focus_list_window()<cr
|
747
|
-
nnoremap <silent> <buffer> <Leader>B :call <SID>focus_list_window()<cr
|
748
|
-
|
746
|
+
nnoremap <silent> <buffer> <Leader>b :call <SID>focus_list_window()<cr>:call <SID>move_to_mailbox(0)<CR>
|
747
|
+
nnoremap <silent> <buffer> <Leader>B :call <SID>focus_list_window()<cr>:call <SID>move_to_mailbox(1)<CR>
|
748
|
+
|
749
749
|
nnoremap <silent> <buffer> u :call <SID>update()<CR>
|
750
750
|
nnoremap <silent> <buffer> <Leader>m :call <SID>focus_list_window()<cr>:call <SID>mailbox_window()<CR>
|
751
751
|
nnoremap <silent> <buffer> <Leader>A :call <SID>save_attachments()<cr>
|
data/lib/vmail/version.rb
CHANGED