我的 Sublime 設定

Preferences->Setting-User

{
"default_line_ending": "unix",
"draw_white_space": "all",
"font_size": 14,
"ignored_packages":
[
"Vintage"
],
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,

// set vertical rulers in specified columns.
// Use "rulers": [80] for just one ruler
"rulers": [80],

// turn on word wrap for source and text
// default value is "auto", which means off for source and on for text
"word_wrap": true,

// set word wrapping at this column
// default value is 0
"wrap_width": 80
}

Preferences->Key Binding-User

[
{ "keys": ["f12"], "command": "reindent", "args": { "single_line": false } },
// Refresh folder list with F5
{ "keys": ["f5"], "command": "refresh_folder_list" },
{ "keys": ["alt+/"], "command": "auto_complete" }, {
"keys": ["alt+/"],
"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 }
]
}
]