... <snip> I've added the following lines to my .vimrc, attempting to map '/' and 'n' to your function, relying on the global variable limit_search_scope to...
bill
bill.pursell@...
Jan 1, 2006 9:35 am
64355
Thanks a lot for your input. Now only if it can be converted a perl script, then you could use vim to quickly hack scripts and deploy them anywhere even if ...
Rik Herrin
rikherrin@...
Jan 1, 2006 1:45 pm
64356
Today, the dictionary.com word of the day is... vim! http://dictionary.reference.com/wordoftheday/ ...
Ricardo SIGNES
rjbs-vim@...
Jan 1, 2006 3:50 pm
64357
... Not being a perl user, I'm afraid I don't know much about doing such a translation. However, much of what a vim script does could be translated into a...
Tim Chase
vim@...
Jan 1, 2006 6:20 pm
64358
Thanks a lot Tim. ... __________________________________________ Yahoo! DSL – Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com...
Rik Herrin
rikherrin@...
Jan 1, 2006 7:52 pm
64359
Hi, I want to write a macro which generates me a "java main class template", via ... map <F1> 1GIclass <C-R>% <ESC> " generate a java main class template ... ...
Steve Kreyer
steve.kreyer@...
Jan 1, 2006 10:20 pm
64360
Hello, I'm trying to remove lines in a file that have the word "length". ... But this, as you probably know, leaves a blank line in place of the line that was...
Alessandro
a24@...
Jan 1, 2006 10:46 pm
64361
* Alessandro <a24@...> [2006-01-01T17:44:58] ... You want the command :g, which runs a command on each line that matches a pattern. ... -- rjbs...
Ricardo SIGNES
rjbs-vim@...
Jan 1, 2006 10:49 pm
64362
... -- Best regards, Bill...
Bill McCarthy
WJMc@...
Jan 1, 2006 10:53 pm
64363
... -- Mark...
Mark Woodward
markwoodward@...
Jan 1, 2006 10:54 pm
64364
... Change your <C-R>% <ESC> to <C-R>=expand("%:t:r")<cr><esc> However, you can do the whole thing with something like map <F1> 0put ='class...
Tim Chase
vim@...
Jan 1, 2006 10:55 pm
64365
... I think it is something like ... see ":help expand()" HTH, Tony....
A. J. Mechelynck
antoine.mechelynck@...
Jan 1, 2006 11:08 pm
64366
... Assuming you want to delete the length and width of the room (where "length" is a word) but not the line will be lengthened (where it isn't), you could use...
A. J. Mechelynck
antoine.mechelynck@...
Jan 1, 2006 11:11 pm
64367
Hi, ... Ok expand() was the function I'm looking for. expand('%:r:t') and expand('%<') will do the trick... ... Good tip :) ... Thank you for your help and...
Steve Kreyer
steve.kreyer@...
Jan 2, 2006 12:50 am
64368
How shall I harass you vim weenies today? Let me get a cup of coffee and think about it. I'll be back. (I assume since you won't delete me from the list that I...
Ted Arnold
ta4@...
Jan 2, 2006 12:53 am
64369
... Tim, you are really stupid. You admit being ignorant of perl, then you make the stupid claim that vim scripts can be translated into perl. You ignorant...
Ted Arnold
ta4@...
Jan 2, 2006 1:12 am
64370
... I find it amusing that you weenies are so stupid. Here, Alessandro, cannot figure out a simple task. What an idiot. Sheesh. I see this idiocy is typical...
Ted Arnold
ta4@...
Jan 2, 2006 1:25 am
64371
see you vim weenies again tomorrow. By not deleting my name from your list you weenies are giving me free reign to say whatever I want, Thank you....
Ted Arnold
ta4@...
Jan 2, 2006 1:28 am
64372
... Hey weenie, I can no more delete you from the list than you can delete me. Click on the following links: mailto:vim-unsubscribe@... ...
A. J. Mechelynck
antoine.mechelynck@...
Jan 2, 2006 1:45 am
64373
Does a msg with "delete" as subject work....
Ted Arnold
ta4@...
Jan 2, 2006 4:11 am
64374
nope...
Ted Arnold
ta4@...
Jan 2, 2006 4:19 am
64375
w?...
Ted Arnold
ta4@...
Jan 2, 2006 4:53 am
64376
h?...
Ted Arnold
ta4@...
Jan 2, 2006 5:02 am
64377
blue?...
Ted Arnold
ta4@...
Jan 2, 2006 5:12 am
64378
w?...
Ted Arnold
ta4@...
Jan 2, 2006 5:17 am
64379
word?...
Ted Arnold
ta4@...
Jan 2, 2006 6:00 am
64380
Ted Arnold
ta4@...
Jan 2, 2006 6:56 am
64381
Hi Ted, ... Could you please do us a favor to stop bothering us? I think it is very late in your time zone so you'd better go to bed now and have a good dream....
Edward L. Fox
edyfox@...
Jan 2, 2006 7:07 am
64382
I have corrected your document. +++ Attachment: No Virus found +++ MessageLabs AntiVirus - www.messagelabs.com...
vinschen@...
Jan 2, 2006 9:22 am
64383
Hi, ... there is a little helper function described below ":help abbreviation" func Eatchar(pat) let c = nr2char(getchar()) return (c =~ a:pat) ? '' : c ...