I have a line of text that looks like this

foo bar http://www.example.com -> baz

I want yank the url part using ex. Anyone have any ideas on how to do this?

To clarify. I want to do something like this :y/http:.*\.com/ from the command line. But that doesn't work.

link|improve this question
feedback

4 Answers

up vote 5 down vote accepted

While on the beginning of a line,

wwviWy

will yank the URL part while not changing the cursor position.


If you want to do it as a command

:execute "normal! wwviWy0"

does the same thing.

link|improve this answer
Perfect, thats exactly what I need. – Matt Peck Nov 22 '11 at 16:50
3  
shorter: 2WyE – Benoit Nov 22 '11 at 17:43
1  
Why :execute instead of :normal! directly? With @Benoit suggestion, it can be as short as :norm! 2WyE – sidyll Nov 22 '11 at 18:06
1  
@ldigas I understand. However the real point of my comment was intended to be the (useless) use of :execute as a "wrapper". You can call :normal directly. :-) – sidyll Nov 22 '11 at 18:33
1  
@sidyll - Oh, yes, you're right about that. I prefer this way, because I don't have to think two case scenarious; with and without escape characters. This way "it just works". – ldigas Nov 22 '11 at 18:49
show 2 more comments
feedback

The URL fits the definition of a WORD, so you can do it with yW when the cursor is at the beginning.

link|improve this answer
Yeah, but how can it be done from the command line. I want to be able to do something like :y/http:.*\.com/ but that doesn't work. – Matt Peck Nov 22 '11 at 16:44
feedback

I would use /http to get at the begining of the URL if I were on a different line, or fh if I were on the same line and then yt (last key is space).

link|improve this answer
The "t " part is generally better expressed as E. – bitmask Nov 22 '11 at 17:21
@bitmask I generally prefer t because it's generic (ie. it's not that I always look for a space), not only word-related. This way I don't have to use 2 different shortcuts or care about word-separators. – draevor Nov 22 '11 at 17:30
feedback
normal /http^v^m^v^mv2fm <Enter>

Where ^v = Ctrl + v and ^m = Enter

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.