I have set the Windows Explorer settings (View->Options->FileTypes- ... file extensions, but when I double click on such files I get a blank gvim window. I...
John Kilbourne
jkilbour@...
Jan 1, 2002 10:21 pm
24739
... It's a windows problem (but can appear on unices as well). There are 2 solutions : 1) don't put spaces in the path name! 2) quote the argument (you know...
dman
dsh8290@...
Jan 1, 2002 10:35 pm
24740
The mutt FAQ says How do I tell Mutt not to quote the signature? The suggested method is to tell your editor to do it. For example, uses of the VIM editor...
dman
dsh8290@...
Jan 1, 2002 10:35 pm
24741
... /^$^M^L The first part says to delete a range of lines. The range is given by the two regular expression (separated by the comma). The range starts at...
Maciej Kalisiak
mac@...
Jan 1, 2002 11:06 pm
24742
... "I did nothing but change a little thing and..." say no more. ;-) The '|' separates comamnds on the command line. I suppose that's where it failed now. So...
Sven Guckes
guckes@...
Jan 1, 2002 11:09 pm
24743
... I did put it back, and made my mutt config correspond, but it still didn't work. I've been trying some variants too, but none of them work. I tried...
dman
dsh8290@...
Jan 2, 2002 1:23 am
24744
Hi I have a problem working with gvimDiff in Windows. If I try to do :diffupdate I get an error "Cannot do diff" (those are n ot the exact words. I have done...
amit.taneja@...
Jan 2, 2002 4:08 am
24745
... Where you see "^M", you should type <CTRL-V><CTRL-M>. --...
Ross A. Osborn
rosborn@...
Jan 2, 2002 12:22 pm
24746
... Does your version of Windows have a diff program? If not, this tip may help: http://vim.sourceforge.net/tips/tip.php?tip_id=128 HTH --Benji Fisher...
Benji Fisher
benji@...
Jan 2, 2002 1:57 pm
24747
I don't know if i messed up somehting in doing this, but I do not have a "gvim.exe" "%1" file, just a gvim.exe, which I have set as the executable. How...
John Kilbourne
jkilbour@...
Jan 2, 2002 4:56 pm
24748
Any chance this group could be split into M$ and a *nix groups? ... _____________________________________________________________ Want a new web-based email...
Carson Wilcox
carsonwilcox@...
Jan 2, 2002 5:09 pm
24749
... It seems to me that most questions on this list are OS-independent. Often, people are not sure where a problem comes from, so they mention the OS just to...
Benji Fisher
benji@...
Jan 2, 2002 5:32 pm
24750
... If you leave out that %1, then gvim gets no arguments and doesn't have any clue that you double-clicked on a file or that you want to open it. The %1 is a...
dman
dsh8290@...
Jan 2, 2002 5:36 pm
24751
I am editing text files with a .java extension. I am using vim 6.0. I am using vim (not gvim) with the color support turned on. If I use it without color,...
Schwenk, Jeanie
JSCHWENK@...
Jan 2, 2002 5:48 pm
24752
... I get an error: E32: No file name Any ideas how to fix? I'm using gvim6.0 for win32. Thanks...
Peoter Veliki
peoter_vim@...
Jan 2, 2002 7:17 pm
24753
Okay, I have combed the archives, and I still have a slight problem. I know that I need to make some change to the system to support a color terminal. Does...
TRUCKS, JESSE (AIT)
jt9873@...
Jan 2, 2002 7:41 pm
24754
... What system? What terminal? For Unix, you can usually just download a xterm-xfree86 terminal, compile and run with it. The only problem I've had on HPUX 6...
John Yochum
loki@...
Jan 2, 2002 7:54 pm
24755
The problem, in detail, is this: If I telnet/ssh into the Solaris 8 machine (happens on 2.6, as well), using one of several color enabled terminals (from...
TRUCKS, JESSE (AIT)
jt9873@...
Jan 2, 2002 8:03 pm
24756
Okay, I did finally find it in the archives: Using PuTTY from windows works when you do TERM=dtterm for color support. It does not break lynx displays like...
TRUCKS, JESSE (AIT)
jt9873@...
Jan 2, 2002 8:23 pm
24757
... Oh, cool, 'dtterm' is the magic entry! I've used solaris quite a bit and always hated the lack of color in it's termcap. I even paged through the termcap...
dman
dsh8290@...
Jan 2, 2002 8:46 pm
24758
... According to :he :loadview, :loadview doesn't accept a file name as an argument. It only accepts a number. You should probably use ":source skybook"...
Cory T. Echols
ctechols@...
Jan 2, 2002 11:29 pm
24759
hi, can somebody tell me how to have a vertical split window which would list all the *.cpp files in the driectory and I can move to the...
vipin aravind
vipin.aravind@...
Jan 3, 2002 6:16 am
24760
Hi , could some body tell me how to plugin Vim editor in to other appellations. The intention here is to open the file to be edited in one of the existing ...
Gopal Reddy K
gopal.reddy@...
Jan 3, 2002 7:00 am
24761
Hi vimmers, I am using the builtinfunction "inputdialog" as follows in a function. let n = inputdialog("do u want to proceed? - (Y/N)", &sw) if (n == "Y") ... ...
Raj, Paul
Paul_Raj@...
Jan 3, 2002 7:49 am
24762
... That's the value of vim internal variable 'sw' which is min your case set to '8'. Try: 'echo &sw' to convince yourself. (see ':h shiftwidth'). What you...
Zdenek Sekera
zs@...
Jan 3, 2002 8:27 am
24763
What is your shiftwidth set to? I bet it's 8 and that's precisely what your second argument to inputdialog says. You probably want 'N' or 'Y' instead of &sw. ...
Michael Naumann
mnaumann@...
Jan 3, 2002 8:27 am
24764
Thanks for the clarification.... Paul ... From: Zdenek Sekera [mailto:zs@...] Sent: Thursday, January 03, 2002 4:33 PM To: Raj, Paul Cc: 'vim@...' ...
Raj, Paul
Paul_Raj@...
Jan 3, 2002 8:33 am
24765
... Agreed....
Zdenek Sekera
zs@...
Jan 3, 2002 8:59 am
24766
Hello, I'm also very glad of the below given code and use it with an autocommand when writing a buffer. But one detail is ugly: Because of the "search()" the...
Martin Metz
martin.metz@...
Jan 3, 2002 12:18 pm
24767
... [snip] To do it with marks, see ... If you are doing it from inside a script, and want to avoid using marks (which are global) then look at the Mark()...