vmail 0.5.5 → 0.5.6

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.
@@ -353,7 +353,7 @@ the query on that line.
353
353
 
354
354
  ## Getting help
355
355
 
356
- Type `,?` to load all these vmail pointers and tips into a Vim window.
356
+ Type `,?` will open this webpage in a browser.
357
357
 
358
358
  ## Using vmail with MacVim
359
359
 
@@ -656,11 +656,10 @@ endfunc
656
656
  " --------------------------------------------------------------------------------
657
657
  " HELP
658
658
  func! s:show_help()
659
- let helpfile = system(s:show_help_command)
660
- exec "split " . helpfile
661
- setlocal nomodifiable
662
- setlocal buftype=nofile
663
- nnoremap <silent> <buffer> q :close<cr>
659
+ let command = s:browser_command . ' ' . shellescape('http://danielchoi.com/software/vmail.html')
660
+ call system(command)
661
+ "let helpfile = system(s:show_help_command)
662
+ "exec "split " . helpfile
664
663
  endfunc
665
664
 
666
665
 
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.5.5"
2
+ VERSION = "0.5.6"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 5
9
- version: 0.5.5
8
+ - 6
9
+ version: 0.5.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi