diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-06-12 16:15:27 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-06-12 16:15:27 -0700 |
commit | 78df5624f5c1b793f8084ba8cfbdaf3a8afdfc34 (patch) | |
tree | 70acf18f53d8eece255a09243880d105673bb543 /emacs.d/custom | |
parent | [zsh] replace bash with zsh (diff) | |
download | emacs.d-78df5624f5c1b793f8084ba8cfbdaf3a8afdfc34.tar.gz |
[emacs] don't use tips for flycheck errors
They are not easy to read, and it's easier to go to the message buffer when debugging something.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-flycheck.el | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/emacs.d/custom/fcuny-flycheck.el b/emacs.d/custom/fcuny-flycheck.el index edc6f85..0f6d29d 100644 --- a/emacs.d/custom/fcuny-flycheck.el +++ b/emacs.d/custom/fcuny-flycheck.el @@ -22,10 +22,4 @@ :modes (python-mode)) (add-to-list 'flycheck-checkers 'fcuny/source-check-python))) -(use-package flycheck-pos-tip - :after flycheck - :ensure t - :config - (flycheck-pos-tip-mode)) - (provide 'fcuny-flycheck) |