Home  >  Article  >  Development Tools  >  How to set up the browser with vscode

How to set up the browser with vscode

藏色散人
藏色散人Original
2019-11-18 10:05:4112914browse

How to set up the browser with vscode

#How to set up the browser for vscode?

How to set the default browser in Visual Studio Code

First search for and install View In Browser in the plug-in extension.

How to set up the browser with vscode

The fifth icon on the left is the plug-in search area

After installation, click view in browser to view the information, and scroll down to view the Configuration column

How to set up the browser with vscode

The arrow points to the default browser for opening html

At first, my Visual Studio Code did not have a default browser, but it is not possible here. To modify it directly, copy this line of code to set the default browser in the picture: "view-in-browser.customBrowser": "chrome", and replace the chrome process name with the name of the default browser you want to set. It should be noted that the process name is not the name displayed when the task manager is opened.

To check the process name, you can open the dos command window and enter tasklist, which will display all the current process names.

How to set up the browser with vscode

Disadvantages of this method Obviously, it's just hard to find.

So I recommend another one. After opening the browser, open the task manager, then check the process that you clicked on the browser, right-click and select the location of the open file, and the name of the exe file displayed is the process name.

After filling in the corresponding name for that line of code, open the file in the upper left corner of Visual Studio Code, select Preferences, and then click Settings

How to set up the browser with vscode

and then change the Copy the code to the area on the right and then ctrl s to save it

How to set up the browser with vscode

The above is the detailed content of How to set up the browser with vscode. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use vscode svnNext article:How to use vscode svn