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 17969 - 17998 of 138241   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
17969 Fisicaro Horacio
h_fisicaro@... Send Email
Apr 28, 2001
7:50 pm
The solution is simply to put the javac “-Xstdout” option. This option send compiler messages to System.out (by default, compiler messages go to ...
17970 Denis Perelyubskiy
denisp@... Send Email
Apr 28, 2001
11:25 pm
hello, every time i do 'vim -g' in my xterm window, my xterm window is resized to be approximately lines-by-columns (as specified in my .vimrc). this happens...
17971 vipin aravind
vipin.aravind@... Send Email
Apr 29, 2001
10:23 am
hello, I have 2 windows and I open a file in both the windows. I start editing in one window. I save the file from window1 using ... I would like to have...
17972 Jeroen Valcke
jeroen@... Send Email
Apr 29, 2001
10:45 am
Hello, I frequently use vim with the textwidth set to 78. When I typ my text vim wraps it nicely. However when I go back up some lines and I insert some more...
17973 Rex Posadas
rexposadas@... Send Email
Apr 29, 2001
3:08 pm
Hi all, I am using vim on Windows 2000. Is there a way to use a spell checker? thanks. _________________________________________________________________ Get...
17974 Benji Fisher
benji@... Send Email
Apr 29, 2001
3:38 pm
... I find that they stay in sync even without the :w. Are you sure you are really editing the same file in both windows? If so, please be more specific...
17975 Benji Fisher
benji@... Send Email
Apr 29, 2001
3:38 pm
... You can re-indent the paragraph with "gqap" (without the quotes, starting in Normal mode). If you really want vim to re-indent as you type, you can work...
17976 Benji Fisher
benji@... Send Email
Apr 29, 2001
3:40 pm
... http://users.erols.com/astronaut/vim/#Spelling --Benji Fisher...
17977 Erich Hoffmann
ehoff@... Send Email
Apr 29, 2001
5:29 pm
Hello vimmers, is there a function im vim 5.6.70 (debian potato) to get rid of tabs, i.e. convert them into blank spaces, analogous to emacs' "untabify";? I...
17978 Jeroen Valcke
jeroen@... Send Email
Apr 29, 2001
5:40 pm
... gqap works fine. Thanks. But where can I find it. I searched the help files but seems there's nothing there. :help gqap returned nothing. What does the...
17979 Benji Fisher
benji@... Send Email
Apr 29, 2001
5:44 pm
... HTH --Benji Fisher...
17980 Benji Fisher
benji@... Send Email
Apr 29, 2001
5:47 pm
... The gq command reformats a specified region, according to 'textwidth&#39; and so on. The ap indicates the current paragraph. ... --Benji Fisher...
17981 brian
bmedley@... Send Email
Apr 29, 2001
7:23 pm
Hi, I would like to place a command inside of a register and execute it. The command in question is substitute. I am having some difficulties because the...
17982 Gary Johnson
garyjohn@... Send Email
Apr 29, 2001
8:47 pm
... Here are two ways to do it. 1. Type ^V^M instead of just ^M. 2. Type \r instead of ^M. HTH, Gary -- Gary Johnson | Agilent Technologies ...
17983 Rex Posadas
rexposadas@... Send Email
Apr 30, 2001
5:38 am
Hi all, Is there a command to insert the date? thanks in advance. _________________________________________________________________ Get your FREE download of...
17984 vipin aravind
vipin.aravind@... Send Email
Apr 30, 2001
5:43 am
... try :echo strftime("%c") vipin ... From: Rex Posadas <rexposadas@...> To: <vim@...> Sent: Monday, April 30, 2001 10:59 AM Subject: inserting...
17985 Johannes Zellner
johannes@... Send Email
Apr 30, 2001
5:50 am
... in insert mode type <cntrl-r>=strftime("%c") in command mode you can also try (if you're on UNIX) ... you might want to map the former. Something like ...
17986 Jörg Schöppe
joerg.schoeppe@... Send Email
Apr 30, 2001
2:46 pm
In FormalPro (a formal verification tool) I can specify an external editor. This can be used to get an crossreference from a schematic to an netlist (in...
17987 Laurent Duperval
lduperval@... Send Email
Apr 30, 2001
2:55 pm
... See Johannes Zellner's recent announcement about vimclient. L -- Laurent Duperval <mailto:lduperval@...> La simplicité désarmante de mon...
17988 Gary Stainburn
gary.stainburn@... Send Email
Apr 30, 2001
3:08 pm
Hi all, I've got a log file containing approx 10k lines of whicle most are filenames being processed by a batch. These lines have as the 1st character either...
17989 Stefan Roemer
roemer@... Send Email
Apr 30, 2001
3:12 pm
... Try /^[^DL] Best regards Stefan...
17990 Stephen Morley
Stephen.Morley@... Send Email
Apr 30, 2001
3:12 pm
/^[^LD] ... From: Gary Stainburn [mailto:gary.stainburn@...] Sent: Monday, April 30, 2001 11:13 AM To: Vim List Subject: regex search pattern...
17991 Jeroen Valcke
jeroen@... Send Email
Apr 30, 2001
3:20 pm
Hello, I'm editing a (Bourne) shell script with vim. The code is highlighted. However I notice some weird behaviour with the tokens $( Vim puts these in red....
17992 Charles E. Campbell
cec@... Send Email
Apr 30, 2001
6:02 pm
Jeroen Valcke calmly inquired... JV> I'm editing a (Bourne) shell script with vim. The code is highlighted. JV> However I notice some weird behaviour with the...
17993 Jeroen Valcke
jeroen@... Send Email
Apr 30, 2001
7:53 pm
... I get no errors when running this script. Output is: Tomsk:~/bin$ sh testshell.sh i= 1 i= 2 I was unther the impression that the statement i=$(($i+1)) is...
17994 Juergen Salk
juergen.salk@... Send Email
Apr 30, 2001
8:17 pm
... $((...)) is a valid expression in bash. On Linux systems /bin/sh is just a symlink to /bin/bash. On other (commercial) Unix systems /bin/sh is Bourne shell...
17995 Charles E. Campbell
cec@... Send Email
Apr 30, 2001
8:24 pm
... You're not really using a Bourne shell; its probably either pdksh or bash, even if it is named sh. Try putting "let is_kornshell=1" or "let is_bash=1" in...
17996 Leif Hyrne
leifhyrne@... Send Email
Apr 30, 2001
8:39 pm
When I edit a java source file I would like vim to indent the preset autocommand 'set ts=2' on the line after the curly brackets, '{'. I have smartindent and...
17997 Jeroen Valcke
jeroen@... Send Email
Apr 30, 2001
10:06 pm
... Indeed, in the sh.vim file there's a reference too $((...)) on line 115. It should be executed when is_bash is set. However I have the line "let is_bash=1"...
17998 Tom von Schwerdtner
tvon@... Send Email
May 1, 2001
1:45 am
Well, I had no intentions of mailing everyone about my silly little theme, but in the interest of those supporting the holy-wars, and since there *is* a emacs...
Messages 17969 - 17998 of 138241   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