flymake-cpanfile

cpanfile 向けのVim 拡張を書きました - その手の平は尻もつかめるさ


を参考に flymake版を作成して見ました。

利用方法

ソースコードの取得
% git clone git://github.com/syohex/emacs-flymake-cpanfile.git ~/.emacs.d/flymake-cpanfile
Emacsの設定
(add-to-list 'load-path "~/.emacs.d/flymake-cpanfile")
(require 'flymake-cpanfile)

(defun my/cpanfile-hook ()
  (let ((name (buffer-file-name)))
    (if (and name (string= "cpanfile" (file-name-nondirectory name)))
        (flymake-cpanfile-setup)
      (flymake-mode 1))))

(add-to-list 'auto-mode-alist '("cpanfile\\'" . cperl-mode))
(add-hook 'cperl-mode-hook 'my/cpanfile-hook)

イメージ

私の flymakeの設定はこちらを参照してください