Skip to content

Instantly share code, notes, and snippets.

@fujin
Created May 27, 2010 03:45
Show Gist options
  • Save fujin/415429 to your computer and use it in GitHub Desktop.
Save fujin/415429 to your computer and use it in GitHub Desktop.
flymake syntax error in minibuffer
(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)))))
(add-hook 'post-command-hook 'my-flymake-show-help)
@fujin
Copy link
Author

fujin commented May 27, 2010

Oh,

Forgot to say what this does. Adds output to the minibuffer when you place the point on an error flymake minibuffer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment