search
HomeDevelopment ToolsVSCode[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

This article summarizes 23 VSCode plug-ins with various functions, which can help developers improve development efficiency and aesthetics. I hope it will be helpful to everyone!

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

#What is VSCode?

VSCode (full name: Visual Studio Code) is a cross-platform free source code editor developed by Microsoft. The software supports syntax highlighting, automatic code completion, code reconstruction, and definition viewing functions, and has built-in command line tools and Git version control system. Users can change themes and keyboard shortcuts to personalize settings, and can also install extensions through the built-in extension store to expand software functionality. [Recommended learning: "vscode Getting Started Tutorial"]

VSCode supports many programming languages ​​by default, including JavaScript, TypeScript , CSS and HTML; you can also download extensions to support Python, C/C , Java and other languages ​​including Go. VSCode also supports debugging Node.js programs.


[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics
VSCodeSupports opening multiple directories at the same time and saving information in the workspace for reuse. As a cross-platform editor, VSCode allows users to change the code page, line breaks, and programming language of a file.

Download and install VSCode

  • Windows
    Open the VSCode official website and download directly Can.

  • Linux
    Installing VSCode on the Linux platform is very slow. You can use the following method:

  • Download VSCode from domestic sources
  • Extract the compressed package and move it to the usr/local directory: sudo mv VSCode-linux-x64 / usr/local/
  • Get running permissions: sudo chmod x /usr/local/VSCode-linux-x64/code
  • Install VSCode( Note that only ordinary user permissions can be used here): /usr/local/VSCode-linux-x64/code
  • Create a soft link: sudo ln -s / usr/local/VSCode-linux-x64/code /usr/local/bin/vscode, then you can enter vscode through the terminal at any location to start the software

VSCode plug-in collection

Beautiful category

1 CodeSnap

CodeSnapYou can easily generate high-resolution, beautiful code pictures

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

The usage is very simple:

  • Use the command to adjust Codesnap Out

  • Copy the code to be part of the output

  • Save the image locally

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

2 :emojisense:

:emojisense:You can output emoticons for MarkDown documents or command lines to make programming more interesting

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

Just copy the tags you like in the Emoji collection. For example, below I added emoticons to the command line during the training process of the data set.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

3 Marquee

MarqueeYou can transform the programming home screen to be more practical or beautiful. With this extension you can watch news reports, weather! Additionally, Marquee enables users to add items to a personal to-do list, as well as a scratch board for quick notes. Some small but useful plugin features.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

4 Material Theme

Material ThemeInstalled for VScode Different themes allow you to customize the look of the entire editor to your liking.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

The following is the FireFly Pro theme that I personally use.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

5 Bookmarks

BookmarksAllows you to add bookmarks to code in your workspace for specific lines in different files.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

6 Bracket Pair Colorizer

Bracket Pair ColorizerAdd different colors to brackets for easy differentiation different blocks.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

7 vscode-icons

vscode-iconsReplace VSCode files with better-looking icons.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

Programming class (front-end)

1 Vetur

Vetur is the Vue project Provides syntax highlighting, intelligent sensing, etc.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

2 Auto Close Tag

Auto Close TagAutomatically close HTML/XML tags.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

3 Auto Rename Tag

Auto Rename TagAutomatically rename HTML/XML tags.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

4 format: CSS/LESS/SCSS formatter

formate: CSS/LESS/SCSS formatter Format CSS/LESS/SCSS to enhance readability.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

5 Live Server

Live ServerLaunches live reloading functionality for static and dynamic pages Develop local server.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

6 Debugger for Chrome

Debugger for ChromeEmbed JS code debugging into the Chrome browser.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

Programming Class (C/C)

1 C/C

C/C Added language support for C/C to VSCode, including functions such as IntelliSense and Debugging.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

2 C Intellisense

C IntellisenseAdds intelligent perception of C/C to VSCode.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

3 CMake Tools

##CMake Tools Adds CMake support and awareness to VSCode.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

Programming Class (Python)

1 Python

PythonAdded for VSCode Python language support has been added, including functions such as IntelliSense and Debugging.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

2 Jupyter

JupyterAdded functional support for Jupyter Notebook to VSCode.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

Efficiency Class

1 Git Graph

Git GraphVisualize your Git submission process.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

2 koroFileHeader

koroFileHeader is used to format and generate file header comments and function comments.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

3 Code Runner

Code Runner is used to directly run code snippets or files in multiple languages .

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

4 Better Comments

Better Comments Provides highlighting of various specific types of comments for code comments .

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

5 CodeTime

CodeTime Provides data analysis of your coding time every day.

[Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics

For more knowledge about VSCode, please visit: vscode tutorial! !

The above is the detailed content of [Hematemesis Summary] 23 VSCode plug-ins to help you improve development efficiency and aesthetics. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Visual Studio Professional and Enterprise: Paid Versions and FeaturesVisual Studio Professional and Enterprise: Paid Versions and FeaturesMay 10, 2025 am 12:20 AM

The difference between VisualStudioProfessional and Enterprise is in the functionality and target user groups. The Professional version is suitable for professional developers and provides functions such as code analysis; the Enterprise version is for large teams and has added advanced tools such as test management.

Choosing Between Visual Studio and VS Code: The Right Tool for YouChoosing Between Visual Studio and VS Code: The Right Tool for YouMay 09, 2025 am 12:21 AM

VisualStudio is suitable for large projects, VSCode is suitable for projects of all sizes. 1. VisualStudio provides comprehensive IDE functions, supports multiple languages, integrated debugging and testing tools. 2.VSCode is a lightweight editor that supports multiple languages ​​through extension, has a simple interface and fast startup.

Visual Studio: A Powerful Tool for DevelopersVisual Studio: A Powerful Tool for DevelopersMay 08, 2025 am 12:19 AM

VisualStudio is a powerful IDE developed by Microsoft, supporting multiple programming languages ​​and platforms. Its core advantages include: 1. Intelligent code prompts and debugging functions, 2. Integrated development, debugging, testing and version control, 3. Extended functions through plug-ins, 4. Provide performance optimization and best practice tools to help developers improve efficiency and code quality.

Visual Studio vs. VS Code: Pricing, Licensing, and AvailabilityVisual Studio vs. VS Code: Pricing, Licensing, and AvailabilityMay 07, 2025 am 12:11 AM

The differences in pricing, licensing and availability of VisualStudio and VSCode are as follows: 1. Pricing: VSCode is completely free, while VisualStudio offers free community and paid enterprise versions. 2. License: VSCode uses a flexible MIT license, and the license of VisualStudio varies according to the version. 3. Usability: VSCode is supported across platforms, while VisualStudio performs best on Windows.

Visual Studio: From Code to ProductionVisual Studio: From Code to ProductionMay 06, 2025 am 12:10 AM

VisualStudio supports the entire process from code writing to production deployment. 1) Code writing: Provides intelligent code completion and reconstruction functions. 2) Debugging and testing: Integrate powerful debugging tools and unit testing framework. 3) Version control: seamlessly integrate with Git to simplify code management. 4) Deployment and Release: Supports multiple deployment options to simplify the application release process.

