emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
ericdallo 2021-06-24T19:22:18.062200Z

lsp-mode changed it's default place position for lens to end-of-line, this should be a better less intrusive default 🙂 Example with clojure-lsp (#lsp)

1
👏 3
anonimitoraf 2021-06-26T12:07:30.071400Z

Ooh, I might have to enable lenses again then 😄

👍 1
lukasz 2021-06-24T19:30:04.062900Z

Does anybody know how to turn these off? I checked the lsp and clojure-lsp docs but it's not obvious to me what to look for

ericdallo 2021-06-24T19:30:55.063400Z

these are sideline code actions from lsp-ui

ericdallo 2021-06-24T19:31:12.063600Z

you can disable all sideline, or disable only the code actions sideline like prefer

ericdallo 2021-06-24T19:31:32.063800Z

you can find it here: https://emacs-lsp.github.io/lsp-mode/tutorials/how-to-turn-off/

ericdallo 2021-06-24T19:32:00.064100Z

(setq lsp-ui-sideline-show-code-actions nil)
should be enough

practicalli-john 2021-06-24T19:35:14.064400Z

Excellent, much appreciated. It was a little weird before when all my code suddenly jumped a line a few seconds after loading a new file. This will be very discreet in comparison 🙂

ericdallo 2021-06-24T19:35:47.064600Z

I thought the same, then I saw how vim does and it seems better to me

lukasz 2021-06-24T19:56:40.064800Z

🤦 can't believe I missed that page - thanks!

ericdallo 2021-06-24T19:57:15.065Z

NP 🙂