File: config.vim

package info (click to toggle)
libtext-autoformat-perl 1.750000-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 200 kB
  • sloc: perl: 745; makefile: 7
file content (11 lines) | stat: -rwxr-xr-x 611 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
" Add  these  lines  to  your  .vimrc  and  you  will  be   happy   with
" p5-Text-Autoformat. Use ctrl-k to reformat a paragraph and  ctrl-n  to
" reformat all text from the cursor.

imap <C-K> <esc> !G perl -MText::Autoformat -e "{autoformat;}"<cr>
nmap <C-K>       !G perl -MText::Autoformat -e "{autoformat;}"<cr>
vmap <C-K>       !G perl -MText::Autoformat -e "{autoformat;}"<cr>

imap <C-N> <esc> !G perl -MText::Autoformat -e "{autoformat{all=>1};}"<cr>
nmap <C-N>       !G perl -MText::Autoformat -e "{autoformat{all=>1};}"<cr>
vmap <C-N>       !G perl -MText::Autoformat -e "{autoformat{all=>1};}"<cr>