ambevar-dotfiles/.emacs.d/mode-perl.el

11 lines
325 B
EmacsLisp
Raw Normal View History

2014-01-07 18:36:07 +01:00
;;==============================================================================
;; Perl
;;==============================================================================
2014-03-25 09:23:12 +01:00
(add-hook-and-eval
'perl-mode-hook
(lambda ()
(set (make-local-variable 'compile-command) (concat "perl " buffer-file-name))))
2014-02-12 17:37:43 +01:00
(provide 'mode-perl)