Looking for something that works in ruby-mode like pyflakes + flymake in emacs py-mode or syntastic for vim.
1 Answer
FlymakeRuby does this, although I'd add the -w flag.
2 Comments
Michael Kohl
+1, I also use FlymakeRuby and am quite happy with it, especially combined with the folling elisp function that I picked up in gnu.emacs.help:
(defun my-flymake-show-help () (when (get-char-property (point) 'flymake-overlay) (let ((help (get-char-property (point) 'help-echo))) (if help (message "%s" help)))))sanityinc
Yes indeed. There's a package of my version of
flymake-ruby.el on marmalade-repo.org, for convenient installation via package.el.