-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSublimerge 3.sublime-commands
108 lines (108 loc) · 2.75 KB
/
Sublimerge 3.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[
{
"caption": "Sublimerge: Compare to View...",
"command": "sublimerge_compare_to_view"
},
{
"caption": "Sublimerge: Compare to Revision...",
"command": "sublimerge_compare_to_revision"
},
{
"caption": "Sublimerge: Compare Revision to Revision...",
"command": "sublimerge_compare_revision_to_revision"
},
{
"caption": "Sublimerge: Show Changes Introduced in Revision...",
"command": "sublimerge_show_changes_in_revision"
},
{
"caption": "Sublimerge: Show Unsaved Changes",
"command": "sublimerge_show_unsaved_changes"
},
{
"caption": "Sublimerge: Compare Selections...",
"command": "sublimerge_compare_selections"
},
{
"caption": "Sublimerge: Compare Selection in Views...",
"command": "sublimerge_compare_to_view_selections"
},
{
"caption": "Sublimerge: Compare to Snapshot",
"command": "sublimerge_compare_to_snapshot"
},
{
"caption": "Sublimerge: Custom Comparison...",
"command": "sublimerge_custom_comparison"
},
{
"caption": "Sublimerge: Compare to Clipboard",
"command": "sublimerge_compare_to_clipboard"
},
{
"caption": "Sublimerge: Swap View",
"command": "sublimerge_swap_view"
},
{
"caption": "Sublimerge: Go to Previous Change",
"command": "sublimerge_go_up"
},
{
"caption": "Sublimerge: Go to Next Change",
"command": "sublimerge_go_down"
},
{
"caption": "Sublimerge: Merge Change From Right to Left",
"command": "sublimerge_merge_left"
},
{
"caption": "Sublimerge: Merge Change From Left to Right",
"command": "sublimerge_merge_right"
},
{
"caption": "Sublimerge: Merge All From Right to Left",
"command": "sublimerge_merge_left",
"args": {"merge_all": true}
},
{
"caption": "Sublimerge: Merge All From Left to Right",
"command": "sublimerge_merge_right",
"args": {"merge_all": true}
},
{
"caption": "Sublimerge: Enter Edit Mode",
"command": "sublimerge_begin_edit"
},
{
"caption": "Sublimerge: Leave Edit Mode",
"command": "sublimerge_end_edit"
},
{
"caption": "Sublimerge: Take Snapshot",
"command": "sublimerge_take_snapshot"
},
{
"caption": "Sublimerge: Revert to Snapshot",
"command": "sublimerge_restore_snapshot"
},
{
"caption": "Sublimerge: Replace Snapshot",
"command": "sublimerge_replace_snapshot"
},
{
"caption": "Sublimerge: Remove Snapshot",
"command": "sublimerge_remove_snapshot"
},
{
"caption": "Sublimerge: Purge VCS Cache",
"command": "sublimerge_purge_vcs_cache"
},
{
"caption": "Sublimerge: Validate VCS Cache",
"command": "sublimerge_validate_vcs_cache"
},
{
"caption": "Sublimerge: View VCS Cache",
"command": "sublimerge_view_vcs_cache"
}
]