This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-09-08
Channels
- # announcements (40)
- # babashka (14)
- # babashka-sci-dev (7)
- # beginners (50)
- # calva (8)
- # cider (25)
- # clj-kondo (7)
- # cljdoc (8)
- # cljs-dev (14)
- # clojars (6)
- # clojure (56)
- # clojure-australia (1)
- # clojure-berlin (2)
- # clojure-dev (16)
- # clojure-europe (18)
- # clojure-nl (1)
- # clojure-norway (5)
- # clojure-uk (7)
- # clojurescript (100)
- # cursive (57)
- # data-science (9)
- # datomic (6)
- # emacs (11)
- # figwheel (2)
- # fulcro (14)
- # helix (2)
- # hyperfiddle (9)
- # introduce-yourself (1)
- # lsp (20)
- # malli (14)
- # meander (34)
- # minecraft (1)
- # missionary (8)
- # off-topic (37)
- # pedestal (4)
- # polylith (18)
- # portal (3)
- # re-frame (5)
- # ring (33)
- # shadow-cljs (32)
- # spacemacs (6)
- # vim (16)
Hello, Two parter: 1. How can I zoom an individual window and not the entire frame? 2. Is there a way to universally disable the title bar that appears in certain modes e.g clojure mode. i.e: https://files.slack.com/files-pri/T03RZGPFR-F042C5S2E64/image.png
Increasing font sizes is actually buffer-local, I conveniently use it Macs with command-=
or command--
with osx
layer declared. The function names themselves are spacemacs/scale-up-font
and spacemacs/scale-down-font
.
The title bar is actually called a breadcrumb. You can disable the feature: https://emacs-lsp.github.io/lsp-mode/tutorials/how-to-turn-off/ I recommend putting it inside the :config
section of use-package
.
Much appreciated, removing the breadcrumb is a big improvement. spacemacs/scale-up-font
and spacemacs/scale-down-font
scale all buffers in the frame for me.
@U01HBARPCFL Hmm, if I open A.clj
on the first window and B.clj
on the second, then calling spacemacs/scale-up-font
on the first window only increases the size of the characters in A.clj
.