lib/vmail.vim in vmail-0.6.4 vs lib/vmail.vim in vmail-0.6.5

- old
+ new

@@ -633,11 +633,11 @@ " normal z. endif endfunc func! s:open_href() - call search("http:", 'c') - let href = matchstr(getline(line('.')), 'http\S\+') + call search('https\?:', 'c') + let href = matchstr(getline(line('.')), 'https\?:\S\+') let command = s:browser_command . " '" . href . "'" call system(command) endfunc " --------------------------------------------------------------------------------