forked from rust-lang/rust-enhanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RustEnhanced.sublime-commands
63 lines (63 loc) · 1.57 KB
/
RustEnhanced.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
[
{
"caption": "Rust: Toggle Syntax Checking",
"command": "toggle_rust_syntax_setting"
},
{
"caption": "Rust: Next Message",
"command": "rust_next_message"
},
{
"caption": "Rust: Prev Message",
"command": "rust_prev_message"
},
{
"caption": "Rust: Cancel Build",
"command": "rust_cancel"
},
{
"caption": "Rust: Create New Cargo Build Variant",
"command": "cargo_create_new_build"
},
{
"caption": "Rust: Configure Cargo Build",
"command": "cargo_configure"
},
{
"caption": "Preferences: Rust Enhanced Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/Rust Enhanced/RustEnhanced.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "Rust: List All Messages",
"command": "rust_list_messages"
},
{
"caption": "Rust: Run Test At Cursor",
"command": "cargo_test_at_cursor"
},
{
"caption": "Rust: Run Tests In Current File",
"command": "cargo_test_current_file"
},
{
"caption": "Rust: Run Benchmark At Cursor",
"command": "cargo_bench_at_cursor"
},
{
"caption": "Rust: Run Benchmarks In Current File",
"command": "cargo_bench_current_file"
},
{
"caption": "Rust: Open Debug Log",
"command": "rust_open_log"
},
{
"caption": "Rust: Popup Message At Cursor",
"command": "rust_message_popup"
}
]