Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Editing features for advanced users

by gmax (Abbot)
on Jan 26, 2002 at 15:40 UTC ( [id://141765]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    /usr/local/share/vim/vim60/syntax/perl.vim
    
  2. or download this
    let b:current_syntax = "perl"
    
  3. or download this
    syn include @Sql <sfile>:p:h/sql.vim
    syn region perlSQL start="qq{" end="}" contains=@Sql keepend
    syn region perlSQL start="qq\[" end="\]" contains=@Sql keepend
    syn region perlSQL start="<<SQL" end="^SQL" contains=@Sql keepend
    
  4. or download this
    my $sql1 = qq{ SELECT fieldname 
        FROM $tab_array[0]
    ...
        FROM $tab_hash{$current}
        WHERE otherfield = ( ? )
    ];
    
  5. or download this
    my $sign = qq {DO NOT SELECT FROM MY TABLE !}
    
  6. or download this
    :runtime! syntax/2html.vim
    
  7. or download this
    # ./configure --enable-perlinterp 
    # make
    # make install
    
  8. or download this
    :perl $count = 0
    :perldo $count += split /[;_<> ]/, $_ 
    :perl VIM::Msg($count)
    
  9. or download this
    :perl @lines = sort {$a <=> $b} $curbuf->Get(1 .. 15)
    :perl $curbuf->Set(1, @lines)
    
  10. or download this
    :perl $curbuf->Set(1, sort {$a <=> $b} $curbuf->Get(1 .. 15))
    
  11. or download this
    :10,30perldo s/\b(:?Monks|advocates)\b/PerlMonks/
    :40,45perldo tr/A-F0-9//cd
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://141765]
Approved by root
Front-paged by bunnyman
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-04-23 18:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found