microsoft / vscode-anycode

MIT License
334 stars 38 forks source link

double outlineS when language=C/C++ #1

Closed heartacker closed 3 years ago

heartacker commented 3 years ago

image BTW: the file ext is "*.pln"

jrieken commented 3 years ago

That's kinda designed - when having multiple extensions installed that provide outline than this happening. This can only be resolved through setup/configuration, like not install multiple extensions or use extension config. Anycode has a big toggle per language for this, e.g anycode.language.cpp.enabled

jrieken commented 3 years ago

With latest anycode there is now anycode.language.features which can be configured per language, like so

 "[typescript]": {
        "anycode.language.features": {
            "completions": true,
            "definitions": true,
            "references": true,
            "highlights": false,
            "outline": false,
            "workspaceSymbols": true,
            "diagnostics": false
      }
},
heartacker commented 3 years ago

thanks @jrieken