Sublime plug-ins and Configuration

~ ~ Continuously updated
every time you install sblime have their own Internet search plug-in, wasting a lot of time, of course, many of these articles online, but decided to follow his own record of habit, to facilitate the next use.

Before using the plug-in should be installed package control
recently sublime official website is not stable, open the [Preferences]> package control> When the install package will always report such a mistake:There Are No Packages Available For Installation

5616190-8ef38e013b328c7c.png
Unable to download plug-ins

If you can access science, then science and Internet access to open normally. After the plug-in installed it can no longer access the science, but the next time you need to install a new plug-in still have time to continue scientific Internet oh.
If science can not access it, online ways I have tried, to no avail, I gave up, but you can try, maybe helpful.

You will be happy to install it after installing the plug-in package control.

Plug
  1. Emmet
    automatically generate HTML
    more emmet can refer to: Emmet generate HTML syntax
  2. Alignment
    the Shift select few lines, Ctrl + Alt + A want to align
  3. Babel
    support jsx grammar, such that the normal display color codes
  4. autoprefixer
  5. AutoFileName
    file name completion (tips)
  6. JsFormat
    format JS, shortcut keys Ctrl + Alt + F.
  7. Ctags
    function tracker, Alt + (specific shortcut keys may be different) Click the function name will jump to the corresponding function
    sublime install tracking function ctags plugins
  8. DocBlockr
    comment autocomplete
  • /** + Enter/Tab
/**
 *
 */
  • /* + Enter/Tab
/*

 */
  • In a function on one line:/** + Enter/Tab
/**
 * @param  {[type]}
 * @return {[type]}
 */
  • /** + shift + Enter
/** */
  • In a function on one line:/** + shift + Enter
/** @param {[type]}  */
Configuration
  1. 行高亮:
    Preferences>Settings>Preferences.sublime-settings—User
    "highlight_line": true
  2. Custom Sidebar font size

Reproduced in: https: //www.jianshu.com/p/c5c8b0b836b9

Guess you like

Origin blog.csdn.net/weixin_34037515/article/details/91063112