forked from SublimeGit/SublimeGit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault (Windows).sublime-keymap
More file actions
26 lines (20 loc) · 914 Bytes
/
Default (Windows).sublime-keymap
File metadata and controls
26 lines (20 loc) · 914 Bytes
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
[
/*** GIT STATUS ***/
// Refresh
{ "keys": ["ctrl+r"], "command": "git_status_refresh",
"context": [{ "key": "selector", "operator": "equal", "operand": "text.git-status" }]
},
// overwrite some stuff
{ "keys": ["ctrl+s"], "command": "noop", "context": [{ "key": "selector", "operator": "equal", "operand": "text.git-status"}]},
{ "keys": ["ctrl+z"], "command": "noop", "context": [{ "key": "selector", "operator": "equal", "operand": "text.git-status"}]},
{ "keys": ["ctrl+y"], "command": "noop", "context": [{ "key": "selector", "operator": "equal", "operand": "text.git-status"}]},
/*** END GIT STATUS ***/
/** GIT COMMIT **/
// Intercept ctrl+s
{ "keys": ["ctrl+s"], "command": "git_commit_save",
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.git-commit"}
]
}
/** END GIT COMMIT **/
]