美文网首页
sublime设置

sublime设置

作者: 米酒真香 | 来源:发表于2019-11-27 21:50 被阅读0次

    快捷键:

    [
        { 
            "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_size": 13,
        "ignored_packages":
        [
            "Vintage"
        ],
        "theme": "Default.sublime-theme",
        "update_check": false,
        "tab_size": 4,
        "translate_tabs_to_spaces": true,
        "expand_tabs_on_save": true,
        "draw_white_space":"all"
    }
    

    相关文章

      网友评论

          本文标题:sublime设置

          本文链接:https://www.haomeiwen.com/subject/bjpnectx.html