Help for this page

Select Code to Download


  1. or download this
    filetype plugin on
    
  2. or download this
    filetype indent on " per-filetype config
    set tabstop=8
    ...
    set shiftwidth=4 " or 2 or whatever
    set shiftround
    set autoindent
    
  3. or download this
    setlocal isfname+=:
    
  4. or download this
    nnoremap <buffer> <silent> _c :w<Enter>:!perl -wc %<Enter>
    
  5. or download this
    nnoremap <buffer> <silent> _f :perldoc -f <cword><Enter>
    
  6. or download this
    nnoremap <buffer> <silent> _m :perldoc <cword><Enter>
    
  7. or download this
    nnoremap <buffer> <silent> _t :%!perltidy -q<Enter>
    vnoremap <buffer> <silent> _t :!perltidy -q<Enter>
    
  8. or download this
    let $PAGER = 'less'
    let $LESS = 'dQFe'