-
Notifications
You must be signed in to change notification settings - Fork 12
/
Default.sublime-commands
72 lines (72 loc) · 1.93 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
[
{
"caption": "Merlin: Load a package",
"command": "merlin_load_package"
},
{
"caption": "Merlin: Add directory to build path",
"command": "merlin_add_build_path"
},
{
"caption": "Merlin: Add directory to source path",
"command": "merlin_add_source_path"
},
{
"caption": "Merlin: Remove directory from build path",
"command": "merlin_remove_build_path"
},
{
"caption": "Merlin: Remove directory from source path",
"command": "merlin_remove_source_path"
},
{
"caption": "Merlin: Find .ml file",
"command": "merlin_find_ml"
},
{
"caption": "Merlin: Find .mli file",
"command": "merlin_find_mli"
},
{
"caption": "Merlin: Type expression under cursor",
"command": "merlin_type_command"
},
{
"caption": "Merlin: Enable syntax extension",
"command": "merlin_enable_extension"
},
{
"caption": "Merlin: Disable syntax extension",
"command": "merlin_disable_extension"
},
{
"caption": "Merlin: Locate definition under cursor",
"command": "merlin_locate_ml"
},
{
"caption": "Merlin: Locate definition under cursor (to .mli)",
"command": "merlin_locate_mli"
},
{
"caption": "Merlin: Locate definition by name",
"command": "merlin_locate_name_ml"
},
{
"caption": "Merlin: Locate definition by name (to .mli)",
"command": "merlin_locate_name_mli"
},
{
"caption": "Preferences: Merlin Settings – Default",
"command": "open_file",
"args": {
"file": "${packages}/Merlin/Merlin.sublime-settings"
}
},
{
"caption": "Preferences: Merlin Settings – User",
"command": "open_file",
"args": {
"file": "${packages}/User/Merlin.sublime-settings"
}
}
]