sublime text2 基本配置及结合Python 环境

参考:

http://www.cnblogs.com/figure9/p/sublime-text-complete-guide.html

http://www.zhihu.com/question/20750107

http://hi.baidu.com/meiyaowen/item/4649808e98908fe3e496e04e



setting-user:


{

"caret_style": "phase",

"color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme",

"create_window_at_startup": false,

"font_face": "Microsoft YaHei Mono",

"font_size": 11,

"highlight_line": true,

"highlight_modified_tabs": true,

"ignored_packages":

[

"Vintage"

],

"line_padding_bottom": 2,

"line_padding_top": 2,

"open_files_in_new_window": false,

"rulers":[80,100],

"theme": "Nexus.sublime-theme",

"translate_tabs_to_spaces": true,

"update_check": false

}


插件:

CodeIntel:自动补全+成员/方法提示(强烈推荐)
SublimeREPL:用于运行和调试一些需要交互的程序(E.G. 使用了Input()的程序)
Bracket Highlighter:括号匹配及高亮
SublimeLinter:代码pep8格式检查

Terminal



配色(Color):

"theme": "Nexus.sublime-theme",

"color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme",


Key Bindings user


[

{"keys":["ctrl+b"],"caption": "SublimeREPL: Python - RUN current file",

        "command": "run_existing_window_command", "args":

        {

            "id": "repl_python_run",

            "file": "config/Python/Main.sublime-menu"

        }}

]



原文地址:https://www.cnblogs.com/storymedia/p/4436076.html