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
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,9 +30,13 @@ In most cases, you can also type `\n` to go to a new line
30
30
31
31
## General JSON Syntax
32
32
33
-
General syntax for ALL FILES is:
33
+
If you've never seen a JSON file before, it's [pretty easy to understand](<https://www.w3schools.com/js/js_json_datatypes.asp>). (just watch out for missing or trailing commas lol)
34
34
35
-
```jsonc
35
+
**Editing JSON files in Notepad is a very bad idea.** If you take a minute or two to install [VSCode](<https://code.visualstudio.com/download>) or similar, it will highlight all the errors and help you out with lots of other things.
36
+
37
+
The general syntax for ALL FILES is:
38
+
39
+
```js
36
40
{
37
41
"to-show":"name", // spawned when pressing hotkey
38
42
"to-show-alt":"alt-name", // spawned when holding alt and pressing hotkey
0 commit comments