Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## v1.2.3 <sub>(May 27, 2026)</sub>

### Added
- Added support for NativeFunction class
- Added regex validation pattern for hex inputs in config settings

## v1.2.2 <sub>(May 25, 2026)</sub>

### Added
Expand Down
34 changes: 24 additions & 10 deletions forgevsc.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,24 @@
"properties": {
"name": {
"type": "string",
"default": "#ac75ff",
"description": "The highlight color used for function names."
"default": "#AC75FF",
"description": "The highlight color used for function names.",
"pattern": "^(?:#?(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}(?:[0-9a-fA-F]{2})?))?$",
"errorMessage": "Input must be a valid hex color, e.g. #AC75FF"
},
"dollar": {
"type": "string",
"default": "#fe7ceb",
"description": "The highlight color used for function dollar signs ($)."
"default": "#FE7CEB",
"description": "The highlight color used for function dollar signs ($).",
"pattern": "^(?:#?(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}(?:[0-9a-fA-F]{2})?))?$",
"errorMessage": "Input must be a valid hex color, e.g. #FE7CEB"
},
"semicolon": {
"type": "string",
"default": "#c586c0",
"description": "The highlight color used for function semicolons (;)."
"default": "#C586C0",
"description": "The highlight color used for function semicolons (;).",
"pattern": "^(?:#?(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}(?:[0-9a-fA-F]{2})?))?$",
"errorMessage": "Input must be a valid hex color, e.g. #C586C0"
}
}
},
Expand All @@ -56,22 +62,30 @@
"negation": {
"type": "string",
"default": "#4FA3FF",
"description": "The highlight color used for the negation operator (!)."
"description": "The highlight color used for the negation operator (!).",
"pattern": "^(?:#?(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}(?:[0-9a-fA-F]{2})?))?$",
"errorMessage": "Input must be a valid hex color, e.g. #4FA3FF"
},
"silent": {
"type": "string",
"default": "#FF9F43",
"description": "The highlight color used for the silent operator (#)."
"description": "The highlight color used for the silent operator (#).",
"pattern": "^(?:#?(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}(?:[0-9a-fA-F]{2})?))?$",
"errorMessage": "Input must be a valid hex color, e.g. #FF9F43"
},
"count": {
"type": "string",
"default": "#33D17A",
"description": "The highlight color used for the count operator (@[x])."
"description": "The highlight color used for the count operator (@[x]).",
"pattern": "^(?:#?(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}(?:[0-9a-fA-F]{2})?))?$",
"errorMessage": "Input must be a valid hex color, e.g. #33D17A"
},
"countDelimiter": {
"type": "string",
"default": "#76E3A0",
"description": "The highlight color used for the count operator delimiter (separator)."
"description": "The highlight color used for the count operator delimiter (separator).",
"pattern": "^(?:#?(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}(?:[0-9a-fA-F]{2})?))?$",
"errorMessage": "Input must be a valid hex color, e.g. #76E3A0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion out/autocompletion.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion out/autocompletion.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions out/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading