Home>Article>Development Tools> What does vscode do?
What does vscode do?
VSCode is a lightweight code editor from Microsoft. It is free and powerful. It supports JavaScript and NodeJS very well. It comes with many functions, such as code formatting and intelligent code prompts. Completion, Emmet plug-in, etc. VSCode recommends opening a project as a folder.
Recommended learning:vscode tutorial
Main functions
This editor also integrates all the features of a modern editor Features that should be included include syntax high lighting, customizable keyboard bindings, bracket matching and snippets. Somasegar also told me that the editor also has out-of-the-box support for Git.
Visual Studio Code provides a wealth of shortcut keys. Users can use the shortcut keys [Ctrl] [K] [S] (hold down the Ctrl key and then press the K and S keys) to bring up the shortcut key panel and view all shortcut key definitions. You can also double-click any shortcut key in the panel to assign a new shortcut key to a certain function. Some predefined common shortcut keys include: Format document (organize all the code in the current view), [Shift] [Alt] [F]; Format selected content (organize the selected part of the code in the current view), [ Ctrl] [K] [F]; Zoom in, [Ctrl] [Shift] [=]; Zoom out, [Ctrl] [Shift] [-]; Open a new external terminal (open a new command line prompt): [Ctrl][Shift][C].
The above is the detailed content of What does vscode do?. For more information, please follow other related articles on the PHP Chinese website!