-
Notifications
You must be signed in to change notification settings - Fork 12
/
Default.sublime-commands
48 lines (48 loc) · 1.82 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
[
{
"caption": "Idris: Show type",
"command": "run_idris_command", "args": { "cmd": ":t" },
},{
"caption": "Idris: Reload",
"command": "run_idris_command", "args": { "cmd": "" }
},{
"caption": "Idris: Case split",
"command": "run_idris_command", "args": { "cmd": ":cs!" }
},{
"caption": "Idris: Add clause",
"command": "run_idris_command", "args": { "cmd": ":ac!" }
},{
"caption": "Idris: Add clause (pattern-matching proof)",
"command": "run_idris_command", "args": { "cmd": ":apc!" }
},{
"caption": "Idris: Add missing clauses",
"command": "run_idris_command", "args": { "cmd": ":am!" }
},{
"caption": "Idris: Refine item",
"command": "run_idris_command", "args": { "cmd": ":ref!", "inputExpr": "Refine item" }
},{
"caption": "Idris: Proof search",
"command": "run_idris_command", "args": { "cmd": ":ps!" }
},{
"caption": "Idris: Proof search with hints",
"command": "run_idris_command", "args": { "cmd": ":ps!", "inputExpr": "Proof search hints" }
},{
"caption": "Idris: Generate definition",
"command": "run_idris_command", "args": { "cmd": ":gd!" }
},{
"caption": "Idris: Make lemma",
"command": "run_idris_command", "args": { "cmd": ":ml!" },
},{
"caption": "Idris: Evaluate expression",
"command": "run_idris_command", "args": { "cmd": "", "evalExpr": true }
},{
"caption": "Idris: Make with pattern",
"command": "run_idris_command", "args": { "cmd": ":mw!" }
},{
"caption": "Idris: Make case",
"command": "run_idris_command", "args": { "cmd": ":mc!" }
},{
"caption": "Idris: Documentation",
"command": "run_idris_command", "args": { "cmd": ":doc" }
}
]