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)
Ooh, I might have to enable lenses again then 😄
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
these are sideline code actions from lsp-ui
you can disable all sideline, or disable only the code actions sideline like prefer
you can find it here: https://emacs-lsp.github.io/lsp-mode/tutorials/how-to-turn-off/
(setq lsp-ui-sideline-show-code-actions nil)
should be enoughExcellent, 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 🙂
I thought the same, then I saw how vim does and it seems better to me
🤦 can't believe I missed that page - thanks!
NP 🙂