Visual Studio: A Look at the Licensing LandscapeVisual Studio: A Look at the Licensing LandscapeMay 05, 2025 am 12:17 AM

VisualStudio offers three license types: Community, Professional and Enterprise. The Community Edition is free, suitable for individual developers and small teams; the Professional Edition is annually subscribed, suitable for professional developers who need more functions; the Enterprise Edition is the highest price, suitable for large teams and enterprises. When selecting a license, project size, budget and teamwork needs should be considered.

The Ultimate Showdown: Visual Studio vs. VS CodeThe Ultimate Showdown: Visual Studio vs. VS CodeMay 04, 2025 am 12:01 AM

VisualStudio is suitable for large-scale project development, while VSCode is suitable for projects of all sizes. 1. VisualStudio provides comprehensive development tools, such as integrated debugger, version control and testing tools. 2.VSCode is known for its scalability, cross-platform and fast launch, and is suitable for fast editing and small project development.

Visual Studio vs. VS Code: Comparing the Two IDEsVisual Studio vs. VS Code: Comparing the Two IDEsMay 03, 2025 am 12:04 AM

VisualStudio is suitable for large projects and Windows development, while VSCode is suitable for cross-platform and small projects. 1. VisualStudio provides a full-featured IDE, supports .NET framework and powerful debugging tools. 2.VSCode is a lightweight editor that emphasizes flexibility and extensibility, and is suitable for various development scenarios.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools