forked from deathaxe/sublime-gitformats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-keymap
51 lines (51 loc) · 2.33 KB
/
Default.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
[
{
"keys": ["d"], "command": "git_rebase_operation", "args": { "cmd": "drop" },
"context": [
{ "key": "selector", "operator": "equal", "operand": "meta.commit.git.rebase", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
],
},
{
"keys": ["e"], "command": "git_rebase_operation", "args": { "cmd": "edit" },
"context": [
{ "key": "selector", "operator": "equal", "operand": "meta.commit.git.rebase", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
],
},
{
"keys": ["f"], "command": "git_rebase_operation", "args": { "cmd": "fixup" },
"context": [
{ "key": "selector", "operator": "equal", "operand": "meta.commit.git.rebase", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
],
},
{
"keys": ["p"], "command": "git_rebase_operation", "args": { "cmd": "pick" },
"context": [
{ "key": "selector", "operator": "equal", "operand": "meta.commit.git.rebase", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
],
},
{
"keys": ["r"], "command": "git_rebase_operation", "args": { "cmd": "reword" },
"context": [
{ "key": "selector", "operator": "equal", "operand": "meta.commit.git.rebase", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
],
},
{
"keys": ["s"], "command": "git_rebase_operation", "args": { "cmd": "squash" },
"context": [
{ "key": "selector", "operator": "equal", "operand": "meta.commit.git.rebase", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
],
},
{
"keys": ["x"], "command": "git_rebase_operation", "args": { "cmd": "exec" },
"context": [
{ "key": "selector", "operator": "equal", "operand": "meta.commit.git.rebase", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
],
},
]