sublime设置

快捷键:

[
    { 
        "keys": ["ctrl+shift+c"], 
        "command": "cancel_build" 
    },

    { 
        "keys": ["alt+1"], 
        "command": "toggle_side_bar" 
    },
    { "keys": ["alt+o"], "command": "prompt_open_folder" },

    { 
        "keys": ["ctrl+1"], 
        "command": "show_panel", 
        "args": {"panel": "build_results", "toggle": false}
    },

    {
        "keys": [ "ctrl+alt+w"],
        "command": "toggle_setting",
        "args": {"setting": "word_wrap"}
    },

    {
        "keys": ["ctrl+alt+f"],
        "command": "new_folder" 
    },

    {
        "keys": ["alt+b"],
        "command": "open_in_browser" 
    },

    {
        "keys": ["shift+enter"],
        "command": "run_macro_file", 
        "args": {"file": "res://Packages/Default/Add Line Before.sublime-macro"} 
    },
    
    { 
        "keys": ["alt+0"], 
        "command": "reindent",
        "args": {"single_line": false}
    },

    { 
        "keys": ["alt+9"], 
        "command": "pep8_autoformat"
    },
]

用户配置:

{
    "font_face": "YaHei Consolas Hybrid",
    "font_size": 15,
    "ignored_packages":
    [
        "Vintage"
    ],
    "theme": "Default.sublime-theme",
    "update_check": false
}


你可能感兴趣的:(sublime设置)