tonsky / Clojure-Sublimed

Clojure support for Sublime Text 4
MIT License
359 stars 22 forks source link

Eval results competing space with Clojure LSP #67

Closed wilkerlucio closed 2 years ago

wilkerlucio commented 2 years ago

Hello, I know this is not an issue of Clojure Sublimed per see, but I couldn't find any help for this anywhere else, so I'll try to get some light here.

I'm playing with Clojure Sublime + LSP, the problem is that the LSP thing on Sublime puts an annotation to show the code actions always in the right side, for example:

Screen Shot 2022-02-17 at 15 09 01

The result is that when I evaluate a line, it doesn't show anything on the right side. It actually does show, but it places it in a line after the LSP annotation, making it not visible... unless I hover with the mouse, like:

Screen Shot 2022-02-17 at 15 09 57

The question is, how can I disable the LSP annotation on the right, so I can have just the Clojure Sublime evaluation there? (I still want to use code actions, but I have a dedicated shortcut for it, I just want to get rid of the annotation on the side).

tonsky commented 2 years ago

Ask the author of LSP plugin? They are all python, even if there’s no option to hide, it’s all pretty hackable

wilkerlucio commented 2 years ago

Thanks, just found it, for anyone that gets in the same situation, this is the setting to change:

"show_code_actions": "bulb"

wilkerlucio commented 2 years ago

Ups, said to early, I think I haven't seen them because LSP wasn't ready, but that didn't fix it yet.