zoukankan      html  css  js  c++  java
  • 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"

            }}

    ]



  • 相关阅读:
    3--jsp编译指令和动作指令
    2-hello world
    1.搭建JSP开发环境
    4-Http通信
    P1879 [USACO06NOV]玉米田Corn Fields
    P3110 [USACO14DEC]驮运Piggy Back
    P2327 [SCOI2005]扫雷
    P1004 方格取数
    P2854 [USACO06DEC]牛的过山车Cow Roller Coaster
    P1353 [USACO08JAN]跑步Running
  • 原文地址:https://www.cnblogs.com/storymedia/p/4436076.html
Copyright © 2011-2022 走看看