vmail 0.2.4 → 0.2.5

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
@@ -116,8 +116,8 @@ In the split view, you can jump between the two panes by just pressing ENTER
116
116
  from either window.
117
117
  You can also use the standard Vim key sequence `C-w C-w`.
118
118
 
119
- You can also use `<C-p>` and `<C-n>` from either window to show the previous or
120
- next message.
119
+ You can use `<C-j>` or `,j` from either split window to show the next message.
120
+ You can use `<C-k>` or `,k` to show the previous message.
121
121
 
122
122
  vmail loads a certain number messages at a time, starting with the most recent.
123
123
  If there are more messages that vmail hasn't loaded, you'll see a line at the
@@ -50,7 +50,7 @@ module Vmail
50
50
  end
51
51
  log "selecting mailbox #{mailbox.inspect}"
52
52
  reconnect_if_necessary do
53
- @imap.select(mailbox)
53
+ log @imap.select(mailbox)
54
54
  end
55
55
  @mailbox = mailbox
56
56
  @all_uids = []
data/lib/vmail/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 4
9
- version: 0.2.4
8
+ - 5
9
+ version: 0.2.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi