Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 131759 - 131788 of 137733   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
131759 ping
songpingemail@... Send Email
Jun 14, 2012
9:18 pm
hi Chris, thanks for quick response. yes I didn't say it clear. actually the latter as you mentioned is exactly what I want: " Or if you want to print lines...
131760 andy richer
andy.richer@... Send Email
Jun 14, 2012
10:05 pm
Hi Vim Guru, I know I can use % to find matching {} or [] or () Is there a way that if I click any of { , } , [ , ], ( , ) without using %; gvim automatically...
131761 Tony Mechelynck
antoine.mechelynck@... Send Email
Jun 14, 2012
11:07 pm
... Normally if the cursor is on one of {}[]() its mate (if inside the current window) is highlighted automatically; this is contingent on the matchparen.vim...
131762 Tony Mechelynck
antoine.mechelynck@... Send Email
Jun 15, 2012
2:25 am
... I wonder where these two underscores come from; I didn't type them. ... I don't know about matchparen++ but matchparen.vim ought to have been installed...
131763 Ben Fritz
fritzophrenic@... Send Email
Jun 15, 2012
2:39 am
... Thank you for finally being precise. Now we can answer your question. First, is there any way you can stop using the obnoxiously formatted HTML emails? The...
131764 ping
songpingemail@... Send Email
Jun 15, 2012
3:39 am
hi Ben: thanks for the answer and explanation. sorry about the html email - I didn't notice that and I think I just set it up to text emails only. Please do...
131765 Tony Mechelynck
antoine.mechelynck@... Send Email
Jun 15, 2012
4:14 am
... [...] In your range, the range-end can be a search command, see :help [range] For instance, to display any lines which are between <table> and ... This...
131766 ping
songpingemail@... Send Email
Jun 15, 2012
4:16 am
still I'm thinking the exact syntax of this is kind of hard to understand...for my uneducated eyes at least... ... //this means we are "extracting&quot; the matched...
131767 Ben Fritz
fritzophrenic@... Send Email
Jun 15, 2012
4:23 am
... line('$&#39;) won't work for 2 reasons: 1. it's an expression, expressions aren't allowed as commands (but see the :execute command) 2. it refers to the last...
131768 Ben Fritz
fritzophrenic@... Send Email
Jun 15, 2012
4:40 am
... I think you may be confused about what a multi-line match does. The :g command acts on the lines where a pattern matches. A pattern matches at a single...
131769 Tony Mechelynck
antoine.mechelynck@... Send Email
Jun 15, 2012
4:47 am
... the above means "every time there is a match for the pattern between the #. If (as is more usual) it were shown between / it would be ...
131770 Nick Shyrokovskiy
nshyrokovskiy@... Send Email
Jun 15, 2012
4:52 am
Hi. ... and then insert the register in buffer "ap I get only the first line of the result, when screen output is multiline. -- You received this message from...
131771 Christian Brabandt
cblists@... Send Email
Jun 15, 2012
5:33 am
... Do you mean, you see something different, than what is redirected? I can't reproduce this. Or may be you are seeing the issue, that is discussed here: ...
131772 Jürgen Krämer
jottkaerr@... Send Email
Jun 15, 2012
5:53 am
Hi, ... while compiling Borland's command-line compiler outputs the current file and the number of source lines already processed as status information. To...
131773 Nick Shyrokovskiy
nshyrokovskiy@... Send Email
Jun 15, 2012
8:05 am
... I'll give an example. Say initially I have a buffer: --buffer-- a1 a2 ... I'll get and i'll see 2 matched lines in vim output as :g is not silent ...
131774 Jürgen Krämer
jottkaerr@... Send Email
Jun 15, 2012
8:30 am
Hi, ... the :global command takes all following commands and executes them for all matching lines. So what you are seeing here is that :global marks both for ...
131775 Christian Brabandt
cblists@... Send Email
Jun 15, 2012
8:30 am
... Your problem is, the :redir END part is seen as argument to the :g command, that is, for each matching line, the :redir END command is issued and therefore...
131776 Nick Shyrokovskiy
nshyrokovskiy@... Send Email
Jun 15, 2012
9:10 am
Thank you for explanation and suggestion. I really need to :h :bar -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply...
131777 Nick Shyrokovskiy
nshyrokovskiy@... Send Email
Jun 15, 2012
10:00 am
... where ^@ is one character, it's newline and it's inserted with C-V C-J -- You received this message from the "vim_use" maillist. Do not top-post! Type your...
131778 Eric Weir
eeweir@... Send Email
Jun 15, 2012
11:14 am
... Now that I've diagnosed the problem, and am no longer generating newlines in the middle of paragraphs, I'd like to use this when I encounter the places...
131779 Frantisek Rysanek
Frantisek.Rysanek@... Send Email
Jun 15, 2012
12:57 pm
... ...etc lots of useful stuff snipped... Thanks a lot for your tips Mr. Fritz, this is going to be useful - someday later if not today. I was wondering if...
131780 Frantisek Rysanek
Frantisek.Rysanek@... Send Email
Jun 15, 2012
1:37 pm
... Yeees! Thanks for your explanation :-) I did have short glitches of thought in that direction, but somehow my attention span wasn't enough to follow up all...
131781 Frantisek Rysanek
Frantisek.Rysanek@... Send Email
Jun 15, 2012
2:20 pm
... I ended up with the following in my makefile: ============= [ Makefile ] ================== BPC=bpc.exe BPC_SED_THERAPY=| sed -e...
131782 ping
songpingemail@... Send Email
Jun 15, 2012
2:54 pm
... [ping] thanks for the literal response, I think I learned a lot from you guys! ... [ping] this I tested, yes it works! still I think ... here we happen to...
131783 Ben Fritz
fritzophrenic@... Send Email
Jun 15, 2012
3:08 pm
... You might be able to do it using a search pattern as the range to a print command. ... But for something this complex I'd probably just write a while loop...
131784 steen
mediapathic@... Send Email
Jun 15, 2012
3:09 pm
Hi folks, I have a deceptively simple and overly broad question. Is there any reasonably way within vim to determine what plugin is attempting to respond to a...
131785 Ben Fritz
fritzophrenic@... Send Email
Jun 15, 2012
3:13 pm
... How on Earth is that better? This is one of the most common uses of the :exe command, and much easier to see what's going on than needing to puzzle out...
131786 Ben Fritz
fritzophrenic@... Send Email
Jun 15, 2012
3:21 pm
... For discussion, we'll assume the ys mapping of surround.vim isn't working. ... This will tell you what the mapping invokes, and also which file set up the...
131787 Taylor Hedberg
tmhedberg@... Send Email
Jun 15, 2012
3:25 pm
Sort of. You can see which script last mapped a given key sequence with `:verbose map`. For instance, if you want to find out where the `ys` mapping from...
131788 Jacobo de Vera
devel@... Send Email
Jun 15, 2012
10:06 pm
... Maybe this topic is as confusing for everybody as it is for me. I've taken a look at some plugins and I have not been able to find any instances of this...
Messages 131759 - 131788 of 137733   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help