sublimelsp / LSP-css

CSS, SCSS, LESS support for Sublime's LSP plugin
MIT License
37 stars 0 forks source link

Configure LSP #21

Closed marcoSven closed 3 years ago

marcoSven commented 3 years ago

Can I disable this suggestion that appears highlighted green inline as I type, it is conflicting with the auto complete below.

Screen Shot 2020-11-18 at 6 11 53 PM

Can I disable the color preview square box? I am using another plugin that generates the same.

Screen Shot 2020-11-18 at 6 21 40 PM
jfcherng commented 3 years ago

Can I disable this suggestion that appears highlighted green inline as I type, it is conflicting with the auto complete below.

Screen Shot 2020-11-18 at 6 11 53 PM

It's from Emmet. Check its abbreviation_preview setting.

Can I disable the color preview square box? I am using another plugin that generates the same.

Screen Shot 2020-11-18 at 6 21 40 PM

You can add the following setting to LSP (not LSP-CSS).

    "disabled_capabilities": [
        "colorProvider",
    ],
marcoSven commented 3 years ago

Thank you!