vmail 0.6.5 → 0.6.6
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/README.markdown +2 -2
- data/lib/vmail.vim +1 -0
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -246,7 +246,7 @@ split window, etc.) Resume editing. Send by typing `,vs`.
|
|
246
246
|
At any point, you can quit the composition window by typing `q` in normal mode.
|
247
247
|
|
248
248
|
You can also use `vmailsend` from the command line to send a message that
|
249
|
-
you've
|
249
|
+
you've composed with correct headers and saved to a file, like so:
|
250
250
|
|
251
251
|
vmailsend < my_message.txt
|
252
252
|
|
@@ -375,7 +375,7 @@ vmail.
|
|
375
375
|
Note that when vmail uses MacVim, the terminal window in which you invoke vmail
|
376
376
|
will show vmail's logging output while MacVim is running. To quit vmail in
|
377
377
|
MacVim mode, you will have to press CTRL-c in this window to stop the vmail
|
378
|
-
process
|
378
|
+
process after quitting the MacVim app.
|
379
379
|
|
380
380
|
## vmail file byproducts
|
381
381
|
|
data/lib/vmail.vim
CHANGED
@@ -681,6 +681,7 @@ func! s:message_window_mappings()
|
|
681
681
|
nnoremap <silent> <buffer> <Leader>m :call <SID>focus_list_window()<cr>:call <SID>mailbox_window()<CR>
|
682
682
|
nnoremap <silent> <buffer> <Leader>A :call <SID>save_attachments()<cr>
|
683
683
|
nnoremap <silent> <buffer> <Space> :call <SID>maximize_window()<cr>
|
684
|
+
noremap <silent> <buffer> <leader>vp :call <SID>focus_list_window()<cr>:call <SID>append_messages_to_file()<CR>
|
684
685
|
nnoremap <silent> <buffer> <Leader>s :call <SID>focus_list_window()<cr>:call <SID>search_query()<cr>
|
685
686
|
|
686
687
|
endfunc
|
data/lib/vmail/version.rb
CHANGED