Sublime3 配置备忘

来源:互联网 发布:手机编程工具 编辑:程序博客网 时间:2024/06/06 01:19

Settings

{    "color_scheme": "Packages/Predawn/predawn.tmTheme",    "findreplace_small": true,    "font_face": "Source Code Pro",    "font_size": 10,    "ignored_packages":    [        "Vintage"    ],    "rulers":    [        80,        100,        120    ],    "shift_tab_unindent": true,    "show_encoding": true,    "show_line_endings": true,    "tab_size": 4,    "tabs_medium": true,    "theme": "predawn.sublime-theme",    "translate_tabs_to_spaces": true,    "word_wrap": true}

Key Bindings

[{    "keys": ["ctrl+shift+d"],    "command": "reindent",    "args": {        "single_line": false    }}, {    "keys": ["ctrl+y"],    "command": "redo"}, {    "keys": ["ctrl+t"],    "command": "new_file"}, {    "keys": ["ctrl+shift+u"],    "command": "upper_case"}, {    "keys": ["ctrl+u"],    "command": "lower_case"}, {    "keys": ["ctrl+,"],    "command": "show_overlay",    "args": {        "overlay": "goto",        "show_files": true    }}, {    "keys": ["ctrl+]"],    "command": "move_to",    "args": {        "to": "brackets"    }}, {    "keys": ["alt+-"],    "command": "jump_back"}, {    "keys": ["alt+="],    "command": "jump_forward"}, {    "keys": ["ctrl+alt+\\"],    "command": "shell_command"}, {    "keys": ["ctrl+enter"],    "command": "auto_complete"}, {    "keys": ["ctrl+enter"],    "command": "replace_completion_with_auto_complete",    "context": [{        "key": "last_command",        "operator": "equal",        "operand": "insert_best_completion"    }, {        "key": "auto_complete_visible",        "operator": "equal",        "operand": false    }, {        "key": "setting.tab_completion",        "operator": "equal",        "operand": true    }]}, {    "keys": ["ctrl+alt+f"],    "command": "htmlprettify"}]
0 0
原创粉丝点击