We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 805b29c commit b10aae5Copy full SHA for b10aae5
src/config.ts
@@ -194,4 +194,5 @@ function getConfig(section: string, uri?: vscode.Uri) {
194
}
195
196
// True if the extension is running in known cloud-based IDEs.
197
-export const IsInCloudIDE = process.env.CLOUD_SHELL === 'true' || process.env.CODESPACES === 'true';
+export const IsInCloudIDE =
198
+ process.env.CLOUD_SHELL === 'true' || process.env.CODESPACES === 'true' || !!process.env.GITPOD_WORKSPACE_ID;
0 commit comments