This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-28
Channels
- # adventofcode (2)
- # announcements (4)
- # babashka (34)
- # beginners (44)
- # biff (5)
- # calva (8)
- # cider (4)
- # clj-kondo (5)
- # clj-on-windows (5)
- # clojure (57)
- # clojure-art (1)
- # clojure-denmark (2)
- # clojure-europe (40)
- # clojure-nl (1)
- # clojure-norway (6)
- # clojure-seattle (1)
- # clojure-uk (2)
- # clojurescript (20)
- # cursive (6)
- # datomic (1)
- # emacs (6)
- # events (5)
- # fulcro (22)
- # helix (5)
- # hyperfiddle (5)
- # jobs (1)
- # joyride (2)
- # lsp (8)
- # malli (8)
- # off-topic (30)
- # pathom (8)
- # pedestal (1)
- # portal (5)
- # proton (1)
- # rdf (2)
- # re-frame (4)
- # releases (1)
- # remote-jobs (1)
- # reveal (8)
- # xtdb (5)
No problems. Did you check what cmd+s is bound to?
Yesterday I rebuilt emacs
from the HEAD
of https://github.com/emacs-mirror and I've noticed an ugly (default?) font appearing in various places in the UI e.g. within org-capture
as shown below. Does anyone know which font is being displayed here, and how I can customise it? Presently, I configure which font is used in my Emacs config via this one line in my config: (push '(font . "FuraMono Nerd Font-12") default-frame-alist)
and this used to work fine IIRC. It's possible that I just didn't notice the crusty font before though tbh. Now I have noticed it, I can't unsee it 😆
• check the frame parameter, make sure it's being set: (frame-parameter nil 'font)
• use describe-char
to figure out what font you're looking at the point
• make sure the font itself is installed
also, I'm not sure, but this could be relevant. Sometime ago they've changed the way how font in modeline is rendered: see, https://github.com/doomemacs/doomemacs/issues/5891#issuecomment-992758572
Thanks for sharing your ideas @U0G75ARHC I've managed to mitigate the issue by adding the following to my init.el
(set-face-attribute 'fixed-pitch nil :font "FuraMono Nerd Font-12") ;; this face was used in the header-line of org-capture
(set-face-attribute 'fixed-pitch-serif nil :font "FuraMono Nerd Font-12") ;; this face is used in info docs, which was another place the crusty font was appearing for me