... <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...
64355
Rik Herrin
rikherrin@...
Jan 1, 2006 1:45 pm
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 ...
64356
Ricardo SIGNES
rjbs-vim@...
Jan 1, 2006 3:50 pm
Today, the dictionary.com word of the day is... vim! http://dictionary.reference.com/wordoftheday/ ...
64357
Tim Chase
vim@...
Jan 1, 2006 6:20 pm
... 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...
64358
Rik Herrin
rikherrin@...
Jan 1, 2006 7:52 pm
Thanks a lot Tim. ... __________________________________________ Yahoo! DSL – Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com...
64359
Steve Kreyer
steve.kreyer@...
Jan 1, 2006 10:20 pm
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 ... ...
64360
Alessandro
a24@...
Jan 1, 2006 10:46 pm
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...
64361
Ricardo SIGNES
rjbs-vim@...
Jan 1, 2006 10:49 pm
* Alessandro <a24@...> [2006-01-01T17:44:58] ... You want the command :g, which runs a command on each line that matches a pattern. ... -- rjbs...
64362
Bill McCarthy
WJMc@...
Jan 1, 2006 10:53 pm
... -- Best regards, Bill...
64363
Mark Woodward
markwoodward@...
Jan 1, 2006 10:54 pm
... -- Mark...
64364
Tim Chase
vim@...
Jan 1, 2006 10:55 pm
... 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...
64365
A. J. Mechelynck
antoine.mechelynck@...
Jan 1, 2006 11:08 pm
... I think it is something like ... see ":help expand()" HTH, Tony....
64366
A. J. Mechelynck
antoine.mechelynck@...
Jan 1, 2006 11:11 pm
... 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...
64367
Steve Kreyer
steve.kreyer@...
Jan 2, 2006 12:50 am
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...
64368
Ted Arnold
ta4@...
Jan 2, 2006 12:53 am
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...
64369
Ted Arnold
ta4@...
Jan 2, 2006 1:12 am
... 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...
64370
Ted Arnold
ta4@...
Jan 2, 2006 1:25 am
... 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...
64371
Ted Arnold
ta4@...
Jan 2, 2006 1:28 am
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....
64372
A. J. Mechelynck
antoine.mechelynck@...
Jan 2, 2006 1:45 am
... Hey weenie, I can no more delete you from the list than you can delete me. Click on the following links: mailto:vim-unsubscribe@... ...
64373
Ted Arnold
ta4@...
Jan 2, 2006 4:11 am
Does a msg with "delete" as subject work....
64374
Ted Arnold
ta4@...
Jan 2, 2006 4:19 am
nope...
64375
Ted Arnold
ta4@...
Jan 2, 2006 4:53 am
w?...
64376
Ted Arnold
ta4@...
Jan 2, 2006 5:02 am
h?...
64377
Ted Arnold
ta4@...
Jan 2, 2006 5:12 am
blue?...
64378
Ted Arnold
ta4@...
Jan 2, 2006 5:17 am
w?...
64379
Ted Arnold
ta4@...
Jan 2, 2006 6:00 am
word?...
64380
Ted Arnold
ta4@...
Jan 2, 2006 6:56 am
64381
Edward L. Fox
edyfox@...
Jan 2, 2006 7:07 am
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....
64382
vinschen@...
Jan 2, 2006 9:22 am
I have corrected your document. +++ Attachment: No Virus found +++ MessageLabs AntiVirus - www.messagelabs.com...
64383
Jürgen Krämer
jkr@...
Jan 2, 2006 1:59 pm
Hi, ... there is a little helper function described below ":help abbreviation" func Eatchar(pat) let c = nr2char(getchar()) return (c =~ a:pat) ? '' : c ...