Hello everyone,
I usually use sublime text 4’s native autocomplete as it looks great to me and its trailing symbols feature is fantastic. Still, I always install the LSP for the language I’m using to take advantage of its formatting and code inspection benefits. I usually disable LSP autocomplete like this:
{
“disabled_capabilities”: {
“completionProvider”: true
}
}
However, there are times when native autocompletion is not referenced enough in my previous code, or I need to use some LSP feature like autoimports. Can you think of a way to toggle between the LSP and sublime’s native autocomplete? Perhaps some command to toggle the disabled capabilities option between True and False?
Thank you very much and sorry for my clumsiness. I am almost new to sublime and English is not my native language.