-
Notifications
You must be signed in to change notification settings - Fork 3
/
Boo.sublime-commands
58 lines (58 loc) · 1.25 KB
/
Boo.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
[{
"caption": "Boo: Navigate",
"command": "boo_navigate"
}, {
"caption": "Boo: Add/Remove import",
"command": "boo_import"
}, {
"caption": "Boo: GoTo imports",
"command": "boo_go_to_imports"
}, {
"caption": "Boo: GoTo to main",
"command": "boo_go_to_main"
}, {
"caption": "Boo: Show info for symbol",
"command": "boo_show_info"
}, {
"caption": "Boo: GoTo Declaration",
"command": "boo_go_to_declaration"
}, {
"caption": "Boo: GoTo Enclosing Type",
"command": "boo_go_to_enclosing_type"
}, {
"caption": "Boo: GoTo Previous Error",
"command": "boo_go_to_error",
"args": {
"reverse": true
}
}, {
"caption": "Boo: GoTo Next Error",
"command": "boo_go_to_error"
}, {
"caption": "Boo: GoTo Imports",
"command": "boo_go_to_imports"
}, {
"caption": "Boo: Default Settings",
"command": "open_file",
"args": {
"file": "${packages}/sublime-boo/Boo.sublime-settings"
}
}, {
"caption": "Boo: User Settings",
"command": "open_file",
"args": {
"file": "${packages}/User/sublime-boo.sublime-settings"
}
}, {
"caption": "Boo: Changes & Announcements",
"command": "open_file",
"args": {
"file": "${packages}/sublime-boo/CHANGELOG.md"
}
}, {
"caption": "Boo: Read Me",
"command": "open_file",
"args": {
"file": "${packages}/sublime-boo/README.mkd"
}
}]