2023-08-17 18:57:21 +02:00
|
|
|
[
|
|
|
|
{ "caption": "Preferences: Codemp Client Settings",
|
|
|
|
"command": "edit_settings",
|
|
|
|
"args": {
|
|
|
|
"base_file": "${packages}/CodempClient/CodempClient.sublime-settings",
|
|
|
|
"default": "{\n\t$0\n}\n"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ "caption": "Preferences: Codemp Client Key Bindings",
|
|
|
|
"command": "edit_settings",
|
|
|
|
"args": {
|
|
|
|
"base_file": "${packages}/CodempClient/Default (${platform}).sublime-keymap",
|
|
|
|
"default": "[\n\t$0\n]\n"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ "caption": "Codemp: Open Readme",
|
|
|
|
"command": "open_file",
|
|
|
|
"args": {
|
|
|
|
"file": "${packages}/CodempClient/README.md"
|
|
|
|
}
|
|
|
|
},
|
2024-11-03 17:57:31 +01:00
|
|
|
{
|
|
|
|
"caption": "Codemp: Browse Server",
|
|
|
|
"command": "codemp_browse_server",
|
|
|
|
"args": {}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Codemp: Browse Workspace",
|
|
|
|
"command": "codemp_browse_workspace",
|
|
|
|
"args": {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
2023-08-17 18:57:21 +02:00
|
|
|
{
|
|
|
|
// # on_window_command, does not trigger when called from the command palette
|
|
|
|
// # See: https://github.com/sublimehq/sublime_text/issues/2234
|
2023-11-24 10:19:03 +01:00
|
|
|
"caption": "Codemp: Connect",
|
2023-09-05 16:07:22 +02:00
|
|
|
"command": "codemp_connect",
|
2023-08-17 18:57:21 +02:00
|
|
|
"args": {
|
2024-11-03 17:57:31 +01:00
|
|
|
"server_host": "code.mp",
|
|
|
|
"user_name" : "cschen@codemp.dev",
|
|
|
|
"password" : "lmaodefaultpassword"
|
2023-08-17 18:57:21 +02:00
|
|
|
}
|
|
|
|
},
|
2024-08-24 18:45:42 +02:00
|
|
|
{
|
|
|
|
"caption": "Codemp: Disconnect Client",
|
|
|
|
"command": "codemp_disconnect",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {}
|
2024-08-24 18:45:42 +02:00
|
|
|
},
|
2024-02-24 16:56:22 +01:00
|
|
|
{
|
2024-08-23 20:59:06 +02:00
|
|
|
"caption": "Codemp: Join Workspace",
|
|
|
|
"command": "codemp_join_workspace",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-08-23 20:59:06 +02:00
|
|
|
// 'workspace_id': 'asd'
|
|
|
|
// 'buffer_id': 'test'
|
|
|
|
},
|
|
|
|
},
|
2024-08-24 18:45:42 +02:00
|
|
|
{
|
|
|
|
"caption": "Codemp: Leave Workspace",
|
|
|
|
"command": "codemp_leave_workspace",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-08-24 18:45:42 +02:00
|
|
|
// "id": 'lmaaaao'
|
|
|
|
}
|
|
|
|
},
|
2024-09-02 11:38:29 +02:00
|
|
|
{
|
|
|
|
"caption": "Codemp: Invite To Workspace",
|
|
|
|
"command": "codemp_invite_to_workspace",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-09-02 11:38:29 +02:00
|
|
|
// "id": 'lmaaaao'
|
|
|
|
// "user": 'lupo'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Codemp: Create Workspace",
|
|
|
|
"command": "codemp_create_workspace",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-09-02 11:38:29 +02:00
|
|
|
// "id": 'lmaaaao'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Codemp: Delete Workspace",
|
|
|
|
"command": "codemp_delete_workspace",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-09-02 11:38:29 +02:00
|
|
|
// "id": 'lmaaaao'
|
|
|
|
}
|
|
|
|
},
|
2024-08-23 20:59:06 +02:00
|
|
|
{
|
|
|
|
"caption": "Codemp: Join Buffer",
|
|
|
|
"command": "codemp_join_buffer",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-02-24 16:56:22 +01:00
|
|
|
// 'workspace_id': 'asd'
|
|
|
|
// 'buffer_id': 'test'
|
|
|
|
},
|
|
|
|
},
|
2023-08-17 18:57:21 +02:00
|
|
|
{
|
2024-08-24 18:45:42 +02:00
|
|
|
"caption": "Codemp: Leave Buffer",
|
|
|
|
"command": "codemp_leave_buffer",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-08-24 18:45:42 +02:00
|
|
|
// 'workspace_id': 'asd'
|
|
|
|
// 'buffer_id': 'test'
|
2023-08-17 18:57:21 +02:00
|
|
|
}
|
|
|
|
},
|
2024-08-29 08:17:52 +02:00
|
|
|
{
|
|
|
|
"caption": "Codemp: Create Buffer",
|
|
|
|
"command": "codemp_create_buffer",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-08-29 08:17:52 +02:00
|
|
|
// 'workspace_id': 'asd'
|
|
|
|
// 'buffer_id': 'test'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"caption": "Codemp: Delete Buffer",
|
|
|
|
"command": "codemp_delete_buffer",
|
2024-11-03 17:57:31 +01:00
|
|
|
"args": {
|
2024-08-29 08:17:52 +02:00
|
|
|
// 'workspace_id': 'asd'
|
|
|
|
// 'buffer_id': 'test'
|
|
|
|
}
|
|
|
|
},
|
2023-08-17 18:57:21 +02:00
|
|
|
]
|