-
Notifications
You must be signed in to change notification settings - Fork 64
/
Default.sublime-commands
120 lines (120 loc) · 3.47 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
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
[
{
"caption": "OmniSharpSublime: Restart Server",
"command": "omni_sharp_restart_server"
},
{
"caption": "OmniSharpSublime: Select Server Version",
"command": "omni_sharp_select_version"
},
{
"caption": "OmniSharpSublime: Goto Definition",
"command": "omni_sharp_go_to_definition"
},
{
"command": "omni_sharp_rename",
"caption": "OmniSharpSublime: Rename"
},
{
"command": "omni_sharp_find_usages",
"caption": "OmniSharpSublime: Find Usages"
},
{
"command": "omni_sharp_go_to_implementation",
"caption": "OmniSharpSublime: Go to implementation"
},
{
"command": "omni_sharp_override_targets",
"caption": "OmniSharpSublime: Override Targets"
},
{
"command": "omni_sharp_add_reference",
"caption": "OmniSharpSublime: Add Reference"
},
{
"command": "omni_sharp_fix_code_issue",
"caption": "OmniSharpSublime: Fix Code Issue"
},
{
"command": "omni_sharp_fix_usings",
"caption": "OmniSharpSublime: Fix Usings"
},
{
"command": "omni_sharp_code_actions",
"caption": "OmniSharpSublime: Code Actions"
},
{
"command": "omni_sharp_remove_from_project",
"caption": "OmniSharpSublime: Remove From Project"
},
{
"command": "omni_sharp_new_file",
"caption": "OmniSharpSublime: Add New Class",
"args": {"paths": []}
},
{
"command": "omni_sharp_new_file",
"caption": "OmniSharpSublime: Add New Interface",
"args":{"tmpltype":"interface","paths": []}
},
{
"caption": "OmniSharpSublime: Type Lookup",
"command": "omni_sharp_type_lookup",
},
{
"caption": "OmniSharpSublime: Hide Info Panel",
"command": "omni_sharp_hide_panel",
},
{
"caption": "OmniSharpSublime: Show Info Panel",
"command": "omni_sharp_show_panel",
},
{
"caption": "OmniSharpSublime: Run All Tests",
"command": "omni_sharp_run_unit_tests",
},
{
"caption": "OmniSharpSublime: Run Fixture Tests",
"command": "omni_sharp_run_unit_tests",
"args":{"testtype":"fixture"}
},
{
"caption": "OmniSharpSublime: Run Single Test",
"command": "omni_sharp_run_unit_tests",
"args":{"testtype":"single"}
},
{
"caption": "OmniSharpSublime: Build",
"command": "omni_sharp_build_project",
},
{
"caption": "OmniSharpSublime: ReBuild",
"command": "omni_sharp_build_project",
"args":{"buildtype":"rebuild"}
},
{
"caption": "OmniSharpSublime: Clean",
"command": "omni_sharp_build_project",
"args":{"buildtype":"clean"}
},
{
"caption": "OmniSharpSublime: Reload Solution",
"command": "omni_sharp_reload_solution",
},
{
"caption": "OmniSharpSublime: Navigate To",
"command": "omni_sharp_navigate_to",
},
{
"caption": "OmniSharpSublime: Show Server Output",
"command": "omni_sharp_show_server_output",
},
{
"caption": "OmniSharpSublime: Next Code Issue",
"command": "omni_sharp_next_code_issue"
},
{
"caption": "OmniSharpSublime: Last Code Issue",
"command": "omni_sharp_last_code_issue"
}
]