You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; make the flycheck arrow look like an exclamation point.
;; but only do it when emacs runs in a window, not terminal
(when window-system
(define-fringe-bitmap 'flycheck-fringe-bitmap-double-arrow
[0 24 24 24 24 24 24 0 0 24 24 0 0 0 0 0 0]))
is wrong: window-system is a global variable, whereas being on a text-mode terminal is a frame-specific attribute. A single Emacs session can have both GUI and TTY frames at the same time.
The text was updated successfully, but these errors were encountered:
One way is to define a hook function that would be called by flycheck when it is activated for a buffer, and in that function have a check for whether the frame is a GUI one.
Alternatively, does defining this unconditionally do any harm? Fringe settings are supposed to be ignored on TTY frames.
This part of frontmacs-editing.el:
is wrong: window-system is a global variable, whereas being on a text-mode terminal is a frame-specific attribute. A single Emacs session can have both GUI and TTY frames at the same time.
The text was updated successfully, but these errors were encountered: