Hello. I’m using LSP package and it’s syntax dependent. So here’s the common settings from it:
"pyls":
{
"command": ["pyls"],
"scopes": ["source.python"],
"syntaxes": ["Packages/Python/Python.sublime-syntax", "Packages/Djaneiro/Syntaxes/Python Django.tmLanguage"],
"languageId": "python"
// "settings": {
// "pyls": {
// "configurationSources": ["flake8"],
// "plugins": {
// "pyflakes": {
// "enabled": false
// }
// }
// }
// }
},
So there’s the syntaxes list, which responds for the list of the active syntax of the opened file to run LSP on. But most of my sublime syntaxes are not installed apart, but goes inside some packages. So how could i point on such in that settings to enable it? The follow problem goes with for example go and rust.