vmail 0.4.9 → 0.5.0

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.
Files changed (4) hide show
  1. data/Rakefile +1 -0
  2. data/lib/vmail.vim +1 -1
  3. data/lib/vmail/version.rb +1 -1
  4. metadata +3 -3
data/Rakefile CHANGED
@@ -17,6 +17,7 @@ end
17
17
  desc "git push and rake release bumped version"
18
18
  task :bumped do
19
19
  puts `git commit -a -m'bump' && git push && rake release`
20
+ Rake::Task["web"].execute
20
21
  end
21
22
 
22
23
  desc "Run tests"
@@ -264,7 +264,7 @@ func! s:delete_messages(flag) range
264
264
  " if more than 2 lines change, vim forces us to look at a message.
265
265
  " dismiss it.
266
266
  if nummsgs > 2
267
- call feedkeys("\<cr>")
267
+ " call feedkeys("\<cr>")
268
268
  endif
269
269
  redraw
270
270
  echo nummsgs . " message" . (nummsgs == 1 ? '' : 's') . " marked " . a:flag
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.4.9"
2
+ VERSION = "0.5.0"
3
3
  end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 4
8
- - 9
9
- version: 0.4.9
7
+ - 5
8
+ - 0
9
+ version: 0.5.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi