1

Looking for something that works in ruby-mode like pyflakes + flymake in emacs py-mode or syntastic for vim.

1 Answer 1

3

FlymakeRuby does this, although I'd add the -w flag.

Sign up to request clarification or add additional context in comments.

2 Comments

+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)))))
Yes indeed. There's a package of my version of flymake-ruby.el on marmalade-repo.org, for convenient installation via package.el.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.