Me flipa el Sublime Text para editar código, y estos son mis preferencias y mis atajos de teclado sin los cuales ya no puedo vivir 🙂
Setting:
{
"bold_folder_labels": true,
"close_windows_when_empty": true,
"color_scheme": "Packages/Material Color Scheme/sublime/material-dark.tmTheme",
"create_window_at_startup": false,
"detect_indentation": false,
"detect_slow_plugins": false,
"font_face": "LucidaGrande",
"font_size": 17.0,
"highlight_modified_tabs": true,
"ignored_packages":
[
"CSSLint",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"open_files_in_new_window": false,
"tabSize": 6,
"trim_trailing_white_space_on_save": true,
"word_wrap": false,
"line_padding_bottom": 2
}
Keybindings:
[
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["super+alt+down"], "command": "duplicate_line" },
{ "keys": ["super+shift+c"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["super+b"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+shift+f"], "command": "reindent"},
{ "keys": ["super+alt+r"], "command": "show_panel", "args": {"panel": "replace"} },
{ "keys": ["super+space"], "command": "auto_complete" },
{ "keys": ["super+space"], "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 }
]
}
]