You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,11 +110,11 @@ To demonstrate with a direct comparison, modifying the defense of every level of
110
110
111
111
**`python3` works in CMD but the extension cannot find Python?** Cursor and VS Code are often launched without your full user PATH (unlike a terminal you opened yourself). Fix:
112
112
113
-
1.**TOTK: Select Python (from detected installs)** - scans `where python3`, common install folders, and `py`.
114
-
2.**TOTK: Browse for python.exe** - point at the real interpreter (e.g. `%LocalAppData%\Programs\Python\Python312\python.exe`).
115
-
3. Or set **TOTK Editor → Python Path** to that full path, then **TOTK: Set Up Python Environment** again.
113
+
1.**TKVSC: Select Python (from detected installs)** - scans `where python3`, common install folders, and `py`.
114
+
2.**TKVSC: Browse for python.exe** - point at the real interpreter (e.g. `%LocalAppData%\Programs\Python\Python312\python.exe`).
115
+
3. Or set **TKVSC → Python Path** to that full path, then **TKVSC: Set Up Python Environment** again.
116
116
117
-
If setup fails, run **TOTK: Set Up Python Environment** from the Command Palette.
117
+
If setup fails, run **TKVSC: Set Up Python Environment** from the Command Palette.
Copy file name to clipboardExpand all lines: docs/verboselogging.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@
5
5
Click "Terminal" at the top of VSC, then "New Terminal", and switch the tab at the top of the new terminal to "Output", and then click the dropdown and select "TOTK-Editor" to view the logs.
"title": "TOTK: Open with Associated External Tool"
405
+
"title": "TKVSC: Open with Associated External Tool"
406
406
},
407
407
{
408
408
"command": "totk-editor.externalTools.choose",
409
-
"title": "TOTK: Choose External Tool for Current File"
409
+
"title": "TKVSC: Choose External Tool for Current File"
410
410
},
411
411
{
412
412
"command": "totk-editor.archiveImportFile",
@@ -721,7 +721,7 @@
721
721
}
722
722
],
723
723
"configuration": {
724
-
"title": "TOTK Editor",
724
+
"title": "TKVSC",
725
725
"properties": {
726
726
"totk-editor.logLevel": {
727
727
"type": "string",
@@ -742,7 +742,7 @@
742
742
"totk-editor.pythonPath": {
743
743
"type": "string",
744
744
"default": "",
745
-
"markdownDescription": "Full path to **python.exe** (Python 3.10+). Use this when `python3` works in CMD but the extension says Python was not found - Cursor/VS Code often start with a shorter PATH than your terminal. Run **TOTK: Browse for python.exe** or **TOTK: Select Python** to set this automatically."
745
+
"markdownDescription": "Full path to **python.exe** (Python 3.10+). Use this when `python3` works in CMD but the extension says Python was not found - Cursor/VS Code often start with a shorter PATH than your terminal. Run **TKVSC: Browse for python.exe** or **TKVSC: Select Python** to set this automatically."
voidvscode.window.showInformationMessage(`TOTK Editor: RomFS path set to ${newPath}`);
1541
+
voidvscode.window.showInformationMessage(`TKVSC: RomFS path set to ${newPath}`);
1542
1542
validRomfsSelected=true;
1543
1543
continue;
1544
1544
}
1545
1545
}catch{
1546
1546
// ignore
1547
1547
}
1548
1548
1549
-
awaitvscode.window.showWarningMessage('TOTK Editor: The selected directory must be named "romfs" or contain a "romfs" folder. Please choose a different directory.',{modal: true});
1549
+
awaitvscode.window.showWarningMessage('TKVSC: The selected directory must be named "romfs" or contain a "romfs" folder. Please choose a different directory.',{modal: true});
1550
1550
}
1551
1551
}else{
1552
1552
break;
@@ -1562,7 +1562,7 @@ async function runFirstTimeSetup(context: vscode.ExtensionContext): Promise<void
0 commit comments