[vimでCSSTidy] http://blog.hide-k.net/archives/2007/06/vimcsstidy.php Emacsだとこんな感じですかね 。まだちょっとしか使用してないのでバグるかもしれないけど... (defun csstidy-buffer () "Run csstidy on the current buffer." (interactive) (save-excursion (shell-command-on-region (point-min) (point-max) (format "csstidy %s --silent=true --sort_properties=true" (buffer-file-name (current-buffer))) nil t))) ;;; オプションは適当に追加 hoge.css を編集している時に、 M