microsoft / vscode-cpptools

Official repository for the Microsoft C/C++ extension for VS Code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Customize / disable context menu options

PoetaKodu opened this issue · comments

Feature Request

Each entry in the context menu option should be separately customizable + there should be an option to disable them all.

Proposal:

{
  "C_Cpp.contextMenu": {
    "enabled": true,
    "options": {
      "SwitchHeaderSource": false,
      "RunCodeAnalysisOnActiveFile": false,
      "RestartIntelliSenseForFile": false,
      "GenerateDoxygenComment": false,
      "CreateDeclarationOrDefinition": true
    }
  }
}

I don't remember when I used any of these options from my context menu but they still clutter it.

Thank you.