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 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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.2.7"
2
+ VERSION = "0.2.8"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 7
9
- version: 0.2.7
8
+ - 8
9
+ version: 0.2.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi