vmail 0.2.7 → 0.2.8
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 +4 -0
- data/lib/vmail/imap_client.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -348,6 +348,10 @@ that contains the current query plus a history of previous vmail search
|
|
|
348
348
|
queries. You can edit any line in this mini-editor and press ENTER to perform
|
|
349
349
|
the query on that line.
|
|
350
350
|
|
|
351
|
+
## Getting help
|
|
352
|
+
|
|
353
|
+
Type `,?` to load all these vmail pointers and tips into a Vim window.
|
|
354
|
+
|
|
351
355
|
## Using vmail with MacVim
|
|
352
356
|
|
|
353
357
|
vmail uses standard Vim by default, but vmail also works with MacVim, but not
|
data/lib/vmail/imap_client.rb
CHANGED
|
@@ -193,7 +193,7 @@ module Vmail
|
|
|
193
193
|
@query = query.join(' ')
|
|
194
194
|
log "uid_search #@query #{limit}"
|
|
195
195
|
@all_uids = reconnect_if_necessary do
|
|
196
|
-
@imap.uid_search(@query)
|
|
196
|
+
log @imap.uid_search(@query)
|
|
197
197
|
end
|
|
198
198
|
uids = @all_uids[-([limit.to_i, @all_uids.size].min)..-1] || []
|
|
199
199
|
res = fetch_headers(uids)
|
data/lib/vmail/version.rb
CHANGED