MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / displayExtensionNotReadyPrompt

Function displayExtensionNotReadyPrompt

Extension/src/common.ts:234–244  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

232export const extensionNotReadyString: string = localize("extension.not.ready", 'The C/C++ extension is still installing. See the output window for more information.');
233
234export function displayExtensionNotReadyPrompt(): void {
235 if (!isExtensionNotReadyPromptDisplayed) {
236 isExtensionNotReadyPromptDisplayed = true;
237 showOutputChannel();
238
239 void getOutputChannelLogger().showInformationMessage(extensionNotReadyString).then(
240 () => { isExtensionNotReadyPromptDisplayed = false; },
241 () => { isExtensionNotReadyPromptDisplayed = false; }
242 );
243 }
244}
245
246// This Progress global state tracks how far users are able to get before getting blocked.
247// Users start with a progress of 0 and it increases as they get further along in using the tool.

Callers

nothing calls this directly

Calls 4

showOutputChannelFunction · 0.90
getOutputChannelLoggerFunction · 0.90
thenMethod · 0.45

Tested by

no test coverage detected