https://github.com/wilfred/flycheck-title
show flycheck errors in the frame title
https://github.com/wilfred/flycheck-title
emacs flycheck
Last synced: 12 months ago
JSON representation
show flycheck errors in the frame title
- Host: GitHub
- URL: https://github.com/wilfred/flycheck-title
- Owner: Wilfred
- Created: 2016-11-12T20:56:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-21T05:57:20.000Z (over 5 years ago)
- Last Synced: 2025-04-16T02:46:11.393Z (about 1 year ago)
- Topics: emacs, flycheck
- Language: Emacs Lisp
- Size: 54.7 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# flycheck-title
[](http://melpa.org/#/flycheck-title)

flycheck-title lets you view flycheck messages in the frame title,
keeping the minibuffer free for other things.
## Existing approaches
Flycheck shows errors in the minibuffer by default. However, if
you're also using eldoc, you can get flicker:

An alternative is
[flycheck-pos-tip](https://github.com/flycheck/flycheck-pos-tip),
which shows the errors in a pop-up. This can be problematic when
you're using completion pop-ups:

## How do I install it?
Install from MELPA, then add the following to
your Emacs configuration:
``` emacs-lisp
(with-eval-after-load 'flycheck
(flycheck-title-mode))
```