Skip to content

Commit

Permalink
highlight unexpected characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Yesterday17 committed May 29, 2022
1 parent 20da683 commit 0394ea8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"recommendations": ["tamasfe.even-better-toml", "bodil.prettier-toml"],
"recommendations": [
"tamasfe.even-better-toml",
"bodil.prettier-toml",
"fabiospampinato.vscode-highlight"
],
"unwantedRecommendations": ["bungcip.better-toml", "be5invis.toml"]
}
19 changes: 19 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
{
"[toml]": {
"editor.defaultFormatter": "bodil.prettier-toml"
},
"highlight.regexes": {
"(〜)": [
{
"borderWidth": "1px",
"borderStyle": "solid",
"borderColor": "yellow",
"color": "red"
}
],
"([·•])": [
{
"borderWidth": "1px",
"borderStyle": "solid",
"borderColor": "yellow",
"color": "red"
}
],
"([·᛫‧∘∙⋅◦⦁⸰⸱・𐄁])": [{ "color": "yellow" }]
}
}

0 comments on commit 0394ea8

Please sign in to comment.