Skip to content

Instantly share code, notes, and snippets.

@brodo
Last active March 19, 2017 10:54
Show Gist options
  • Save brodo/0634ed77514762fa063ee1936a5e9c68 to your computer and use it in GitHub Desktop.
Save brodo/0634ed77514762fa063ee1936a5e9c68 to your computer and use it in GitHub Desktop.
[
{ "keys": ["Down"], "command": "move_cursor_down" },
{ "keys": ["Shift+Down"], "command": "move_cursor_down", "args": {"toggle_selection": true} },
{ "keys": ["Up"], "command": "move_cursor_up" },
{ "keys": ["Shift+Up"], "command": "move_cursor_up", "args": {"toggle_selection": true} },
{ "keys": ["Cmd+Up"], "command": "move_cursor_home" },
{ "keys": ["Shift+Cmd+Up"], "command": "move_cursor_home", "args": {"toggle_selection": true} },
{ "keys": ["Cmd+Down"], "command": "move_cursor_end" },
{ "keys": ["Shift+Cmd+Down"], "command": "move_cursor_end", "args": {"toggle_selection": true} },
{ "keys": ["Alt+Down"], "command": "move_cursor_page_down" },
{ "keys": ["Shift+Alt+Down"], "command": "move_cursor_page_down", "args": {"toggle_selection": true} },
{ "keys": ["Alt+Up"], "command": "move_cursor_page_up" },
{ "keys": ["Shift+Alt+Up"], "command": "move_cursor_page_up", "args": {"toggle_selection": true} },
{ "keys": ["Space"], "command": "toggle_selection" },
{ "keys": ["Backspace"], "command": "go_up" },
{ "keys": ["Enter"], "command": "open" },
{ "keys": ["Cmd+H"], "command": "help" },
{ "keys": ["Cmd+E"], "command": "open_with_editor" },
{ "keys": ["Cmd+Shift+E"], "command": "open_with_editor", "args": {"create_new": true} },
{ "keys": ["Cmd+D"], "command": "copy" },
{ "keys": ["Cmd+R"], "command": "rename" },
{ "keys": ["Cmd+M"], "command": "move" },
{ "keys": ["Cmd+N"], "command": "create_directory" },
{ "keys": ["Delete"], "command": "move_to_trash" },
{ "keys": ["Cmd+T"], "command": "open_terminal" },
{ "keys": ["Cmd+F"], "command": "open_native_file_manager" },
{ "keys": ["Cmd+/"], "command": "copy_paths_to_clipboard" },
{ "keys": ["Cmd+Shift+Right"], "command": "open_in_right_pane" },
{ "keys": ["Cmd+Shift+Left"], "command": "open_in_left_pane" },
{ "keys": ["Cmd+C"], "command": "copy_to_clipboard" },
{ "keys": ["Cmd+V"], "command": "paste" },
{ "keys": ["Cmd+Alt+V"], "command": "paste_cut" },
{ "keys": ["Cmd+A"], "command": "select_all" },
{ "keys": ["Cmd+Backspace"], "command": "move_to_trash" },
{ "keys": ["Cmd+."], "command": "toggle_hidden_files" },
{ "keys": ["Cmd+1"], "command": "show_volumes", "args": {"pane_index": 0} },
{ "keys": ["Cmd+2"], "command": "show_volumes", "args": {"pane_index": 1} },
{ "keys": ["Cmd+P"], "command": "go_to" },
{ "keys": ["Cmd+Shift+P"], "command": "command_palette" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment