Created
August 27, 2012 16:54
-
-
Save scottjacobsen/3490323 to your computer and use it in GitHub Desktop.
Emacs flymake mode for ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'flymake) | |
;; I don't like the default colors :) | |
(set-face-background 'flymake-errline "red4") | |
(set-face-background 'flymake-warnline "dark slate blue") | |
;; Invoke ruby with '-c' to get syntax checking | |
(defun flymake-ruby-init () | |
(let* ((temp-file (flymake-init-create-temp-buffer-copy | |
'flymake-create-temp-inplace)) | |
(local-file (file-relative-name | |
temp-file | |
(file-name-directory buffer-file-name)))) | |
(list "ruby" (list "-c" local-file)))) | |
(push '(".+\\.rb$" flymake-ruby-init) flymake-allowed-file-name-masks) | |
(push '("Rakefile$" flymake-ruby-init) flymake-allowed-file-name-masks) | |
(push '("^\\(.*\\):\\([0-9]+\\): \\(.*\\)$" 1 2 nil 3) flymake-err-line-patterns) | |
(add-hook 'ruby-mode-hook 'flymake-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment