all repos — nixfiles @ 6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114

System and user configuration, managed by nix and home-manager

Emacs: Show flycheck messages as tooltips
Alan Pearce alan@alanpearce.eu
Mon, 22 May 2017 16:49:02 +0200
commit

6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114

parent

b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6

1 files changed, 12 insertions(+), 0 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -1723,6 +1723,18 @@ (if (executable-find "eslint_d")                 (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