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 71908 - 71937 of 138246   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
71908 Hugo Ahlenius
fraxinus@... Send Email
Aug 1, 2006
7:14 am
Hi, I just upgraded netrw to netrw 103b from Charles Campbell's web-site. Now it seems like opening a directory by just trying to edit it doesn't work, like ...
71909 J.Hofmann@... Send Email Aug 1, 2006
8:35 am
Hello, I don't understand the meaning of <(Local)Leader&gt;. When I set filetype to "mail" (ftplugin mail.vim), how can I execute the mapping to "Quote text by...
71910 Yakov Lerner
iler.ml@... Send Email
Aug 1, 2006
8:50 am
... Yes, via libcall() ( :help libcall()). You can write your own function in a shared lib that will do fork()+exec() without intermediate /bin/sh. However,...
71911 Yakov Lerner
iler.ml@... Send Email
Aug 1, 2006
9:11 am
... Easy. Here's the function that sets buffername without escaping. function! LiteralSetBufferName(name) " we need to escape following chars: $ ` ~ \ % # * ? ...
71912 Robert Cussons
r.cussons@... Send Email
Aug 1, 2006
9:24 am
... Thanks very much to everyone who helped with this, I'm afraid I chickened out in the end and asked the network administrator, he backported a vim 7...
71913 Yakov Lerner
iler.ml@... Send Email
Aug 1, 2006
9:32 am
... Correction. I wanted to write: Here's the function that sets buffername without any metacharacter expansion....
71914 Vigil
vim5632@... Send Email
Aug 1, 2006
9:35 am
... imap <c-e> \ nmap <c-e> \ cmap <c-e> \ These all work for me. -- ....
71915 Robert Cussons
r.cussons@... Send Email
Aug 1, 2006
9:40 am
... A very late reply to this, thanks for the diff mode tip that works great on Linux, I will try it on windows later. The short-cut key works, I had already...
71916 Bill McCarthy
WJMc@... Send Email
Aug 1, 2006
9:48 am
... I have the same setup and had a similar problem after installing the new releases to $vim\vimfiles or ~\vimfiles. Do you still have the distribution copy...
71917 A.J.Mechelynck
antoine.mechelynck@... Send Email
Aug 1, 2006
12:30 pm
... [advertisement snipped] see ... HTH, Tony....
71918 A.J.Mechelynck
antoine.mechelynck@... Send Email
Aug 1, 2006
12:33 pm
... don't forget the initial colon ... Best regards, Tony....
71919 Hugo Ahlenius
fraxinus@... Send Email
Aug 1, 2006
12:52 pm
... Yes I had -- your change did it! Thanks, Hugo...
71920 Bob Hiestand
bob.hiestand@... Send Email
Aug 1, 2006
2:52 pm
... Thanks, Tony. I should provide context for my request. For my cvscommand plugin, which opens new buffers containing the results of CVS operations...
71921 Charles E Campbell Jr
drchip@... Send Email
Aug 1, 2006
2:59 pm
... Be sure to remove all previous installations of netrw. The current version (v103c as of last night) and subsequent vim distributions should no longer have...
71922 David Fishburn
fishburn@... Send Email
Aug 1, 2006
3:21 pm
... I am having a similar issue, but I am using 102 from the main Vim website: http://www.vim.org/scripts/script.php?script_id=1075 ... I don't like modifying...
71923 Charles E Campbell Jr
drchip@... Send Email
Aug 1, 2006
3:34 pm
... Please remove all the older versions of netrw prior to installing the latest versions of netrw. The "Illegal file name" message comes up before netrw has...
71924 Benji Fisher
benji@... Send Email
Aug 1, 2006
9:20 pm
... seems to work. ... HTH --Benji Fisher...
71925 Carlos Liu
about.linux@... Send Email
Aug 2, 2006
1:26 am
Hi, How to put cursor in the middle of screen when replacing words? I have to see the next few lines to know replace or not, but the word always sit in the...
71926 James Hales
jhales.perth@... Send Email
Aug 2, 2006
1:58 am
Hi, When I maximize Gvim in Gnome, the status line is partially hidden by the gnome panel, which is really annoying. This is because of how Vim resizes itself,...
71927 Tien Pham
t.ducpham@... Send Email
Aug 2, 2006
2:11 am
Hi all Is there any key stroke to update content of a currently open file when its content has been changed? Reason for this is that I want to look at my log...
71928 Tim Chase
vim@... Send Email
Aug 2, 2006
2:36 am
... Sounds like you're looking for the 'scrolloff&#39; setting. ... will provide details on this. It allows you to keep a certain number of lines on the screen at...
71929 Benji Fisher
benji@... Send Email
Aug 2, 2006
2:54 am
... I think the simple answer (untested) is to add "containedin=ALL" to your syntax definition. ... Another way to do it is to search for '\chapter&#39; in the...
71930 Peter Hodge
toomuchphp-vim@... Send Email
Aug 2, 2006
3:00 am
Hi Tien, You can use ':e[dit]' to reload the current file. Perhaps you could set up something with an autocommand based on the CursorHold event and reduce the...
71931 Tien Pham
t.ducpham@... Send Email
Aug 2, 2006
3:40 am
Hi Peter Thank you very much for the tip. ":e" works so nicely. I will try out those commands soon. Should I insert them in my vimrc file ? Again, many thanks ...
71932 Tien Pham
t.ducpham@... Send Email
Aug 2, 2006
3:54 am
Hi Peter The refresh command works well. I put my log file name such as "autocmd CursorHold regression.log edit". Even I have a few files open at the same ...
71933 Peter Hodge
toomuchphp-vim@... Send Email
Aug 2, 2006
4:42 am
... Hi Tien, Sorry, it seems I was a little naive with that autocommand I showed you, it doesn't work because CursorHold won't trigger again until you press a...
71934 Tien Pham
t.ducpham@... Send Email
Aug 2, 2006
5:16 am
Hi Peter Thank you very much for your time/help. The previous group of commands works really well for me already. I have enjoyed the convenience it's brought...
71935 Carlos Liu
about.linux@... Send Email
Aug 2, 2006
5:25 am
... That's exactly what I want. Thank you! -- Best Regards Carlos...
71936 Bernd Strohhäcker
b.strohhaecker@... Send Email
Aug 2, 2006
6:24 am
... Hi, try Charles Campell's vis-script: http://www.vim.org/scripts/script.php?script_id=1195 HTH, Bernd...
71937 Dr. Johannes Zellner
johannes@... Send Email
Aug 2, 2006
6:37 am
Hi, having marked a visual block with ctrl-v, I'd like to so a search / replace only in that visual block. E.g. when selecting the right block in: xx xx xx xx ...
Messages 71908 - 71937 of 138246   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