vmail 0.3.1 → 0.3.2
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/lib/vmail.vim +2 -2
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/lib/vmail.vim
CHANGED
|
@@ -658,8 +658,8 @@ endfunc
|
|
|
658
658
|
func! s:open_href()
|
|
659
659
|
call search("http:", 'c')
|
|
660
660
|
let href = matchstr(getline(line('.')), 'http\S\+')
|
|
661
|
-
let command =
|
|
662
|
-
|
|
661
|
+
let command = s:browser_command . " '" . href . "'"
|
|
662
|
+
call system(command)
|
|
663
663
|
endfunc
|
|
664
664
|
|
|
665
665
|
" --------------------------------------------------------------------------------
|
data/lib/vmail/version.rb
CHANGED