Skip to content

Commit d2822e5

Browse files
Adjust code snippet spacing and formatting
1 parent 1f64f13 commit d2822e5

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ The above example would resolve to something like: `/Users/your-name/sites/my-si
4545
**Step 2:** Make sure to update your user **settings.json** to include the extensions language identifier for both ExpressionEngine and HTML files so that Emmet can autocomplete properly.
4646

4747
```javascript
48-
"emmet.includeLanguages": {
49-
"ee": "html"
50-
}
48+
"emmet.includeLanguages": {
49+
"ee": "html"
50+
}
5151
```
5252

5353
## Commands
@@ -73,14 +73,14 @@ After creating either a template, variable or partial you can still delete it fr
7373
You can customize your active color theme by adding the `editor.tokenColorCustomizations` property to your **settings.json**.
7474

7575
```javascript
76-
"editor.tokenColorCustomizations": {
77-
"textMateRules": [{
78-
"scope": "entity.name.tag.ee",
79-
"settings": {
80-
"foreground": "#B67FFF"
81-
}
82-
}]
76+
"editor.tokenColorCustomizations": {
77+
"textMateRules": [{
78+
"scope": "entity.name.tag.ee",
79+
"settings": {
80+
"foreground": "#B67FFF"
8381
}
82+
}]
83+
}
8484
```
8585

8686
View the full list of available [scope names](https://github.com/mindpixel-labs/vsc-expressionengine/wiki/Scope-Names) to override.
@@ -114,13 +114,13 @@ Route Variable | <sub>route</sub> | {route='$1'} |
114114
To trigger path and route variables within an anchor tag href string you should add the following to your user settings.json file to allow for IntelliSense in strings. This will provide you with a list of auto-completions.
115115

116116
```javascript
117-
"editor.suggest.snippetsPreventQuickSuggestions": false,
118-
"editor.tabCompletion": "on",
119-
"editor.quickSuggestions": {
120-
"comments": false,
121-
"other": true,
122-
"strings": true
123-
},
117+
"editor.suggest.snippetsPreventQuickSuggestions": false,
118+
"editor.tabCompletion": "on",
119+
"editor.quickSuggestions": {
120+
"comments": false,
121+
"other": true,
122+
"strings": true
123+
},
124124
```
125125

126126

0 commit comments

Comments
 (0)