@fresh-editor/fresh-editor 0.2.18 → 0.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +60 -0
- package/package.json +1 -1
- package/plugins/config-schema.json +242 -25
- package/plugins/diagnostics_panel.ts +4 -12
- package/plugins/diff_nav.i18n.json +128 -0
- package/plugins/diff_nav.ts +196 -0
- package/plugins/git_gutter.ts +5 -0
- package/plugins/lib/finder.ts +19 -12
- package/plugins/lib/fresh.d.ts +5 -1
- package/plugins/pkg.ts +4 -29
- package/plugins/schemas/package.schema.json +437 -272
- package/plugins/schemas/theme.schema.json +18 -0
|
@@ -826,6 +826,24 @@
|
|
|
826
826
|
212,
|
|
827
827
|
212
|
|
828
828
|
]
|
|
829
|
+
},
|
|
830
|
+
"punctuation_bracket": {
|
|
831
|
+
"description": "Punctuation brackets ({, }, (, ), [, ])",
|
|
832
|
+
"$ref": "#/$defs/ColorDef",
|
|
833
|
+
"default": [
|
|
834
|
+
212,
|
|
835
|
+
212,
|
|
836
|
+
212
|
|
837
|
+
]
|
|
838
|
+
},
|
|
839
|
+
"punctuation_delimiter": {
|
|
840
|
+
"description": "Punctuation delimiters (;, ,, .)",
|
|
841
|
+
"$ref": "#/$defs/ColorDef",
|
|
842
|
+
"default": [
|
|
843
|
+
212,
|
|
844
|
+
212,
|
|
845
|
+
212
|
|
846
|
+
]
|
|
829
847
|
}
|
|
830
848
|
}
|
|
831
849
|
}
|