What are the differences between sublime and vscode?
##1. Sublime
Function Overview :
Sublime Text is a code editor (Sublime Text 2 (the latest version of sublime text 3) is a paid software, but it can be tried indefinitely, but payment reminders will pop up from time to time), and it is also HTML and prose advanced text editor. Sublime Text was developed by programmer Jon Skinner in January 2008. It was originally designed as a Vim with rich extension functions. Sublime Text has a beautiful user interface and powerful features such as code thumbnails, Python plug-ins, code snippets, etc. Key bindings, menus and toolbars can also be customized. The main features of Sublime Text include: spell check, bookmarks, complete Python API, Goto function, instant project switching, multi-selection, multi-window and more. Sublime Text is a cross-platform editor that supports Windows, Linux, Mac OS X and other operating systems.Main advantages:
1. Mainstream front-end development editor; 2. Small size and fast running speed; 3. The text function is powerful; 4. Supports compilation function and the output can be seen on the console; 5. The built-in python interpreter supports plug-in development to achieve scalability;6.Package Control: A large number of plug-ins supported by ST can be managed through it.Main Disadvantages:
1. Charged closed source. Although the charging problem does not affect the use, the problem brought by Biyuan is that a bug will not be repaired for thousands of years. It affects the use; 2. Although it starts and runs quickly, if you try to open xcode and run the project and use sublime at the same time, you will know what a crash is. If you enter a line of code, you will not be able to react for a long time (this The problem only exists in sublime text3); 3. Although there is a Package Control management plug-in, when installing the search plug-in, you can only see a simple one-sentence description, and subsequent plug-in configuration is inconvenient;4. When there are too many plug-ins, sublime will crash from time to time, and users cannot clearly know which plug-in is causing it. They can only uninstall and judge one by one; 5. Many plug-ins are in sublime text 3 is not compatible with sublime text 2. Many useful plug-ins on sublime text 2 cannot be used on sublime text 3; 6. I have to complain about the problem that sublime text 2 does not have a new window. Open different projects, you will know how inconvenient this is; 7. I also want to complain about the very unpleasant project function of sublime text. ctrl command p can only switch the recently opened project, even if you save it as Sublime project, as long as it has not been opened recently, this shortcut cannot be switched.
2. vscode
Function overview:
vscode is also a cross-platform text The editor has built-in strong support for JavaScript, TypeScript and Node.js, C, C#, Python, PHP and other languages.Main advantages:
1. It looks good and kills Notepad in minutes. Just uninstall Notepad; 2. Loading large files takes almost seconds. , I have tried opening a 100M project, no pressure; 3.C# supports highlighting, and compiled ones also support references; 4.JS, HTML, etc. support highlighting and completion ; 5. All platforms; 6. Free, this is a must-have; 7. Low memory usage; 8. Based on atom , but the performance is as fast as atom.Main Disadvantages:
1. It is not stable enough and often crashes. If it does not crash frequently, I will definitely only use it; 2. The plug-in is not perfect yet, but the development speed is quite fast; 3. The flexibility of debug is not enough; 4. The support for C# is not good enough; 5. Project loading is not supported, only folder loading is supported, and support for large projects with complex references is low. PHP Chinese website has a large number of freevscode introductory tutorials, everyone is welcome to learn!
The above is the detailed content of What are the differences between sublime and vscode?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



VS Code To switch Chinese mode: Open the settings interface (Windows/Linux: Ctrl, macOS: Cmd,) Search for "Editor: Language" settings Select "Chinese" in the drop-down menu Save settings and restart VS Code

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

To enable and set VSCode, follow these steps: Install and start VSCode. Custom preferences including themes, fonts, spaces, and code formatting. Install extensions to enhance features such as plugins, themes, and tools. Create a project or open an existing project. Use IntelliSense to get code prompts and completions. Debug the code to step through the code, set breakpoints, and check variables. Connect the version control system to manage changes and commit code.

VS Code supports Chinese settings, which can be completed by following the steps: Open the settings panel and search for "locale". Set "locale.language" to "zh-CN" (Simplified Chinese) or "zh-TW" (Traditional Chinese). Save settings and restart VS Code. The settings menu, toolbar, code prompts, and documents will be displayed in Chinese. Other language settings can also be customized, such as file tag format, entry description, and diagnostic process language.

VSCode is written in TypeScript and JavaScript. First, its core code base is written in TypeScript, an open source programming language that extends JavaScript and adds type checking capabilities. Secondly, some extensions and plug-ins of VSCode are written in JavaScript. This combination makes VSCode a flexible and extensible code editor.

The main differences between VS Code and PyCharm are: 1. Extensibility: VS Code is highly scalable and has a rich plug-in market, while PyCharm has wider functions by default; 2. Price: VS Code is free and open source, and PyCharm is paid for professional version; 3. User interface: VS Code is modern and friendly, and PyCharm is more complex; 4. Code navigation: VS Code is suitable for small projects, and PyCharm is more suitable for large projects; 5. Debugging: VS Code is basic, and PyCharm is more powerful; 6. Code refactoring: VS Code is basic, and PyCharm is richer; 7. Code

Visual Studio Code (VSCode) is developed by Microsoft, built using the Electron framework, and is mainly written in JavaScript. It supports a wide range of programming languages, including JavaScript, Python, C, Java, HTML, CSS, etc., and can add support for other languages through extensions.

Compiling code in VSCode is divided into 5 steps: Install the C extension; create the "main.cpp" file in the project folder; configure the compiler (such as MinGW); compile the code with the shortcut key ("Ctrl Shift B") or the "Build" button; run the compiled program with the shortcut key ("F5") or the "Run" button.
