()
| 447 | } |
| 448 | |
| 449 | function onDisabledCommand() { |
| 450 | const message: string = localize( |
| 451 | { |
| 452 | key: "on.disabled.command", |
| 453 | comment: [ |
| 454 | "Markdown text between `` should not be translated or localized (they represent literal text) and the capitalization, spacing, and punctuation (including the ``) should not be altered." |
| 455 | ] |
| 456 | }, |
| 457 | "IntelliSense-related commands cannot be executed when `C_Cpp.intelliSenseEngine` is set to `disabled`."); |
| 458 | return vscode.window.showWarningMessage(message); |
| 459 | } |
| 460 | |
| 461 | async function onRestartIntelliSenseForFile() { |
| 462 | const activeEditor: vscode.TextEditor | undefined = vscode.window.activeTextEditor; |
nothing calls this directly
no test coverage detected