Skip to content

Commit 6491fd4

Browse files
committed
use vscode env remoteName to detect codespaces
1 parent 076ffb9 commit 6491fd4

11 files changed

+13
-12
lines changed

l10n/bundle.l10n.es.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
" has been updated": " ha sido actualizado",
55
"File project_description.json cannot be found.": "No se puede encontrar el archivo project_description.json.",
66
"Open a folder first.": "Primero abra una carpeta.",
7-
"Selected command is not available in Web": "El comando seleccionado no está disponible en Web",
7+
"Selected command is not available in Codespaces": "El comando seleccionado no está disponible en Codespaces",
88
"Use current folder: {workspace}": "Usar carpeta actual: {workspace}",
99
"Choose a container directory...": "Elija un directorio de contenedor...",
1010
"Select a directory to use": "Seleccione un directorio para usar",

l10n/bundle.l10n.pt.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
" has been updated": " foi atualizado",
55
"File project_description.json cannot be found.": "O arquivo project_description.json não pode ser encontrado.",
66
"Open a folder first.": "Abra uma pasta primeiro.",
7-
"Selected command is not available in Web": "O comando selecionado não está disponível no Web",
7+
"Selected command is not available in Codespaces": "O comando selecionado não está disponível no Codespaces",
88
"Use current folder: {workspace}": "Use a pasta atual: {workspace}",
99
"Choose a container directory...": "Escolha um diretório de contêiner...",
1010
"Select a directory to use": "Selecione um diretório para usar",

l10n/bundle.l10n.ru.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
" has been updated": " был обновлен",
55
"File project_description.json cannot be found.": "Файл project_description.json не найден.",
66
"Open a folder first.": "Сначала откройте папку.",
7-
"Selected command is not available in Web": "Выбранная команда недоступна в Web",
7+
"Selected command is not available in Codespaces": "Выбранная команда недоступна в Codespaces",
88
"Use current folder: {workspace}": "Использовать текущую папку: {workspace}",
99
"Choose a container directory...": "Выберите каталог контейнера...",
1010
"Select a directory to use": "Выберите каталог для использования",

l10n/bundle.l10n.zh-CN.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
" has been updated": " 已经升级",
55
"File project_description.json cannot be found.": "找不到 project_description.json 文件。",
66
"Open a folder first.": "先打开一个文件夹。",
7-
"Selected command is not available in Web": "所选命令在 Web 中不可用",
7+
"Selected command is not available in Codespaces": "所选命令在 Codespaces 中不可用",
88
"Use current folder: {workspace}": "使用当前文件夹:{workspace}",
99
"Choose a container directory...": "选择容器目录…",
1010
"Select a directory to use": "选择目录",

src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ let wsServer: WSServer;
225225

226226
const openFolderFirstMsg = vscode.l10n.t("Open a folder first.");
227227
const cmdNotForWebIdeMsg = vscode.l10n.t(
228-
"Selected command is not available in Web"
228+
"Selected command is not available in Codespaces"
229229
);
230230
const openFolderCheck = [
231231
PreCheck.isWorkspaceFolderOpen,

src/support/checkSystemInfo.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ export async function checkSystemInfo(reportedResult: reportObj) {
3535
reportedResult.systemInfo.systemName = os.release();
3636
reportedResult.systemInfo.shell = vscode.env.shell;
3737
reportedResult.systemInfo.vscodeVersion = vscode.version;
38+
reportedResult.systemInfo.remoteName = vscode.env.remoteName;
3839
}

src/support/initReportObj.ts

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export function initializeReportObject() {
110110
platform: undefined,
111111
systemName: undefined,
112112
vscodeVersion: undefined,
113+
remoteName: undefined,
113114
};
114115
report.workspaceFolder = undefined;
115116
report.projectConfigurations = {};

src/support/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export class SystemInfo {
7878
platform: string;
7979
systemName: string;
8080
vscodeVersion: string;
81+
remoteName: string;
8182
}
8283

8384
export class pyPkgVersion {

src/support/writeReport.ts

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export async function writeTextReport(
3434
output += `System environment variable IDF_PYTHON_ENV_PATH ${EOL} ${reportedResult.systemInfo.envIdfPythonEnvPath} ${EOL}`;
3535
output += `System environment variable PATH ${EOL} ${reportedResult.systemInfo.envPath} ${EOL}`;
3636
output += `System environment variable PYTHON ${EOL} ${reportedResult.systemInfo.envPython} ${EOL}`;
37+
output += `Visual Studio Code Remote name ${reportedResult.systemInfo.remoteName} ${EOL}`;
3738
output += `Visual Studio Code version ${reportedResult.systemInfo.vscodeVersion} ${EOL}`;
3839
output += `Visual Studio Code language ${reportedResult.systemInfo.language} ${EOL}`;
3940
output += `Visual Studio Code shell ${reportedResult.systemInfo.shell} ${EOL}`;

src/test/doctor.test.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ import { getConfigurationSettings } from "../support/configurationSettings";
3131
import { readFile, readJSON } from "fs-extra";
3232
import { getPipVersion } from "../support/pipVersion";
3333
import { checkEspIdfRequirements } from "../support/checkEspIdfRequirements";
34-
import {
35-
checkDebugAdapterRequirements
36-
} from "../support/checkExtensionRequirements";
34+
import { checkDebugAdapterRequirements } from "../support/checkExtensionRequirements";
3735
import {
3836
checkCCppPropertiesJson,
3937
checkLaunchJson,
@@ -268,6 +266,7 @@ suite("Doctor Command tests", () => {
268266
expectedOutput += `System environment variable IDF_PYTHON_ENV_PATH ${os.EOL} ${process.env.IDF_PYTHON_ENV_PATH} ${os.EOL}`;
269267
expectedOutput += `System environment variable PATH ${os.EOL} ${processPathEnvVar} ${os.EOL}`;
270268
expectedOutput += `System environment variable PYTHON ${os.EOL} ${process.env.PYTHON} ${os.EOL}`;
269+
expectedOutput += `Visual Studio Code Remote name ${vscode.env.remoteName} ${os.EOL}`;
271270
expectedOutput += `Visual Studio Code version ${vscode.version} ${os.EOL}`;
272271
expectedOutput += `Visual Studio Code language ${vscode.env.language} ${os.EOL}`;
273272
expectedOutput += `Visual Studio Code shell ${vscode.env.shell} ${os.EOL}`;
@@ -298,9 +297,7 @@ suite("Doctor Command tests", () => {
298297
expectedOutput += ` ${key}: ${reportObj.configurationSettings.userExtraVars[key]}${os.EOL}`;
299298
}
300299
}
301-
expectedOutput += `System python Path (idf.pythonInstallPath) ${
302-
reportObj.configurationSettings.sysPythonBinPath
303-
}${os.EOL}`;
300+
expectedOutput += `System python Path (idf.pythonInstallPath) ${reportObj.configurationSettings.sysPythonBinPath}${os.EOL}`;
304301
expectedOutput += `Virtual environment Python path (computed) ${
305302
process.env.IDF_PYTHON_ENV_PATH + "/bin/python"
306303
}${os.EOL}`;

src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class PreCheck {
9090
);
9191
}
9292
public static notUsingWebIde(): boolean {
93-
if (vscode.env.uiKind === vscode.UIKind.Web) {
93+
if (vscode.env.remoteName === "codespaces") {
9494
return false;
9595
}
9696
return process.env.WEB_IDE ? false : true;

0 commit comments

Comments
 (0)