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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 130881 - 130910 of 137765   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
130910 Marc Weber
marco-oweber@... Send Email
May 10, 2012
2:15 am
... Then search for "Jan Feb Mar" sample. If you need more help tell us. More important: Talk about what you want to do - maybe it already exists. Marc Weber ...
130909 AndyHancock
andymhancock@... Send Email
May 10, 2012
1:49 am
I've been following links on the vim help, google, and vim.org searches for introductory material on the subject. The material I've found seems to assume that...
130908 Krzysztof
krzysztof.kanas@... Send Email
May 9, 2012
10:33 pm
... Thanks for replay. I will try to clarify. First the problem: noremap <C-W>O :echo "You dont want this"<CR> etc. this is to block ... What I mean by that is...
130907 Paul
google01239@... Send Email
May 9, 2012
8:39 pm
... Aha! I knew it was something like that. Thank you for the solution and for the explanation. -- . -- You received this message from the "vim_use" maillist. ...
130906 Benjamin R. Haskell
vim@... Send Email
May 9, 2012
4:35 pm
... You're using :let syntax (which takes a VimL expression) for a :set (which is a command (so, no VimL, no spaces between 'path', '=', etc.)). Either of the...
130905 Paul
google01239@... Send Email
May 9, 2012
4:28 pm
In vimrc, I want to set the path from an environment variable, eg.: set path = '.,' . $SOMEVAR . '/**' So if $SOMEVAR was /foo/bar, I want vim's path to be...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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....
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...
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"...
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...
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...
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...
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()...
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...
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...
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...
Messages 130881 - 130910 of 137765   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

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