Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Perl Editor Voodoo

by gmax (Abbot)
on Feb 19, 2002 at 16:25 UTC ( [id://146405]=note: print w/replies, xml ) Need Help??


in reply to Perl Editor Voodoo

You might find info in this snippet, this script and this more descriptive node useful.

My personal contribution is:
:map \# ^[I#!/usr/bin/perl -w^Muse strict;^M
update
I have been using Vim with embedded Perl for a while.
I don't think I am exploiting all the possibilities, but it is really helpful to have perl regular expressions at your disposal, so you don't have to think about the differences between the two RegEx dialects. Once you are used to Perl's syntax, capturing parentheses in Vim  \(.*\) look painfully unfamiliar.
I often use Perl's sort to manipulate my lines of text.

A nice feature is that you can test one or more lines of code, while you are writing them. Here is just one example:
# line 10 of your code $a = sqrt(64);
If you want to see the result of that assignment (provided that your internal CPU can't calculate it :) this command
:10perldo s/$/$_/ee
will append the result at the end of the line.
I mapped this command, referring to the current line.
:map _ee ^[:.,.perldo s/$/$_/ee^M
I am sure that there is a lot more than these few tricks. Having Perl embedded in your editor can trigger your imagination!
 _  _ _  _  
(_|| | |(_|><
 _|   

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://146405]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-20 04:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found