diff options
author | Alan Pearce | 2017-05-22 16:49:02 +0200 |
---|---|---|
committer | Alan Pearce | 2017-05-22 16:49:02 +0200 |
commit | 6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114 (patch) | |
tree | 11a26eb18f4f14bf855ffd88b97ffb73397c5372 /emacs | |
parent | b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6 (diff) | |
download | nixfiles-6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114.tar.lz nixfiles-6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114.tar.zst nixfiles-6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114.zip |
Emacs: Show flycheck messages as tooltips
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init.org | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 9974cb85..a9344a7f 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -1723,6 +1723,18 @@ On-the-fly error checking in programming modes? Yes please. (setq flycheck-javascript-eslint-executable "eslint_d")))) #+END_SRC +*** flycheck-pos-tip + +Show flycheck errors in a little popup, so I don't lose my place + +#+BEGIN_SRC emacs-lisp +(use-package flycheck-pos-tip + :after flycheck + :config (progn + (setq flycheck-display-errors-delay 0.5) + (flycheck-pos-tip-mode 1))) +#+END_SRC + *** flycheck-flow #+BEGIN_SRC emacs-lisp |