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.
- data/README.markdown +1 -1
- data/lib/vmail.vim +4 -5
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
data/lib/vmail.vim
CHANGED
|
@@ -656,11 +656,10 @@ endfunc
|
|
|
656
656
|
" --------------------------------------------------------------------------------
|
|
657
657
|
" HELP
|
|
658
658
|
func! s:show_help()
|
|
659
|
-
let
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
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
|
|
data/lib/vmail/version.rb
CHANGED