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 20843 - 20872 of 137700   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
20843 bhaskar karambelkar
vkbhaskar@... Send Email
Sep 7, 2001
3:51 pm
Can anybody help, Starting make in the src directory. If there are problems, cd to the src directory and run make there cd src && make first make[1]: Entering...
20844 Curtis Jensen
cjensen@... Send Email
Sep 7, 2001
4:14 pm
... Dan, Thanks for the reply. modeline is a nice alternative for what I want. However, I need to change autoindent for any random file I open. The trouble...
20845 Jeff Walker
jwalker@... Send Email
Sep 7, 2001
4:22 pm
I have the same problem with Makefiles, which require hard tabs, but we use spaces for tabs in c code. I don't think there is a way to do this. You could...
20846 Ash Searle
ash@... Send Email
Sep 7, 2001
4:23 pm
Thought I should share this slightly improved version. I don't know how often anyone types "i.e.", or if there are any other latin things like that, but, I...
20847 johann.pfefferl.jp@... Send Email Sep 7, 2001
4:33 pm
Hello, I have written two functions for that. Please keep in mind. I you have a hundreds of buffers the function crashes (At least for vim 5.7)!!! ... After...
20848 Michael Naumann
mnaumann@... Send Email
Sep 7, 2001
5:18 pm
I just compiled and installed vim 6.0au Unfortunatly the problem still exists. Any clues ? Michael ... From: "Bram Moolenaar" <Bram@...> To: "Michael...
20849 Steve Wolfe
nw@... Send Email
Sep 7, 2001
5:43 pm
I realize that this is probably a very FAQ, but I couldn't find much information on it searching the mailing list archives, USENET, or the FAQ. If I've just...
20850 Stefano Lacaprara
Stefano.Lacaprara@... Send Email
Sep 7, 2001
5:45 pm
Hi! a quick and dirty solution is to map all key to number: In your .vimrc map! <CTRL-V><Keypad1> 1 map! <CTRL-V><Keypad2> 2 HTH, Stefano ... -- Stefano...
20851 Sergio Tadini
sergio.tadini@... Send Email
Sep 7, 2001
6:02 pm
Is it possible to use multi-character expressions (ex. BEGIN END) in matchpairs? It should be very useful for languages like "accell" I use! Thanks Sergio...
20852 Stuart, David
D.Stuart@... Send Email
Sep 7, 2001
6:26 pm
I already do this with my .java files and my Makefiles (one uses spaces, the other tabs). I might be missing something, but can't you do the following?: "...
20853 Jeff Walker
jwalker@... Send Email
Sep 7, 2001
6:31 pm
Yes, of course. I've just never bothered. But the rest of my email still stands ;-) -- Jeff Walker MatchLogic, Inc. jwalker@......
20854 Curtis Jensen
cjensen@... Send Email
Sep 7, 2001
6:32 pm
This may work for Jeff's problem. However, my problem is for same file types, using different indentations. ie. one Python file uses tabs another Python file...
20855 darren chamberlain
dlc@... Send Email
Sep 7, 2001
6:37 pm
... My solution is to :retab every file I edit... (darren) -- I must not attend meetings. Meetings are the mind killer. Meetings are the little-death that...
20856 Yegappan Lakshmanan
yega@... Send Email
Sep 7, 2001
6:39 pm
Hi, I am using Vim 6.0au on a Solaris system running the twm window manager. When I tried to start GUI Vim, I get the following message, Testing the X display...
20857 Curtis Jensen
cjensen@... Send Email
Sep 7, 2001
6:47 pm
... Yes, I like this idea too. The rest of the world should do everything as I do. However, in reality, some of the code I work on, is part of different CVS...
20858 Benji Fisher
fisherbb@... Send Email
Sep 7, 2001
7:35 pm
... This can be done with the script matchit.vim . If you are using Vim 6.0 (any beta release, or any alpha release starting with 6.0ao, I think) then it is...
20859 Stuart, David
D.Stuart@... Send Email
Sep 7, 2001
7:53 pm
I think the main problem is that we never know what the author of the original text file intended. Those tabs or spaces that you encounter might be mistakes,...
20860 Scott LaBounty
slabounty@... Send Email
Sep 7, 2001
8:49 pm
I have a couple of files (gs.vim, jcommenter.vim) I'd like sourced when I vim a .java file. Where is the "right" place to put these files? Where should I...
20861 Jeff Walker
jwalker@... Send Email
Sep 7, 2001
8:55 pm
use auto command. ... i.e.: autocmd FileType java so gs.vim autocmd FileType java so jcommenter.vim (HTH) -- Jeff Walker MatchLogic, Inc. ...
20862 Scott LaBounty
slabounty@... Send Email
Sep 7, 2001
8:58 pm
Jeff, Thanks but, in what directory should files like these (gs.vim, jcommenter.vim) go? I assume that the autocmd goes into my _vimrc file (yes, no, maybe?). ...
20863 Jeff Walker
jwalker@... Send Email
Sep 7, 2001
9:01 pm
Doesn't matter, put them in your home dir or your vim dir (or both if they are the same place ;-), I recommend the same place as your _vimrc file, that way,...
20864 Denis Perelyubskiy
denisp@... Send Email
Sep 7, 2001
9:10 pm
* Scott LaBounty <slabounty@...> [09-Fri-01 13:57 -0700]: [...snip...] ... [ ..snip.. ] actually, when i was picking place for my files to go into, ...
20865 Bram Moolenaar
Bram@... Send Email
Sep 7, 2001
9:11 pm
... Well, let's call it an "unsupported feature". But it's quite annoying, especially when doing ":help". I'll try to fix it by using the value "help" for...
20866 lwwickla@... Send Email Sep 7, 2001
9:22 pm
Scott, I would suggest that making the files plugins, creating a "java" directory off of your vim\vimfiles&#92;ftplugins directory, and sticking the files in that...
20867 vass D
vassd2000@... Send Email
Sep 7, 2001
9:33 pm
hello, when using vim in full dos mode, how can i change the size of the font? - not only in vim, but the whole dos. Thanks. ...
20868 Scott LaBounty
slabounty@... Send Email
Sep 7, 2001
9:34 pm
First thanks to everyone who set suggestions on the placement of files. I found a decent place to put them and I'll experiment with the plugin idea when I get...
20869 England, Richard
richard_england@... Send Email
Sep 8, 2001
12:34 am
I have a user of vim 5.6 who is getting a set of warning messages that no one else seem to be getting. These occur Only with gvim on Solaris... Warning:...
20870 Alan Schmitt
alan.schmitt@... Send Email
Sep 8, 2001
6:45 am
That'd be great to solve it ... especially since the help shows a session example with an help window that is opened. (a dirty hack to solve it at the moment...
20871 Alan Schmitt
alan.schmitt@... Send Email
Sep 8, 2001
7:00 am
Hi, I've followed the instructions, and everything worked fine except for one little thing: no help entry was added under the LOCAL ADDITIONS section at the...
20872 Thorsten Maerz
torte@... Send Email
Sep 8, 2001
1:18 pm
On Fri, 7 Sep 2001 14:33:30 -0700 (PDT) ... I usually create a "43.com", which calls the BIOS to select a 8x8 pixel font. This will display 43/50 lines on...
Messages 20843 - 20872 of 137700   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