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
The field `nodeType` defines the related type in the macro program. If the field is empty, a keyword item affects all symbol occurrences regardless of the symbols type. E.g. if you want to add a hower text to a particular P-Code variable, an item could be structed as follows:
129
+
The field `nodeType` defines the related type in the macro program. If the field is empty, a keyword item affects all symbol occurrences regardless of the symbols type. E.g. if you want to add a hover text to a particular P-Code variable, an item could be structed as follows:
130
130
131
131
```json
132
132
{
@@ -149,7 +149,7 @@ The field `nodeType` defines the related type in the macro program. If the field
149
149
| address | Address |
150
150
151
151
152
-
These scopes are used internally and are responsible for the colorization which depends on the chosen color theme like **[Noctis](https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis#review-details)**. To override the colorization just add **[rules](https://github.com/microsoft/vscode/wiki/Semantic-Highlighting-Overview#as-a-theme-author-do-i-need-to-change-my-theme-to-make-it-work-with-semantic-highlighting)** to the `editor.semanticTokenColorCustomizations` configuration property.
152
+
These scopes are used internally and are responsible for the symbol style which depends on the chosen color theme like **[Noctis](https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis#review-details)**. To override the style just add **[rules](https://github.com/microsoft/vscode/wiki/Semantic-Highlighting-Overview#as-a-theme-author-do-i-need-to-change-my-theme-to-make-it-work-with-semantic-highlighting)** to the `editor.semanticTokenColorCustomizations` configuration property.
153
153
154
154
In case the default scopes should be unchanged, the additional custom scopes `custom_1` - `custom_5` could be used:
155
155
@@ -163,7 +163,7 @@ The following example changes the symbol `M08`, which has a default scope `code`
163
163
{
164
164
"symbol": "M08",
165
165
"scope": "custom_1",
166
-
"description": "*Coolant*"
166
+
"description": ["*Coolant*", "ON"]
167
167
}
168
168
],
169
169
@@ -228,6 +228,7 @@ Three levels are supported: `error`, `warning` and `ignore`.
228
228
229
229
This extension contributes the following settings:
0 commit comments