vim으로 인터넷주소 열어 편집하기

hemosu의 이미지

윈도우10, vim 802 사용자입니다.

빔으로 웹주소를 열때 보통 이렇게 하면 잘 열립니다.
:e https://ko.wikipedia.org/wiki/vim

그런데 웹주소에 ? & % 같은게 섞이면 열지 못하네요.
https://search.daum.net/search?w=tot&q=vim

다음처럼 해보았는데 모두 안됩니다.
:tabe https://search.daum.net/search?w=tot&q=vim
:tabe ‘https://search.daum.net/search?w=tot&q=vim’
:tabe “https://search.daum.net/search?w=tot&q=vim”
:exe “tabe “ . escape(“https://search.daum.net/search?w=tot&q=vim”,’?\&’)
:exe “tabe “ . fnameescape(“https://search.daum.net/search?w=tot&q=vim”)
:exe “tabe “ . shellescape(“https://search.daum.net/search?w=tot&q=vim”)
:exe “tabe “ . shellescape(fnameescape(“https://search.daum.net/search?w=tot&q=vim”))
:exe “tabe “ . fnameescape(shellescape(“https://search.daum.net/search?w=tot&q=vim”))

옵션은 wget입니다.
g:netrw_http_cmd=wget

방법이 있을까요?

Prentice의 이미지

:tabe https://search.daum.net/search\?w=tot\&q=vim
hemosu의 이미지

잘되네요