Sublime Forum

How to disable LSP server's snippets completion support?

#1

I’ve try to using this config to disable the clangd’s snippets support but seems don’t have any effects.

    "clients": {
        "clangd": {
            "enabled": true,
            "command": [
                "clangd"
            ],
            "selector": "source.c | source.c++ | source.objc | source.objc++",
            "auto_complete_selector": "punctuation.accessor | (meta.preprocessor.include string - punctuation.definition.string.end)",
            "disabled_capabilities": {
                "hoverProvider": false,
                "snippetsSupport": false,
            }
        },
    },
0 Likes

#2

presumably this should have been a reply to Is there any options can disable disable LSP Sever's snippets completion? rather than a new discussion

0 Likes

#3

oh, i forgot that i have post that in sublime’s form :slight_smile:

0 Likes