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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ To demonstrate with a direct comparison, modifying the defense of every level of
108
108
109
109
### Python troubleshooting
110
110
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:
111
+
**`python3` works in CMD but the extension cannot find Python?**VSCode is often launched without your full user PATH (unlike a terminal you opened yourself). Fix:
112
112
113
113
1.**TKVSC: Select Python (from detected installs)** - scans `where python3`, common install folders, and `py`.
114
114
2.**TKVSC: Browse for python.exe** - point at the real interpreter (e.g. `%LocalAppData%\Programs\Python\Python312\python.exe`).
Copy file name to clipboardExpand all lines: package.json
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -723,7 +723,7 @@
723
723
"configuration": {
724
724
"title": "TKVSC",
725
725
"properties": {
726
-
"totk-editor.logLevel": {
726
+
"TKVSC.logLevel": {
727
727
"type": "string",
728
728
"enum": [
729
729
"Debug",
@@ -734,32 +734,32 @@
734
734
"default": "Info",
735
735
"markdownDescription": "Determine the verbosity of logs written to the Output Channel."
736
736
},
737
-
"totk-editor.enableToastNotifications": {
737
+
"TKVSC.enableToastNotifications": {
738
738
"type": "boolean",
739
739
"default": true,
740
740
"markdownDescription": "Enable pop-up toast notifications in VS Code for Warnings and Errors."
741
741
},
742
-
"totk-editor.pythonPath": {
742
+
"TKVSC.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 **TKVSC: Browse for python.exe** or **TKVSC: 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 - Run **TKVSC: Browse for python.exe** or **TKVSC: Select Python** to set this automatically."
746
746
},
747
-
"totk-editor.projectsPath": {
747
+
"TKVSC.projectsPath": {
748
748
"type": "string",
749
749
"default": "",
750
750
"markdownDescription": "Default path where new projects will be created."
751
751
},
752
-
"totk-editor.romfsPath": {
752
+
"TKVSC.romfsPath": {
753
753
"type": "string",
754
754
"default": "",
755
755
"markdownDescription": "Path to your extracted game **RomFS** (game dump) folder. Must contain `Pack/ZsDic.pack.zs`. **Required** to open or save any `.zs` file (`.pack.zs`, `.byml.zs`, `.bcett.byml.zs`, etc.)."
756
756
},
757
-
"totk-editor.createRomfsOnImport": {
757
+
"TKVSC.createRomfsOnImport": {
758
758
"type": "boolean",
759
759
"default": true,
760
760
"markdownDescription": "Automatically create a `romfs` folder when importing a project if there is no `romfs` or `exefs` folder next to the `.tkproj`."
761
761
},
762
-
"totk-editor.tagProductFormat": {
762
+
"TKVSC.tagProductFormat": {
763
763
"type": "string",
764
764
"enum": [
765
765
"json",
@@ -768,33 +768,33 @@
768
768
"default": "yaml",
769
769
"markdownDescription": "Format to use for displaying Tag.Product.rstbl.byml files (JSON or YAML)."
770
770
},
771
-
"totk-editor.bymlInlineContainerMaxCount": {
771
+
"TKVSC.bymlInlineContainerMaxCount": {
772
772
"type": "integer",
773
773
"default": 1,
774
774
"markdownDescription": "The maximum number of child nodes allowed in a list/array or map/hash for it to still be formatted as an inline container (e.g. `[1]` or `{a: 1}`)."
775
775
},
776
-
"totk-editor.extraAampExtensions": {
776
+
"TKVSC.extraAampExtensions": {
777
777
"type": "array",
778
778
"items": {
779
779
"type": "string"
780
780
},
781
781
"default": [],
782
782
"markdownDescription": "Additional file extensions (without dot) treated as **AAMP** parameter files, e.g. `bcustom`. See `aamp-extensions.json` in the extension folder for the built-in list."
783
783
},
784
-
"totk-editor.enableCanonicalSavePropagation": {
784
+
"TKVSC.enableCanonicalSavePropagation": {
785
785
"type": "boolean",
786
786
"default": true,
787
787
"markdownDescription": "When enabled, saving a file inside an archive updates all matching canonical-path instances across project archives. Missing matching archives are copied from the configured game dump first."
788
788
},
789
-
"totk-editor.canonicalSyncBlacklistPrefixes": {
789
+
"TKVSC.canonicalSyncBlacklistPrefixes": {
790
790
"type": "array",
791
791
"items": {
792
792
"type": "string"
793
793
},
794
794
"default": [],
795
795
"markdownDescription": "Canonical path folder prefixes excluded from synchronized save propagation. Matching is case-insensitive and checks full canonical path prefixes. This is NOT the RomFS path!"
"markdownDescription": "Archive file extensions that disable canonical synchronized edits for paths inside those archive types (for example nested `.sarc`/`.blarc`). Matching is case-insensitive."
'TKVSC could not find Python 3.10+. Cursor/VS Code often use a different PATH than CMD - set the full path to python.exe, or pick from detected installs.',
536
+
'TKVSC could not find Python 3.10+. VSCode often uses a different PATH than CMD - set the full path to python.exe, or pick from detected installs.',
0 commit comments