8 lines
215 B
VimL
8 lines
215 B
VimL
function s:vertopen_url()
|
|
normal! "uyiW
|
|
let mycommand = "reader " . @u
|
|
execute "vertical terminal " . mycommand
|
|
endfunction
|
|
noremap <Plug>vertopen_url : call <SID>vertopen_url()<CR>
|
|
nmap gx <Plug>vertopen_url
|