Help for this page

Select Code to Download


  1. or download this
    function! Perl()
    " autoindent
    ...
    
    " Call Perl() when you open a Perl file
    autocmd FileType perl call Perl()
    
  2. or download this
    " restore defaults (incase I :e or :sp)
      set cinkeys&
    ...
    " I don't rememer these OTTOMH; :help cinoptions to learn more
      set cinoptions+=+2s,(1s,u0,m1
      set cindent
    
  3. or download this
    " SmartTab wrapper
    function! SmartTab()
    ...
    
    " turn on SmartTabs
    inoremap <tab> <c-r>=SmartTab()<cr>
    
  4. or download this
      set statusline=%f%{CurrSubName()}\ %m%h%r\ %=%25(%-17(%l\,%c%V%)\ %p
    +%%%)
      set laststatus=2
    ...
          return -1
        endif
      endfunction
    
  5. or download this
      map !! :!perl -c %<CR>
      map ## :s/^/#/<CR>
      map !# :s/^#//<CR>