Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Vim configs (slightly OT)

by bsb (Priest)
on Apr 16, 2003 at 01:19 UTC ( [id://250750]=note: print w/replies, xml ) Need Help??


in reply to Vim configs (slightly OT)

Here are some things I use which I haven't seen elsewhere in Perl Monks.
let perl_fold = 1

" copy & comment current line with #
map <F6> yypkI#<ESC>j

" format inner para
map <F7> !ipperl -MText::Autoformat -eautoformat<CR>

au BufRead,BufNewFile *.pm,*.pl setlocal keywordprg=perldoc\ -f

" Only fold if bigger than window
function SetFoldLevel()
    "echo "Win:" . winheight(0) . " lines:" . line("$")
    if winheight(0) >= line("$")
        set foldlevel=99
        "echo "open"
    else 
        set foldlevel=1
        "echo "closed"
    endif
endfunction

autocmd BufRead * call SetFoldLevel()

Log In?
Username:
Password:

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

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

    No recent polls found