I have configured VS Code as the default application for HTML files, because that's usually what I want. However this means that "Export to CodePen" doesn't work. It opens a codepenexport.html file in VS Code but I think it needs to open in the browser to work.
It looks like the code is here:
|
await vscode.env.openExternal(exportUri); |
Perhaps we can instruct the open command to use the default browser?
I have configured VS Code as the default application for HTML files, because that's usually what I want. However this means that "Export to CodePen" doesn't work. It opens a
codepenexport.htmlfile in VS Code but I think it needs to open in the browser to work.It looks like the code is here:
codeswing/src/preview/codepen.ts
Line 197 in 9606004
Perhaps we can instruct the open command to use the default browser?