blob: 67b63a6c4af250aa000028c9aedb1b2915c16231 (
plain) (
tree)
|
|
noremap gG :,!abbrevURL<CR>
" Doesn't work because of gh#vim/vim#4738
let g:netrw_browsex_viewer='setsid osurl'
" " This is just temporary workaround until the above issue is truly
" " resolved.
" function! OpenURLUnderCursor()
" let s:uri = expand('<cword>')
" echom "s:uri = " . s:uri
" " let s:uri = matchstr(getline('.'), '[a-z]*(:\/\/\|#)[^ >,;()]*')
" " let s:uri = shellescape(s:uri, 1)
" " echom "s:uri = " . s:uri
" if s:uri != ''
" silent exec "!osurl '".s:uri."'"
" :redraw!
" endif
" endfunction
" nnoremap gx :call OpenURLUnderCursor()<CR>
|