Home > Article > Development Tools > 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!