Home > Article > Software Tutorial > How to fix Vscode view Vscode view fixing tips
How to fix Vscode view? Some friends are still unclear. Those who are interested can take a look at the Vscode view fixing techniques brought by the editor. It will definitely be helpful to you! How to fix Vscode view? Vscode view fixing tips 1. First, for example, we run "Toggle Status Bar Visibility" (Toggle Status Bar Visibility), and then open personal settings (JSON). We can find this one in the settings: 2. "workbench.statusBar .visible": false, this configuration is also very easy to understand. It means: statusBar (status bar) is not visibile (visible). 3. For another example, you can display the sidebar on the right side, just like in Visual Studio, you can run "Toggle Side Bar Position".
4. After completing this command, the following setting will appear in the personal settings: "workbench.sideBar.location": "right" and the position of the search view. You can run "Switch search view" Location" command. 5. VS Code will add the following code to the settings: "search.location": "panel"With the release of PHPStorm 2023.1, the options for user-customizable settings have been further enhanced. Now, you can specify different settings for different projects to maximize work efficiency. For example, you can choose to hide the status bar and sidebar in your personal settings to maintain a clean interface when editing individual files or opening new windows. And when you need to use these features, you only need to enable them for specific projects. The following article will introduce in detail the powerful functions of custom settings in PHPStorm 2023.1, helping you configure it according to your preferences and project needs, and improve your PHP development experience. ——php editor banana
7. When you finally open a certain project, you can decide whether to open them based on the situation of the project. For example, if this project uses Git, it may be more convenient to display the sidebar.
The above is the detailed content of How to fix Vscode view Vscode view fixing tips. For more information, please follow other related articles on the PHP Chinese website!