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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 120532 - 120561 of 137836   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
120532 Tim Chase
vim@... Send Email
Jan 29, 2011
4:22 am
... Eh, for the most part, the t/T/f/F work much like my brain on the matter: "go forward to character X".. The only gotcha is repeated attempt to use t/T...
120533 Chris Jones
cjns1989@... Send Email
Jan 29, 2011
4:28 am
... Yeah.. that's why I love sticking those pseudo-ellipses all over my prose. ... Hehe.. That's the problem about giving examples just to make a point: ...
120534 Ben Schmidt
mail_ben_schmidt@... Send Email
Jan 29, 2011
4:29 am
... Or you can start taking down a receipt number without pushing i, as I did last week. I typed 1011 before realising it hadn't appeared on the screen. So...
120535 meino.cramer@... Send Email Jan 29, 2011
4:43 am
Hi, I want to process a text with script. The text contains of two regions: The first region contains of lines beginning with keyword_a and the second one...
120536 Ben Schmidt
mail_ben_schmidt@... Send Email
Jan 29, 2011
5:20 am
... Try something like ... 0 - from before the beginning of the file /^keyword_a/ - find a line beginning with 'keyword_a' , - and operate until / - we find ^...
120537 meino.cramer@... Send Email Jan 29, 2011
5:30 am
... Hi Ben, GREAT! Thanks a lot! That helps me much! Best regards, mcc -- You received this message from the "vim_use" maillist. Do not top-post! Type your...
120538 AK
andrei.avk@... Send Email
Jan 29, 2011
5:43 am
... I used to do this and really hated it. I'm using ',' as leader for mappings but if you don't, it's much easier, imho, to hit 'fi', then hit ';' as many...
120539 Chris Jones
cjns1989@... Send Email
Jan 29, 2011
6:42 am
... This has a flavor of déja-vu, Tim.. The more I think about it, the more it sounds like it was you who gave out this tip initially.. I thought.. nice.. and...
120540 Anurag Priyam
anurag08priyam@... Send Email
Jan 29, 2011
6:45 am
... Hey Nick, If you are relatively new to vim, I suggest that you start using the inbuilt help (:help) as much as possible. There a couple of plugins that...
120541 Anurag Priyam
anurag08priyam@... Send Email
Jan 29, 2011
6:54 am
... I don't use all of the following, but mentioning some more good ones, so that it kind of documents itself (one could search the archive): 1. FuzzyFinder...
120542 nickatron
ntroast@... Send Email
Jan 29, 2011
6:55 am
Thanks that helps out a lot. -- View this message in context: http://vim.1045645.n5.nabble.com/Starting-out-with-VIM-and-C-tp3361804p3362244.html Sent from the...
120543 meino.cramer@... Send Email Jan 29, 2011
7:19 am
... Hi Ben, ...got some problems here...may be due to a not-so-exact description of what I need... I will try to explain... ;) The file in its original version...
120544 StarWing
weasley_wx@... Send Email
Jan 29, 2011
8:00 am
... it no longer load all file into buffer list. it makes :vim command faster, but now I can not use a single bufdo command to process all these file. how to...
120545 vijay
jahagirdar.vs@... Send Email
Jan 29, 2011
8:29 am
Hi, My compiler produces single line error strings of the form ID Rule Alias Severity File Line Wt...
120546 Marc Weber
marco-oweber@... Send Email
Jan 29, 2011
9:13 am
... You need scanf like expressions. Don't ask me why - this seems to work: set efm=%*[^\ ]%*[\ ]%*[^\ ]%*[\ ]%*[^\ ]%*[\ ]%*[^\ ]%*[\ ]%f\ %l%m match no...
120547 Andy Wokula
anwoku@... Send Email
Jan 29, 2011
9:58 am
... With spaces to make it readable: ... works as follows. Find an odd number of backslashes (one or more): \%( \\ \\ \) * \\ The above will find '\&#92;\&#39; at the...
120548 Andy Wokula
anwoku@... Send Email
Jan 29, 2011
9:59 am
... Unprintable characters basically are control characters ... Tab is a control character - when 'listchars&#39; does not include 'tab:xy&#39;, then tab will be...
120549 Boyko Bantchev
boykobb@... Send Email
Jan 29, 2011
11:35 am
... Nick, Since you are new to C++, you are likely to write mostly single-file console/terminal programs. For this kind of work, I would modestly recommend my...
120550 Christian Brabandt
cblists@... Send Email
Jan 29, 2011
12:40 pm
Hi StarWing! ... Check the QuickfixDo Command at the thread starting here: https://groups.google.com/group/vim_use/msg/6bf83b2c65865532 regards, Christian -- ...
120551 Ben Schmidt
mail_ben_schmidt@... Send Email
Jan 29, 2011
12:58 pm
... Is the 'keyword_a' between 'gnu' and 'noordszki&#39; accidental? Otherwise your sort has not worked, because it should have sorted from that keyword_a all the...
120552 Ben Schmidt
mail_ben_schmidt@... Send Email
Jan 29, 2011
12:58 pm
... Is the 'keyword_a' between 'gnu' and 'noordszki&#39; accidental? Otherwise your sort has not worked, because it should have sorted from that keyword_a all the...
120553 Robert
sigzero@... Send Email
Jan 29, 2011
7:00 pm
Someone on the list pointed me to this: I use StlShowFunc for this; see http://mysite.verizon.net/astronaut/vim/index.html#STLSHOWFUNC I have not used it. I...
120554 Marco
netuse@... Send Email
Jan 29, 2011
9:51 pm
Hi, I have some basic questions about how things work in vim. Is it true that every key command executes a function? Say the key command »%« performed on a...
120555 meino.cramer@... Send Email Jan 30, 2011
1:09 am
... Hi Marco, for those keys, for which is true, that they are mapped to a function call try using ... after entering that press <RETURN> and you will get a...
120556 Colin Beighley
colinbeighley@... Send Email
Jan 30, 2011
3:56 am
Hello, I am wondering if there is a way, using some (range)s/// command, to take 0 : blah blah blah 1 : blah blah blah 2 : blah blah blah . . . 15 : blah blah...
120557 Israel Chauca F.
israelvarios@... Send Email
Jan 30, 2011
4:38 am
... See :h sub-replace-\= Israel -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to....
120558 meino.cramer@... Send Email Jan 30, 2011
6:24 am
Hi, this is a very basic question ... I am currently learning vim scripting. With getline(.) I can get the contents of a line of a buffer. But: i How can I...
120559 Ed Bradford
egbegb2@... Send Email
Jan 30, 2011
9:16 am
I use DropBox. I edit a file on computer "A" and FORGET to exit vim. Now on computer "B", the .swp file prevents me from editing. I know I can ignore and just...
120560 Marco
netuse@... Send Email
Jan 30, 2011
9:26 am
... Thanks. I was aware of this command. But there are just the definded mappings listed, not the basic built-in commands like »%«, »e« or »w«. Marco -- ...
120561 Christian Brabandt
cblists@... Send Email
Jan 30, 2011
9:37 am
Hi meino.cramer! ... Use setline() or first delete its contents and then paste your buffer in there. ... Use the normal dd command or use the :d _ command or...
Messages 120532 - 120561 of 137836   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