forked from jisaacks/GitGutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
88 lines (88 loc) · 2.92 KB
/
Default.sublime-commands
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[
{
"caption": "GitGutter: Show Diff Popup",
"command": "git_gutter_diff_popup"
},
{
"caption": "GitGutter: Show Comparing Against",
"command": "git_gutter_show_compare"
},
{
"caption": "GitGutter: Compare Against HEAD",
"command": "git_gutter_compare_head"
},
{
"caption": "GitGutter: Compare Against Origin",
"command": "git_gutter_compare_origin"
},
{
"caption": "GitGutter: Compare Against Commit",
"command": "git_gutter_compare_commit"
},
{
"caption": "GitGutter: Compare Against File Commit",
"command": "git_gutter_compare_file_commit"
},
{
"caption": "GitGutter: Compare Against Branch",
"command": "git_gutter_compare_branch"
},
{
"caption": "GitGutter: Compare Against Tag",
"command": "git_gutter_compare_tag"
},
{
"caption": "Preferences: GitGutter Settings",
"command": "git_gutter_edit_settings",
"args": {
"base_file": "${packages}/GitGutter/GitGutter.sublime-settings",
"default": "// GitGutter Settings - User\n{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: GitGutter Settings - Default",
"command": "git_gutter_open_file",
"args": {"file": "${packages}/GitGutter/GitGutter.sublime-settings"}
},
{
"caption": "Preferences: GitGutter Settings - User",
"command": "git_gutter_open_file",
"args": {"file": "${packages}/User/GitGutter.sublime-settings"}
},
{
"caption": "Preferences: GitGutter Key Bindings",
"command": "git_gutter_edit_settings",
"args": {
"base_file": "${packages}/GitGutter/Default (${platform}).sublime-keymap",
"default": "// GitGutter Key Bindings - User\n{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: GitGutter Key Bindings - Default",
"command": "git_gutter_open_file",
"args": {"file": "${packages}/GitGutter/Default (${platform}).sublime-keymap"}
},
{
"caption": "Preferences: GitGutter Key Bindings - User",
"command": "git_gutter_open_file",
"args": {"file": "${packages}/User/Default (${platform}).sublime-keymap"}
},
{
"caption": "Preferences: GitGutter Popup Stylesheet",
"command": "git_gutter_edit_settings",
"args": {
"base_file": "${packages}/GitGutter/gitgutter_popup.css",
"default": "/* GitGutter Popup Stylesheet - User */\n\n"
}
},
{
"caption": "Preferences: GitGutter Popup Stylesheet - Default",
"command": "git_gutter_open_file",
"args": {"file": "${packages}/GitGutter/gitgutter_popup.css"}
},
{
"caption": "Preferences: GitGutter Popup Stylesheet - User",
"command": "git_gutter_open_file",
"args": {"file": "${packages}/User/gitgutter_popup.css"}
}
]