Sort out the common ones
SublimeText
Frequently used development plug-ins, updated irregularly
ConvertToUTF8
The Chinese code GBK is converted to utf8, which can be directly searched and installed by CMD + shitf + P
SideBarEnhancements
Enhance st sidebar functionnecessary
Plug-in unit
Alignment
A code format alignment plug-in. The default shortcut key is Ctrl + CMD + A. if you use QQ, it is recommended to change the shortcut key of QQ. Because if I use Ctrl + Alt + A on the windows platform, it is easy to use.
var name = "sublimt"
var version = "2.0.1"
var title = "sublime text"
-----After formatting-----
var name = "sublimt"
var version = "2.0.1"
var title = "sublime text"
Function Name Display
Just look at the name. This is a small plug-in that can display the current method function name or method name in the lower left corner of the status bar. You can install it directly
Advanced new file link
When you create a new file or folder, you usually right-click the sidebar. But after installing this plug-in, you can simulate the way of creating files under Linux.
Just use OSXcmd+alt+n
You can open the input box to use under winctrl+alt+n
If there are multiple projects in a sidebar, the direct data project name can be located to this project. Pay attention to case
![]()
Ctags [links] ()
Code jump artifact. Because I don’t like the bloated IDE, so this plug-in is also for Stnecessary
Plug-in unit
- Using CMD + Shift + P to install ctags plug-in
-
Install ctags program
- Http://ctags.sourceforge.net download the installation package
- Download ctags-5.8.tar.gz and decompress. Compile 3 steps, no introduction
- Simply configure sublimetext ctags. The default ctags is installed in
/usr/local/bin/ctags
open
Set command to/usr/local/bin/ctags
"command": "/usr/local/bin/ctags",
- Refer to sublime text configuration under Mac OSX and use ctags to realize code jump
Codeigniter Utilities
Ci framework auxiliary plug-in, which can be directly input
ci
Then make a selection for quick completion
DocBlockr
Function method annotation, which can be configured to customize the annotation to be generated, such as the date when the method can be created and the author name
The plug-in works well after it is installed by default. But after using it for a long time, I found that there are two places that are hard to use.
- When a line has been commented, press enter again and the comment symbol will be added automatically(
//
) -
When a line has been commented, if you press
ctrl+enter
Then something like this will appear//////////////////// // dump($result); // ////////////////////
So add 2 lines of configuration respectively. First, open.Preferences->DocBlockr->Settings-User
Add the following 2 lines
"Jsdocs? Extend? Double? Slash": false, // corresponds to the first problem
"Jsdocs_decorate": false, // corresponds to the second problem
Bracket highlighter link
Please refer to official documents for specific settings
All autocomplete link
It is more powerful than the self-contained quick completion. It can complete your current input in all open tabs
sublimelinter
"show_errors_on_save": true,
Change this option totrue
Prompt error line number when savingpaths
Fill in PHP path
"paths": {
"linux": [],
"osx": ["/usr/bin"],
"windows": []
},
Reference: https://www.onlyke.com/html/4
Syncedsidebarbg link
Automatically synchronize sidebar bottom color to edit window bottom color
Just install it directly. For me, for example, a favorite color. If the installed theme doesn’t match the favorite color, this plug-in can putcolor scheme
The color of is synchronized to the sidebar
SyncedSideBar
Synchronize the location of the currently open file in the sidebar
Setting agent
clickPreferences > Package Settings > Package Control > Settings – User, enter the following in the configuration file:
{
"http_proxy": "http://proxy.domain.com:8080",
"https_proxy": "http://proxy.domain.com:8080"
}
Laravel Blade Space
Space in curly braces when rendering variables in the blade template
For example, I am in<link rel="stylesheet" href="">
When the cursor is positioned on the href attribute, press{{
Can finish{{ }}
Operation. Same support{{{
Autocomplete to{{{ }}}
and{{--
Completion is{{-- --}}
If laravel5 is used, input is also supported{!!
Autocomplete to{!! !!}}
See the plug-in address for detailsHow it works
Explain