Fork me on GitHub
#cider
<
2023-10-21
>
phronmophobic03:10:39

I get Symbol's value as variable is void: text-scale-mode-amount after calling cider-inspect. cider-inspect works the first time I use it, but I get the error every subsequent call until I restart emacs

1
phronmophobic03:10:58

Not really sure how to debug, but I'm happy to provide more info. Here's some random info that might be helpful: • OS: Mac OSX • emacs version: GNU Emacs 29.1 • cider version(s): I tried CIDER 1.8.4-snapshot (package: ) and CIDER 1.8.3 (Geneva) • clojure-mode: clojure-mode (version 5.18.0)

vemv10:10:13

Are you using CLI emacs perhaps? text-scale-mode-amount comes from text-scale-mode which is built-in to emacs

👍 1
phronmophobic18:10:02

I can confirm it fixed the issue for me. Thanks!

🍻 1
vemv18:10:47

curious, were you on CLI Emacs?

phronmophobic18:10:15

Still rocking the terminal

1
vemv18:10:59

I wish this edge case didn't escape to me :) I'll try to think about the CLI more often before we ship stuff.

phronmophobic18:10:45

No worries. It was easy to write a workaround to hardcode the font-size.

deep-symmetry16:10:33

Ah, does this thread mean that the issue with popup positioning when text has been scaled up for pairing with my coworkers is being investigated? 😀

vemv16:10:03

@U0EHA00G1 never had heard of that one, I believe. Feel free to create a GH directly - there's an Inspector batch in progress 👀

deep-symmetry16:10:48

OK, thanks, I’ll take some screen shots and organize an issue.

🍻 1
akis19:10:45

hey all, I'd like to try 1.8 but I'm having trouble upgrading it with emacs doom. I tried doom/upgrade but that doesn't seem to work. Inspecting cider shows that it's pinned on 1ed5163433c991c00ea83fdd4447e8daf4aeccbe

Karl Xaver19:10:20

I'd advise to unpin the whole module, so ciders dependencies (like clojure-mode) are updated too. Otherwise you might experience inconsistencies.

practicalli-johnny20:10:42

#C01GE5PD249 channel may have more specific help

👍 1
akis20:10:50

that worked @U01RN5VR18X, thank you! when you say whole module, did you mean (unpin! cider) ? What's the alternative, out of curiosity?

aisamu21:10:27

I think Karl meant

(unpin! (:lang clojure))
This will also unpin other packages required by the clojure module, such as clojure-mode, jet, and etc.

✔️ 1
akis21:10:48

oh interesting, thank you!