-
Notifications
You must be signed in to change notification settings - Fork 31
/
Default.sublime-commands
120 lines (120 loc) · 2.84 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": "Floobits - Settings (~/.floorc.json)",
"command": "floobits_open_settings"
},
{
"caption": "Floobits - Share Directory (Public)",
"command": "floobits_share_dir",
"args": {
"api_args": {"perms": {"AnonymousUser": ["view_room"]}}
}
},
{
"id": "floobits_share_dir_private",
"caption": "Floobits - Share Directory (Private)",
"command": "floobits_share_dir",
"args": {
"api_args": {"perms": {"AnonymousUser": []}}
}
},
{
"caption": "Floobits - Join Recent Workspace",
"command": "floobits_join_recent_workspace"
},
{
"caption": "Floobits - Join Workspace",
"command": "floobits_prompt_join_workspace"
},
{
"caption": "Floobits - Refresh Workspace",
"command": "floobits_refresh_workspace"
},
{
"caption": "Floobits - Delete Workspace",
"command": "floobits_delete_workspace"
},
{
"caption": "Floobits - Open Workspace Settings (in Browser)",
"command": "floobits_open_workspace_settings"
},
{
"caption": "Floobits - Open Workspace in a Google+ Hangout",
"command": "floobits_create_hangout"
},
{
"caption": "Floobits - Open Workspace in your Browser",
"command": "floobits_open_web_editor"
},
{
"caption": "Floobits - Request Edit Permission",
"command": "floobits_request_permision",
"args": {
"perms": ["edit_room"]
}
},
{
"caption": "Floobits - Follow Workspace Changes",
"command": "floobits_enable_follow_mode"
},
{
"caption": "Floobits - Follow Workspace Changes in Split",
"command": "floobits_follow_split"
},
{
"caption": "Floobits - Stop Following Workspace",
"command": "floobits_disable_follow_mode"
},
{
"caption": "Floobits - Summon Everyone",
"command": "floobits_summon"
},
{
"caption": "Floobits - Ping (aliases Summon)",
"command": "floobits_summon"
},
{
"caption": "Floobits - Clear Highlights",
"command": "floobits_clear_highlights"
},
{
"caption": "Floobits - Leave Workspace",
"command": "floobits_leave_workspace"
},
{
"caption": "Floobits - Complete Sign Up",
"command": "floobits_pinocchio"
},
{
"caption": "Floobits - Add To Workspace",
"command": "floobits_add_to_workspace",
"args": {
"paths": null,
"current_file": true
}
},
{
"caption": "Floobits - Remove From Workspace",
"command": "floobits_remove_from_workspace",
"args": {
"paths": null,
"current_file": true
}
},
{
"caption": "Floobits - Help",
"command": "floobits_help"
},
{
"caption": "Floobits - List Users",
"command": "floobits_list_users"
},
{
"caption": "Floobits - Follow User",
"command": "floobits_follow_user"
},
{
"caption": "Floobits - Request Code Review",
"command": "floobits_request_code_review"
}
]