Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
paulzakin committed Jun 30, 2024
1 parent bac2678 commit 386a748
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"search.exclude": {
"out": true
},
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",
"cSpell.words": ["biomejs", "textlint"]
}
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
},
"icon": "icon.png",
"engines": {
"vscode": "^1.89.0"
"vscode": "^1.90.0"
},
"main": "./out/extension.js",
"activationEvents": ["onLanguage:markdown"],
"activationEvents": [
"onLanguage:markdown"
],
"contributes": {
"configuration": {
"title": "Markdown Wiki",
Expand Down Expand Up @@ -47,12 +49,16 @@
{
"scopeName": "markdown.wiki.link",
"path": "./grammar/link.json",
"injectTo": ["text.html.markdown"]
"injectTo": [
"text.html.markdown"
]
},
{
"scopeName": "markdown.wiki.note",
"path": "./grammar/note.json",
"injectTo": ["text.html.markdown"]
"injectTo": [
"text.html.markdown"
]
}
],
"customEditors": [
Expand Down

0 comments on commit 386a748

Please sign in to comment.