sublime text3
快捷键
win
配置
{
"font_size": 15,
// Display file encoding in the status bar
"show_encoding": true,
// Display line endings in the status bar
"show_line_endings": true,
"word_wrap": false,
"ignored_packages":
[
"Vintage",
],
"index_files": true,
}
快捷键
[
{ "keys": ["f4"], "command": "close_file" },
{ "keys": ["alt+d"], "command": "find_under_expand" },
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["alt+shift+up"], "command": "expand_region" },
{
"keys": ["alt+shift+down"],
"command": "expand_region",
"args": {"undo": true},
"context": [{ "key": "expand_region_soft_undo" }]
},
]
mac
配置
{
"font_size": 19,
"ignored_packages": ["Vintage",
],
// Display file encoding in the status bar
"show_encoding": true,
// Display line endings in the status bar
"show_line_endings": true,
"word_wrap": false,
}
安装插件
ExpandRegion 地址:aronwoost/sublime-expand-region: Like “Expand Selection to Scope”. But better! (github.com)
CodeFormatter 地址:codeFormatter