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 27
| [ { keys: ['ctrl+d'], command: 'run_macro_file', args: { file: 'res://Packages/Default/Delete Line.sublime-macro' }, }, { keys: ['ctrl+shift+k'], command: 'find_under_expand' }, { keys: ['ctrl+k', 'ctrl+shift+k'], command: 'find_under_expand_skip' }, { keys: ['f12'], command: 'reindent', args: { single_line: false } }, { keys: ['f5'], command: 'revert' }, { keys: ['f1'], command: 'show_overlay', args: { overlay: 'command_palette' }, }, { keys: ['ctrl+alt+t'], command: 'open_terminal_project_folder' }, { keys: ['f2'], command: 'side_bar_rename' }, { keys: ['ctrl+n'], command: 'side_bar_new_file2' }, ];
|