VS Code: decoration-based matching, Ctrl+K bindings, README overhaul (from dev f84517152b7f)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-27 17:02:41 +02:00
parent 2eb16791d2
commit f84603ee19
10 changed files with 255 additions and 39 deletions

View File

@@ -1,11 +1,18 @@
{
"comments": {
"lineComment": "#",
"blockComment": ["#[", "]#"]
"blockComment": [
"#[",
"]#"
]
},
"brackets": [
["#[", "]#"]
[
"#[",
"]#"
]
],
"autoClosingPairs": [],
"surroundingPairs": []
"surroundingPairs": [],
"wordPattern": "@{1,3}[A-Za-z0-9_]+|[A-Za-z0-9_]+@{1,3}|@{1,3}|[A-Za-z0-9_]+"
}