Folgende Settings nutze ich:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
{ "color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", "detect_indentation": false, "folder_exclude_patterns": [ ".svn", ".git", ".hg", "CVS", "php/dist", "client/dist" ], "font_size": 11.0, "open_files_in_new_window": false, "preview_on_click": true, "tab_size": 4, "translate_tabs_to_spaces": false, "tab_completion": false, "word_wrap": false, "hot_exit": false, "remember_open_files": false, // Set to "none" to turn off drawing white space, "selection" to draw only the // white space within the selection, and "all" to draw all white space "draw_white_space": "selection" } |
Und folgende Key Bindings:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[ // delete line (eclipse style): { "keys": ["command+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }, // Quick (basic) format: { "keys": ["command+shift+f"], "command": "reindent" , "args": {"single_line": false}}, // swap lines: { "keys": ["alt+up"], "command": "swap_line_up" }, { "keys": ["alt+down"], "command": "swap_line_down" }, // duplicate lines: { "keys": ["command+alt+down"], "command": "duplicate_line" }, { "keys": ["command+alt+up"], "command": "duplicate_line" }, // global search: { "keys": ["ctrl+h"], "command": "show_panel", "args": {"panel": "find_in_files"} }, // toggle comment: { "keys": ["command+7"], "command": "toggle_comment", "args": { "block": false } } ] |
Wird unregelmäßig aktualisiert.