... 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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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\after92;ftplugin92;help.vim...
130890
Yasuhiro MATSUMOTO
mattn.jp@...
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@...
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@...
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@...
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@...
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@...
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@...
May 9, 2012 2:10 pm
... There is no guitabel option. As Vim help clearly says, in GUI you need to set 'guitablabel39; and in console 'tabline39;. Both work perfectly without any...
130897
Shital
sheetal.tigadoli@...
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@...
May 9, 2012 2:23 pm
... I assume you mean 'guitablabel39; instead of 'guitabel39;. Are you using GUI Vim with GUI tabs enabled? See :help 'guitablabel39; for the requirements, and also...
130899
Shital
sheetal.tigadoli@...
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@...
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@...
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@...
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@...
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@...
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...