vim how to search for URL -


how search following string in vim?

http://my.url.com/a/b/c 

i've tried (a la no magic)

:/\vhttp://my.url.com/a/b/c 

but gives me:

e492 not editor command: /\vhttp://my.url.com/a/b/c

you think there'd simple way search string literally... i'm not interested in slash escaping every slash, or writing complicated search, because have rapidly search different urls in text file.

i'm not sure why not editor command since don't. simplest way search without having escape slashes use ? instead, e.g.

:?http://my.url.com/a/b/c " or since : not necessary ?http://my.url.com/a/b/c 

this search in other direction, keep in mind


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -