From c7bbdd65f3c41719cfd006c69541399b08967f53 Mon Sep 17 00:00:00 2001 From: t-e-r-m Date: Wed, 26 Aug 2020 21:49:22 +0530 Subject: [PATCH] Change the error prefix to a non-unicode character --- modules/checkers/syntax/config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/checkers/syntax/config.el b/modules/checkers/syntax/config.el index a5171b524..93b7d73da 100644 --- a/modules/checkers/syntax/config.el +++ b/modules/checkers/syntax/config.el @@ -46,7 +46,7 @@ :commands flycheck-popup-tip-show-popup flycheck-popup-tip-delete-popup :hook (flycheck-mode . +syntax-init-popups-h) :config - (setq flycheck-popup-tip-error-prefix "✕ ") + (setq flycheck-popup-tip-error-prefix "X ") (after! evil ;; Don't display popups while in insert or replace mode, as it can affect ;; the cursor's position or cause disruptive input delays. @@ -65,7 +65,7 @@ :config (setq flycheck-posframe-warning-prefix "! " flycheck-posframe-info-prefix "··· " - flycheck-posframe-error-prefix "✕ ") + flycheck-posframe-error-prefix "X ") (after! company ;; Don't display popups if company is open (add-hook 'flycheck-posframe-inhibit-functions #'company--active-p))