... *nod* Makes sense. ... Ignore it, its meaningless :) ... Correct. ... On this line I'm opening the file and executing the commands: source mtime.vim "...
29852
Paul Robins
paul.robins@...
Jul 1, 2002 12:45 pm
(Please forgive me if a second, similar post to the one below appears on this list. I lost up my original posting but I'm still not sure if it survived...
29853
Kontra, Gergely
kgergely@...
Jul 1, 2002 1:11 pm
... Well, this is a separate program, so it could be slow. The builtin input dialog is quicker, and portable (even in console) On the other side, it doesn't...
29854
T o F
mailinglist1@...
Jul 1, 2002 1:45 pm
Hi ! There is something I'm looking for in vim, which is quite useful for syntax IMHO: a line which would delimit the 80th column (or another one if anybody...
29855
David A de Gruyl
david@...
Jul 1, 2002 1:55 pm
* on [02-07-01 09:46] T o F <mailinglist1@...> ... I use: match eightyColumn /\%>80v.*/ or: syn match eightyColumn /\%>80v.*/ the .* highlights...
29856
Armenio Pinto
armenio-p-pinto@...
Jul 1, 2002 2:28 pm
Hi there, I would like to insert the current word in the search text, so, I tried the following: <ESC>/<C-O> But it didn't work... It inserts "<C-O>" as the...
29857
T o F
mailinglist1@...
Jul 1, 2002 2:58 pm
Isn't this the star (*) key ? or hash (#) for reverse ? Tof...
29858
T o F
mailinglist1@...
Jul 1, 2002 3:27 pm
well, thanx, I didn't see this... But if it remove the tabs problem, it's not exactly what I'm looking for... since I want to hilight places where there is no...
29859
Scott LaBounty
slabounty@...
Jul 1, 2002 3:44 pm
Since I've moved to Windows 2000 when I do a :cd /xyz (i.e. I change to a new directory) the directory shown by bash through a :!ls is not the same as the vim...
29860
Bram Moolenaar
Bram@...
Jul 1, 2002 6:14 pm
... Yes, you can set 'foldtext' to suit your need. ... You can close all other folds: "zMzv". But this doesn't display the open fold in another window. That...
29861
Mario Schweigler
ms44@...
Jul 1, 2002 6:56 pm
Hi Paul, I can see, you are an origami guy! ;) I am currently writing some scripts to improve the look and feel of vim folding, so that it looks more like...
29862
Bram Moolenaar
Bram@...
Jul 1, 2002 7:40 pm
... Something like this should work: yank the text in the fold, remember the line numbers ... put the text [... do your edits ...] yank all the text ... put...
29863
Mario Schweigler
ms44@...
Jul 1, 2002 8:04 pm
... I do it differently in my script (soon available): I first thought of doing it like you described, but it seemed too messy and too dangerous to me. Now I...
29864
Benji Fisher
fisherbb@...
Jul 1, 2002 8:22 pm
... I am surprised that ... does not generate an error (although I can confirm that it does not). Does it do anything? --Benji Fisher...
29865
Benji Fisher
fisherbb@...
Jul 1, 2002 8:29 pm
What is the problem with tabs? --Benji Fisher...
29866
Mikolaj Machowski
mikmach@...
Jul 1, 2002 10:04 pm
... All official (accepted by Bram) vimtutor translations are available in official vim distribution either in main package or in extra language package. Main...
29867
Benji Fisher
fisherbb@...
Jul 1, 2002 11:57 pm
... Here is a stab in the dark. Maybe the W2K shell has something like a .cshrc file that makes every new (interactive?) shell start up in the home directory?...
29868
Andre Pang
ozone@...
Jul 2, 2002 8:21 am
... Sorry, I meant 'set <Ins>="*y' works, as does 'set <S-Ins>="*y', but 'set <C-Ins>="*y' does not. (That'll teach me to abbreviate things next time!) -- ...
29869
Benji Fisher
fisherbb@...
Jul 2, 2002 12:25 pm
... My question remains: what, if anything, does this do? AFAIK, there is no <Ins> option in vim. ... BTW, I am guessing that you are typing <Ins> literally...
29870
Antoine J. Mechelynck
antoine.mechelynck@...
Jul 2, 2002 2:41 pm
Isn't this in the same category with ":set t_xx=value" (define what code the keyboard sends when you press t_xx)? Tony. ... From: "Benji Fisher"...
29871
Walter Usyk
wusyk@...
Jul 2, 2002 4:02 pm
I have a Solaris 2.8 OS and I'm trying to compile a gvim version of vim 6.1. I was successful for HP 10.20 with just running the './configure' which created...
29872
Colin Keith
vim@...
Jul 2, 2002 4:15 pm
... ./configure uses --with-gui=auto by default: openbox% ( cd /usr/local/src/vim61/ ; ./configure --help ) |grep gui --enable-gui[=OPTS] X11 GUI...
29873
Antoine J. Mechelynck
antoine.mechelynck@...
Jul 2, 2002 4:23 pm
On some platforms you can use a single executable and it will try to start in the GUI if it's called "vim -g" or "gvim" so you can setup a symlink from gvim to...
29874
Douglas L . Potts
pottsdl@...
Jul 2, 2002 4:32 pm
... Yes, this is the case. And if you run 'make install', it will set it up this way for you. HTH, -Doug -- ...
29875
P. Alejandro Lopez-Va...
dradul@...
Jul 2, 2002 4:42 pm
... From: "Walter Usyk" <wusyk@...> To: <vim@...> Sent: Tuesday, July 02, 2002 11:07 AM Subject: Trying to compile vim and gvim on Solaris ...
29876
Preben Peppe Guldberg
c928400@...
Jul 2, 2002 5:09 pm
... Seems like a good guess. Is it true (anyone?)? ... If this does anything worth while, it clears whatever this <Ins> option is as the '"*y' is a comment in...
29877
Yegappan Lakshmanan
yegappan@...
Jul 2, 2002 5:19 pm
Hi all, How do I search for words that are repeated consecutively more than once? For example, search for "the the" or "a a", etc. Note that the word is an...
29878
Scott LaBounty
slabounty@...
Jul 2, 2002 5:26 pm
Yegappan, How about: /\(\<.*\>\) \1 It worked on my 1 example case ;-). Scott LaBounty Nexa Technologies ... From: Yegappan Lakshmanan...
29879
Yegappan Lakshmanan
yegappan@...
Jul 2, 2002 5:35 pm
... Yes. This works. I didn't try using \1 in the search pattern. I didn't realize that the sub-expression \1, \2, etc can be used in the same search pattern....
29880
tmusall@...
Jul 2, 2002 5:42 pm
Yegappan, I'm pretty new to vim script, but I think this one does what you need. -Todd function! DubWordSearch() while 1 normal ye let x = @" normal wye if x...