Just out of curiosity, what editor do you folks normally use when writing perl?
vim with syntax highlighting enabled.
What editor do you used when writing perl inside HTML in ASP-style?
Ditto, with these additions to my .vimrc file:
function SetupASP() exe "set syntax=aspperl" call SetTS(2) endfunction
au BufEnter *.html call SetTS(2) au BufEnter *.asp call SetupASP() au BufEnter *.inc call SetupASP() au BufLeave *.html call SetTS(4) au BufLeave *.asp call SetTS(4) au BufLeave *.inc call SetTS(4)
The tabstop changes aren't essential. I just like less indenting with HTML, because it gets so deeply nested, especially with embedded ASP code.
Have you heard of the OptiPerl Visual IDE? I have been using it for some time and really like it.
But it isn't vi! It isn't an editor if it isn't vi. >:)
Of course, when I'm just logged in over SSH I use pico when I can (never quite got the vi commands down).
Time you learned...
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]