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 130875 - 130904 of 137765   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
130875 lith
minilith@... Send Email
May 8, 2012
8:00 pm
... I wrote a small ruby script that converts a wikia xml dump, which can be downloaded from http://wikistats.wikia.com/v/vi/vim/pages_current.xml.gz, to vim...
130876 Tim Chase
vim@... Send Email
May 8, 2012
8:04 pm
... ...which used the -w flag behind the scenes to track the number of keystrokes. -tim (@gumnos on vimgolf) -- You received this message from the "vim_use"...
130877 richard emberson
richard.emberson@... Send Email
May 8, 2012
10:01 pm
Tim, I finally got to the point in my project where I could tryout your code. In one sense your code was similar to some of my attempts at using the...
130878 Richard
richard.emberson@... Send Email
May 8, 2012
10:08 pm
Well, I spoke too soon. What I wanted was to highlight multiple block with different colors *at the same time* Seems that match only works on a single pattern...
130879 Andrew Long
andrew.long@... Send Email
May 8, 2012
10:11 pm
... You could try generating a random name for each block? or base it off the line/column pairs? Regards, Andy ... -- Andrew Long andrew dot long at mac dot...
130880 richard emberson
richard.emberson@... Send Email
May 8, 2012
10:35 pm
Andy, Have you tried your suggestion? If it works, could you share your code? Richard ... -- Quis custodiet ipsos custodes -- You received this message from...
130881 Gary Johnson
garyjohn@... Send Email
May 8, 2012
10:44 pm
... Use matchadd() instead. Regards, Gary -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
130882 sfosparky
phrawm48@... Send Email
May 8, 2012
10:54 pm
How can I tell VIM that I want it to display line numbering whenever I view a help topic? Of course "set number" (without the quotation marks) in my .vimrc...
130883 sfosparky
phrawm48@... Send Email
May 8, 2012
10:58 pm
How can I tell VIM that I want it to display line numbering whenever I view a help topic? Of course "set number" (without the quotation marks) in my .vimrc...
130884 Tim Chase
vim@... Send Email
May 8, 2012
11:14 pm
... Hopefully made easier by the code I gave which builds up a regexp string that is then simply evaluated, which could instead just be passed to matchadd()...
130885 Thomas Ba
ml@... Send Email
May 8, 2012
11:26 pm
Hi, you could use "set number" in .vim/ftplugin/help.vim regards, Thomas ... -- Zombie processes haunting the computer -- You received this message from the...
130886 sfosparky
phrawm48@... Send Email
May 8, 2012
11:32 pm
I've been trying to figure out how to change how Vim labels tabs. Everywhere I turn for information contains Vim script examples. This has led me to believe...
130887 sfosparky
phrawm48@... Send Email
May 8, 2012
11:36 pm
Thomas: Thanks! I just needed to know where to go. Cheers & thanks 'gain, Rick SFO ... -- You received this message from the "vim_use" maillist. Do not...
130888 richard emberson
richard.emberson@... Send Email
May 8, 2012
11:42 pm
Success ... Tim, note that the leading and trailing '/' (patterns generated by your example code) should not be included. So, folks should modify your "Hi"...
130889 John Beckett
johnb.beckett@... Send Email
May 8, 2012
11:54 pm
... Create the following file, and any missing subdirectories. The file is ~/.vim/after/ftplugin/help.vim (Unix) $HOME\vimfiles&#92;after&#92;ftplugin&#92;help.vim...
130890 Yasuhiro MATSUMOTO
mattn.jp@... Send Email
May 9, 2012
6:20 am
vimgolf is useful to understand -w option. Also you can see b:changedtick (not realy count of keystrokes). Or InsertCharPre maybe helpful to get you want....
130891 sinbad
sinbad.sinbad@... Send Email
May 9, 2012
6:42 am
On May 7, 8:12am, Tony Mechelynck <antoine.mechely...@...> ... i am trying to write a regular expression to search for the c function, the following...
130892 Christian Brabandt
cblists@... Send Email
May 9, 2012
9:27 am
Hi sinbad! ... For me, your regular expression matches just what you want, however it ... 1) What are the 2 | in the first collation for? I think you can leave...
130893 lessthanideal
geoffrey.wood@... Send Email
May 9, 2012
10:34 am
... You've solved your problem, but there's also this tip/plugin which seems to do something similar. http://vim.wikia.com/wiki/VimTip1572 It highlights...
130894 鹏 左
zuopengpeng0123@... Send Email
May 9, 2012
11:03 am
在 2012年5月8星期UTC+8午2时1057秒Tony Mechelynck道: ... OMG, that's too difficult for me to use! Thanks anyway. -- You received...
130895  
zuopengpeng0123@... Send Email
May 9, 2012
11:10 am
201259UTC+84ʱ0024룬lithд ... That's really handy, thank you lith. Regards -- You received this...
130896 Sergey Khorev
sergey.khorev@... Send Email
May 9, 2012
2:10 pm
... There is no guitabel option. As Vim help clearly says, in GUI you need to set 'guitablabel&#39; and in console 'tabline&#39;. Both work perfectly without any...
130897 Shital
sheetal.tigadoli@... Send Email
May 9, 2012
2:23 pm
... yes, there is no such option for gvim, I think the Help from vim user manual will explain this, use without quotes "help guitablabel" and On usage of the...
130898 Ben Fritz
fritzophrenic@... Send Email
May 9, 2012
2:23 pm
... I assume you mean 'guitablabel&#39; instead of 'guitabel&#39;. Are you using GUI Vim with GUI tabs enabled? See :help 'guitablabel&#39; for the requirements, and also...
130899 Shital
sheetal.tigadoli@... Send Email
May 9, 2012
2:37 pm
I wanted to know whether we can make use of variables in key mappings eg: Following is what i'm doing currently nmap <A-1> <Plugin_A with '1' as argument to...
130900 Gary Johnson
garyjohn@... Send Email
May 9, 2012
2:48 pm
... HTH, Gary -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more...
130901 sfosparky
phrawm48@... Send Email
May 9, 2012
3:34 pm
Thanks to all. The good news is that I'm making progress. (And yes, it was just a typo guitabel was guitablabel all along.) OK, per the attached PNG...
130902 Ben Fritz
fritzophrenic@... Send Email
May 9, 2012
3:46 pm
... Thanks for the screenshot, that clears things up. You're correct, %t should only display the tail of the file name, with none of the path. But you're not...
130903 Ben Fritz
fritzophrenic@... Send Email
May 9, 2012
3:49 pm
... Not directly. But you can do something like: let i=0 while i<10 exe 'nmap <A-'.i.'> :call myFunc('.i.')<CR>' let i+=1 endwhile Or use a count to a mapping...
130904 sfosparky
phrawm48@... Send Email
May 9, 2012
4:03 pm
Thanks so much for your help, *particularly* your most recent post. I doubt I would *ever* have figured out that there were GUI and non-GUI tabs. So now I...
Messages 130875 - 130904 of 137765   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