List of plugins installed by Sublime

List of plugins installed by Sublime

 

 https://packagecontrol.io/installation

 

Aligment

AutoFileName

Color Highlighter

CodeFormatter

CTags

Bracket Highlighter

DocBlockr

Emmet

FileDiffs

JsFormat

PackageControl

SublimeLinter

Side Bar Enhancements

Sublime CodeIntel

SublimeLinter-php

SyncedSideBar

Trailing Spaces

 

jQuery Package for sublime Text

 

=========================================

Open

Preferences -->  Settings --> Preferences.sublime-settings —User

Copy the code below, paste, and save

{
    "auto_find_in_selection": true,
    "bold_folder_labels": true,
    "draw_minimap_border": true,
    "ensure_newline_at_eof_on_save": true,
    "fade_fold_buttons": false,
    "font_size": 14,
    "highlight_line": true,
    "ignored_packages":
    [
        "Vintage"
    ],
    "save_on_focus_lost": true,
    "tab_size": 4,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "word_wrap": true
}

 

=======================

import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)

 ctags

sudo apt-get install exuberant-ctags

 

"command": "/usr/bin/ctags",

 

 

===============================

 打开 Package Settings ---> Ctags ---> Key Bindings User

Copy and paste the code below into it.

[
    {
        // rebuild the tag index
        "command": "rebuild_ctags",
        "keys": ["ctrl+shift+r"]
    },
    {
        //skip to definition
        "command": "navigate_to_definition" ,
        "keys": ["ctrl+shift+right"]
    },
    {
        // jump back to before
        "command": "jump_prev",
        "keys": ["ctrl+shift+left"]
    },
]

 Solve Sublime package management package control error There are no packages available for installation

 http://www.cnblogs.com/ae6623/p/5338049.html

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=327072108&siteId=291194637