summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-05-22 16:49:02 +0200
committerAlan Pearce2017-05-22 16:49:02 +0200
commit6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114 (patch)
tree11a26eb18f4f14bf855ffd88b97ffb73397c5372 /emacs
parentb64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6 (diff)
downloaddotfiles-6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114.tar.lz
dotfiles-6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114.tar.zst
dotfiles-6ae56a3dd7686a6b6d2f815e4478b4abd3f4b114.zip
Emacs: Show flycheck messages as tooltips
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 9974cb8..a9344a7 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