From 960a79f2fc8668b40ee2a93c41837cd94e0f8c8e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 11:54:42 +0000 Subject: [PATCH 1/2] Initial plan From 911d11b974d6c30e5ca61b82212e9522e353e4b9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 12:01:59 +0000 Subject: [PATCH 2/2] Replace "CMD" with "Command Prompt" in all UI display text Co-authored-by: Daolyap <100187341+Daolyap@users.noreply.github.com> --- code/src/main.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/src/main.ts b/code/src/main.ts index d26300f..db8bb94 100644 --- a/code/src/main.ts +++ b/code/src/main.ts @@ -114,7 +114,7 @@ export default class OpenTermPlugin extends Plugin { if (Platform.isWin && this.settings.showCmd) { menu.addItem((item) => { - item.setTitle("Open in CMD") + item.setTitle("Open in Command Prompt") .setIcon("terminal") .setSection(SECTION_ID) .onClick(() => openInCmd(directory, this.settings)); @@ -170,8 +170,8 @@ class OpenTermSettingTab extends PluginSettingTab { ); new Setting(containerEl) - .setName("Show CMD (Windows only)") - .setDesc("Show the 'Open in CMD' option in the context menu.") + .setName("Show Command Prompt (Windows only)") + .setDesc("Show the 'Open in Command Prompt' option in the context menu.") .addToggle((toggle) => toggle.setValue(this.plugin.settings.showCmd).onChange(async (value) => { this.plugin.settings.showCmd = value; @@ -195,7 +195,7 @@ class OpenTermSettingTab extends PluginSettingTab { ); new Setting(containerEl) - .setName("CMD executable (Windows)") + .setName("Command Prompt executable (Windows)") .setDesc("Executable for Command Prompt on Windows.") .addText((text) => text