Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions code/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down Expand Up @@ -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;
Expand All @@ -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
Expand Down