码迷,mamicode.com
首页 > 其他好文 > 详细

Sublime Text3自用设置及快捷键

时间:2019-06-01 23:18:57      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:abs   快捷   ext   mono   rand   current   color   sch   cond   

用户设置

{
    "color_scheme": "Packages/Color Scheme - Legacy/Monokai Bright.tmTheme",
    "command": "auto_indent_tag",
    "context":
    [
        {
            "key": "setting.auto_indent",
            "operand": true,
            "operator": "equal"
        },
        {
            "key": "selection_empty",
            "match_all": true,
            "operand": true,
            "operator": "equal"
        },
        {
            "key": "selector",
            "match_all": true,
            "operand": "punctuation.definition.tag.begin",
            "operator": "equal"
        },
        {
            "key": "preceding_text",
            "match_all": true,
            "operand": ">$",
            "operator": "regex_contains"
        },
        {
            "key": "following_text",
            "match_all": true,
            "operand": "^</",
            "operator": "regex_contains"
        }
    ],
    "default_enconding": "UTF-8",
    "font_face": "liang v2",
    "font_size": 16,
    "highlight_line": true,
    "ignored_packages":
    [
        "SideBarEnhancements",
        "Vintage"
    ],
    "keys":
    [
        "enter"
    ],
    "tab_size": 4,
    "theme": "Boxy Monokai.sublime-theme",
    "translate_tabs_to_spaces": true,
    "update_check": false,
    "word_wrap": false
}

快捷键设置

[
    { "keys": ["enter"], "command": "auto_indent_tag", "context":
            [
                { "key": "setting.auto_indent", "operator": "equal", "operand": true },
                { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
                { "key": "selector", "operator": "equal", "operand": "punctuation.definition.tag.begin", "match_all": true },
                { "key": "preceding_text", "operator": "regex_contains", "operand": ">$", "match_all": true },
                { "key": "following_text", "operator": "regex_contains", "operand": "^</", "match_all": true },
            ]
    },
    {   //python
        "keys": ["f5"],
        "caption": "SublimeREPL: Python - RUN current file",
        "command": "run_existing_window_command",
        "args":
        {
            "id": "repl_python_run",
            "file": "config/Python/Main.sublime-menu",
        },
    },
    {   //删除当前行
        "keys" : ["ctrl+d"],
        "command" : "run_macro_file",
        "args" : {
            "file" : "res://Packages/Default/Delete Line.sublime-macro",
        }
    },
    {   //复制当前行
        "keys": ["ctrl+alt+down"],
        "command": "duplicate_line",
    },
    {   //向上移动当前行
        "keys": ["alt+up"],
        "command": "swap_line_up"
    },
    {   //向上移动当前行
        "keys": ["alt+down"],
        "command": "swap_line_down"
    },

]

Sublime Text3自用设置及快捷键

标签:abs   快捷   ext   mono   rand   current   color   sch   cond   

原文地址:https://blog.51cto.com/14284354/2403690

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!