Skip to content

Commit

Permalink
Convert doneOn => completionEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Kearl committed May 13, 2021
1 parent 9f11358 commit 4c477ea
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@
"title": "Open an example folder",
"description": "To start, try opening an example folder that has been preconfigured for this tutorial. **This is optional**, but helps for following along!\n[Open Example](command:md-to-html.openExample)",
"media": {
"path": "media/openExample.md"
}
"path": "media/openExample.md"
},
"completionEvents": ["extensionInstalled:tyriar.luna-paint"]
},
{
"id": "md-to-html.showPreview",
Expand All @@ -50,7 +51,7 @@
"path": "media/preview.png",
"altText": "preview"
},
"doneOn": {"command": "markdown.showPreviewToSide" }
"completionEvents": ["onCommand:markdown.showPreviewToSide"]
},
{
"id": "md-to-html.convertToHTML",
Expand All @@ -60,7 +61,7 @@
"path": "media/convert-option.png",
"altText": "showing editor actions context menu"
},
"doneOn": {"command": "md-to-html.convertToHTML" }
"completionEvents": ["onCommand:md-to-html.convertToHTML"]
},
{
"id": "md-to-html.openInBrowser",
Expand All @@ -70,7 +71,7 @@
"path": "media/open-in-browser.png",
"altText": "use editor context menu to open an .html file in your browser"
},
"doneOn": {"command": "extension.openInDefaultBrowser" }
"completionEvents": ["onCommand:extension.openInDefaultBrowser"]
},
{
"id": "md-to-html.addKeybinding",
Expand Down

0 comments on commit 4c477ea

Please sign in to comment.