-
Notifications
You must be signed in to change notification settings - Fork 225
/
Default.sublime-commands
92 lines (92 loc) · 2.64 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
89
90
91
92
[
{
"caption": "GitGutter: Enable for View",
"command": "git_gutter_enable_view",
"args": { "enabled": true }
},
{
"caption": "GitGutter: Disable for View",
"command": "git_gutter_enable_view",
"args": { "enabled": false }
},
{
"caption": "GitGutter: Show Line Annotation",
"command": "git_gutter_blame"
},
{
"caption": "GitGutter: Show Diff Popup",
"command": "git_gutter_diff_popup"
},
{
"caption": "GitGutter: Goto Previous Change",
"command": "git_gutter_prev_change"
},
{
"caption": "GitGutter: Goto Next Change",
"command": "git_gutter_next_change"
},
{
"caption": "GitGutter: Copy Content from Commit",
"command": "git_gutter_copy_from_commit"
},
{
"caption": "GitGutter: Revert Change to Commit",
"command": "git_gutter_revert_change"
},
{
"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": "GitGutter: Support Info",
"command": "git_gutter_support_info"
},
{
"caption": "Preferences: GitGutter Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/GitGutter/GitGutter.sublime-settings",
"default": "// GitGutter Settings - User\n{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: GitGutter Key Bindings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/GitGutter/Default (${platform}).sublime-keymap",
"default": "// Key Bindings - User\n[\n\t$0\n]\n"
}
},
{
"caption": "Preferences: GitGutter Popup Stylesheet",
"command": "edit_settings",
"args": {
"base_file": "${packages}/GitGutter/gitgutter_popup.css",
"default": "/* GitGutter Popup Stylesheet - User */\n\n"
}
}
]