5
I use visual studio code on Ubuntu, and would like to know if you have any way to open an html file with just one click for my default browser
5
I use visual studio code on Ubuntu, and would like to know if you have any way to open an html file with just one click for my default browser
2
2
Press Ctrl+ shift+ p(or F1) to open the command palette.
Type Tasks - Configure Task in the older versions Configure Task Runner. When selecting, the tasks.json file opens. Delete the displayed script and replace it with the other:
{
"version": "0.1.0",
"command": "explorer",
"windows": {
"command": "explorer.exe"
},
"args": ["test.html"]
}
And there’s also this extension
Live Server Preview
Browser other questions tagged visual-studio-code
You are not signed in. Login or sign up in order to post.
this extension does not work on my OS :/
– x8ss