vmail 1.1.6 → 1.1.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +3 -2
- data/TODO +3 -0
- data/lib/vmail.vim +2 -1
- data/lib/vmail/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -192,8 +192,9 @@ These save you from having to press the SHIFT key in each case.
|
|
192
192
|
|
193
193
|
## Checking for new messages
|
194
194
|
|
195
|
-
To check for new messages in the current mailbox, press `u` in normal
|
196
|
-
|
195
|
+
To check for new messages in the current mailbox, press `u` in normal
|
196
|
+
mode if you're in the message list window or `,u` if you are in the
|
197
|
+
message window. Watch the status line.
|
197
198
|
|
198
199
|
## Switching mailboxes, moving messages, copying messages to another mailbox
|
199
200
|
|
data/TODO
CHANGED
@@ -89,4 +89,7 @@ Thu Dec 23 08:40:57 EST 2010
|
|
89
89
|
* offscreen to the right, and send this over to imap client for any
|
90
90
|
* action.
|
91
91
|
|
92
|
+
------------------------------------------------------------------------
|
93
|
+
Fri Dec 24 10:13:58 EST 2010
|
92
94
|
|
95
|
+
- make contacts groups to add a bunch of contacts at once?
|
data/lib/vmail.vim
CHANGED
@@ -778,7 +778,7 @@ func! s:message_window_mappings()
|
|
778
778
|
nnoremap <silent> <buffer> <Leader>b :call <SID>focus_list_window()<cr>:call <SID>move_to_mailbox(0)<CR>
|
779
779
|
nnoremap <silent> <buffer> <Leader>B :call <SID>focus_list_window()<cr>:call <SID>move_to_mailbox(1)<CR>
|
780
780
|
|
781
|
-
nnoremap <silent> <buffer> u :call <SID>focus_list_window()<cr>:call <SID>update()<CR>
|
781
|
+
nnoremap <silent> <buffer> <Leader>u :call <SID>focus_list_window()<cr>:call <SID>update()<CR>
|
782
782
|
nnoremap <silent> <buffer> <Leader>m :call <SID>focus_list_window()<cr>:call <SID>mailbox_window()<CR>
|
783
783
|
nnoremap <silent> <buffer> <Leader>A :call <SID>save_attachments()<cr>
|
784
784
|
nnoremap <silent> <buffer> <Space> :call <SID>toggle_maximize_window()<cr>
|
@@ -808,6 +808,7 @@ func! s:message_list_window_mappings()
|
|
808
808
|
"open a link browser (os x)
|
809
809
|
" autocmd CursorMoved <buffer> :redraw!
|
810
810
|
noremap <silent> <buffer> <leader>vp :call <SID>append_messages_to_file()<CR>
|
811
|
+
nnoremap <silent> <buffer> <Leader>u :call <SID>update()<CR>
|
811
812
|
noremap <silent> <buffer> u :call <SID>update()<CR>
|
812
813
|
noremap <silent> <buffer> <Leader>s :call <SID>search_query()<CR>
|
813
814
|
noremap <silent> <buffer> <Leader>m :call <SID>mailbox_window()<CR>
|
data/lib/vmail/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
8
|
+
- 7
|
9
|
+
version: 1.1.7
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Daniel Choi
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-12-
|
17
|
+
date: 2010-12-24 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|