perltidy-region

indent-region じゃ vim の整形にかてなそうだったので、perltidy-region を導入した。

(defun perltidy-region ()
  "Run perltidy on the current region."
  (interactive)
  (save-excursion
    (shell-command-on-region (point) (mark) "perltidy -q" nil t)))

これを \C-ct とかに割り振っておいた。ちょーーー便利なんだけど!

perltidy のパラメータ設定は Best Practices 参照。

by typester / at 2005-12-11T00:45:00 / emacs / Comments(0)