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.
Files changed (3) hide show
  1. data/lib/vmail.vim +2 -2
  2. data/lib/vmail/version.rb +1 -1
  3. 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 = "!" . s:browser_command . ' ' . shellescape(href)
662
- exec command
661
+ let command = s:browser_command . " '" . href . "'"
662
+ call system(command)
663
663
  endfunc
664
664
 
665
665
  " --------------------------------------------------------------------------------
data/lib/vmail/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 1
9
- version: 0.3.1
8
+ - 2
9
+ version: 0.3.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi