An open API service indexing awesome lists of open source software.

https://github.com/ladicle/flymake-posframe

Showing flymake diagnostics at point using posframe
https://github.com/ladicle/flymake-posframe

emacs flymake posframe

Last synced: 2 months ago
JSON representation

Showing flymake diagnostics at point using posframe

Awesome Lists containing this project

README

        

* flymake-posframe

Showing flymake diagnostics at point using posframe

[[file:screenshot/flymake-posframe.gif]]

** Installation

#+BEGIN_SRC emacs-lisp
(use-package posframe)
(use-package flymake-posframe
:load-path ""
:hook (flymake-mode . flymake-posframe-mode))
#+END_SRC

** Customization

*Variables*

- flymake-posframe-error-prefix :: String to be displayed before every error line.
- flymake-posframe-warning-prefix :: String to be displayed before every warning line.
- flymake-posframe-note-prefix :: String to be displayed before every note line.
- flymake-posframe-buffer :: Name of the flymake posframe buffer.
- flymake-posframe-default-prefix :: String to be displayed before every default line.
- flymake-posframe-timeout :: Number of seconds after which the posframe will auto-hide.
- flymake-posframe-internal-border-width :: Number of the internal border width for the flymake posframe.
- flymake-posframe-max-width :: Maximum number of the flymake posframe width.
- flymake-posframe-max-height :: Maximum number of the flymake posframe height.
- flymake-posframe-parameters :: The frame parameters used by flymake-posframe.

*faces*

- flymake-posframe-face :: The background and foreground color of the flymake-posframe frame.
- flymake-posframe-prefix-error-face :: The prefix face for the flymake-posframe error dialog.
- flymake-posframe-prefix-warning-face :: The prefix face for the flymake-posframe warning dialog.
- flymake-posframe-prefix-note-face :: The prefix face for the flymake-posframe default dialog.
- flymake-posframe-prefix-default-face :: The prefix face for the flymake-posframe default dialog.
- flymake-posframe-border-face :: The color of the posframe border (*only* background is used).