Skip to content

Commit

Permalink
Disable Generate Doxygen Comment from context menu if intelliSenseEng…
Browse files Browse the repository at this point in the history
…ine is "disabled" (#10007)

* Switch to just disabling Generate Doxygen Comment.
  • Loading branch information
sean-mcmanus authored Oct 14, 2022
1 parent fcab84c commit 6542b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5214,7 +5214,7 @@
},
{
"command": "C_Cpp.GenerateDoxygenComment",
"when": "editorLangId == 'c' || editorLangId == 'cpp' || editorLangId == 'cuda-cpp'",
"when": "editorLangId == 'c' && config.C_Cpp.intelliSenseEngine != 'disabled' && config.C_Cpp.intelliSenseEngine != 'Disabled' || editorLangId == 'cpp' && config.C_Cpp.intelliSenseEngine != 'disabled' && config.C_Cpp.intelliSenseEngine != 'Disabled' || editorLangId == 'cuda-cpp' && config.C_Cpp.intelliSenseEngine != 'disabled' && config.C_Cpp.intelliSenseEngine != 'Disabled'",
"group": "custom2@3"
}
],
Expand Down

0 comments on commit 6542b63

Please sign in to comment.