-
Notifications
You must be signed in to change notification settings - Fork 64
/
Context.sublime-menu
139 lines (138 loc) · 4.6 KB
/
Context.sublime-menu
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[
{
"caption": "OmniSharpSublime",
"id": "omnisharp_context",
"children":
[
{
"command": "omni_sharp_go_to_definition",
"caption": "Goto Definition"
},
{
"command": "omni_sharp_rename",
"caption": "Rename"
},
{
"command": "omni_sharp_find_usages",
"caption": "Find Usages"
},
{
"command": "omni_sharp_go_to_implementation",
"caption": "Go to implementation"
},
{
"command": "omni_sharp_format_document",
"caption": "Format Document"
},
{
"command": "omni_sharp_override_targets",
"caption": "Override"
},
{
"command": "omni_sharp_add_reference",
"caption": "Add Reference"
},
{
"command": "omni_sharp_fix_code_issue",
"caption": "Fix Code Issue"
},
{
"command": "omni_sharp_fix_usings",
"caption": "Fix Usings"
},
{
"command": "omni_sharp_code_actions",
"caption": "Code Actions"
},
{
"command": "omni_sharp_remove_from_project",
"caption": "Remove From Project"
},
{
"caption": "New C# Class",
"id": "omnisharp-new-class",
"command": "omni_sharp_new_file",
"args": {"paths": []}
},
{
"caption": "New C# Interface",
"id": "omnisharp-new-interface",
"command": "omni_sharp_new_file",
"args":{"tmpltype":"interface","paths": []}
},
{
"caption": "Type Lookup",
"command": "omni_sharp_type_lookup",
},
{
"caption": "Reload Solution",
"command": "omni_sharp_reload_solution",
},
{
"caption": "Navigate To",
"command": "omni_sharp_navigate_to",
},
{
"caption": "Show Info Panel",
"command": "omni_sharp_show_panel",
},
{
"caption": "Hide Info Panel",
"command": "omni_sharp_hide_panel",
},
{
"caption": "Show Server Output",
"command": "omni_sharp_show_server_output",
},
{
"caption": "Next Code Issue",
"command": "omni_sharp_next_code_issue"
},
{
"caption": "Last Code Issue",
"command": "omni_sharp_last_code_issue"
},
{
"caption": "Build",
"children":[
{
"caption": "Build",
"command": "omni_sharp_build_project",
},
{
"caption": "ReBuild",
"command": "omni_sharp_build_project",
"args":{"buildtype":"rebuild"}
},
{
"caption": "Clean",
"command": "omni_sharp_build_project",
"args":{"buildtype":"clean"}
},
]
},
{
"caption": "Unit Tests",
"children":[
{
"caption": "Run All Tests",
"id": "omnisharp-run-tests",
"command": "omni_sharp_run_unit_tests",
},
{
"caption": "Run Fixture Tests",
"id": "omnisharp-run-fixture-tests",
"command": "omni_sharp_run_unit_tests",
"args":{"testtype":"fixture"}
},
{
"caption": "Run Single Test",
"id": "omnisharp-run-single-tests",
"command": "omni_sharp_run_unit_tests",
"args":{"testtype":"single"}
},
]
}
]
}
]