-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault (OSX).sublime-keymap
64 lines (55 loc) · 1.29 KB
/
Default (OSX).sublime-keymap
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[
// File history (align with chrome and vscode)
{
"keys": ["super+p"],
"command": "show_command_palette", "args": {"command": "file_history"},
},
// Stash (disable default - I often accidently stash when I want to save, thinking focus is on another window)
{
"keys": ["super+s"],
"command": "",
},
// Move commit up
{
"keys": ["alt+up"],
"command": "move_commit",
"args": { "commit": "$commit", "down": false },
},
// Move commit down
{
"keys": ["alt+down"],
"command": "move_commit",
"args": { "commit": "$commit", "down": true },
},
// Edit commit comment
{
"keys": ["super+r"],
"command": "edit_commit",
},
// Open in sublime
{
"keys": ["super+e"],
"command": "open_dir_in_sublime_text",
"args": { "dir": "$working_dir" },
},
// Show command palette (align with sublime text, chrome, vscode)
{
"keys": ["super+shift+p"],
"command": "show_command_palette"
},
// Open recent (align with vscode)
{
"keys": ["control+r"],
"command": "quick_switch_repository",
},
// Go to child commit (very useful)
{
"keys": ["super+up"],
"command": "navigate_to_child",
},
// Go to parent commit (very useful)
{
"keys": ["super+down"],
"command": "navigate_to_parent",
},
]