Sublime 安装的插件列表

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

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

打开

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

复制以下的代码,粘贴,并保存

{
    "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

将下面的代码复制、粘贴进去。

[
    {
        //重建tag索引
        "command": "rebuild_ctags",
        "keys": ["ctrl+shift+r"]
    },
    {
        //跳到定义处
        "command": "navigate_to_definition" ,
        "keys": ["ctrl+shift+right"]
    },
    {
        //跳回之前
        "command": "jump_prev",
        "keys": ["ctrl+shift+left"]
    },
]

 解决Sublime包管理package control 报错 There are no packages available for installation

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

猜你喜欢

转载自gxl-ct001.iteye.com/blog/2323773