mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-22 15:34:49 +01:00
chore: removed activeworkspaces command
there's only one, and it shows a pin next to its name
This commit is contained in:
parent
74a5dc2ac0
commit
a37f91049b
3 changed files with 1 additions and 17 deletions
|
@ -138,12 +138,6 @@
|
||||||
"category": "codemp",
|
"category": "codemp",
|
||||||
"icon": "$(extensions-view-icon)"
|
"icon": "$(extensions-view-icon)"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"command": "codemp.activeWorkspaces",
|
|
||||||
"title": "Active Workspaces",
|
|
||||||
"category": "codemp",
|
|
||||||
"icon": "$(extensions-view-icon)"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"command": "codemp.leaveWorkspace",
|
"command": "codemp.leaveWorkspace",
|
||||||
"title": "Leave Workspace",
|
"title": "Leave Workspace",
|
||||||
|
|
|
@ -389,15 +389,6 @@ export async function leaveWorkspace() {
|
||||||
provider.refresh();
|
provider.refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function activeWorkspaces() {
|
|
||||||
if(client===null){
|
|
||||||
vscode.window.showWarningMessage("Connect first");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
workspace_list = await client.active_workspaces();
|
|
||||||
provider.refresh();
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function refresh() {
|
export async function refresh() {
|
||||||
if(client===null){
|
if(client===null){
|
||||||
vscode.window.showWarningMessage("Connect first");
|
vscode.window.showWarningMessage("Connect first");
|
||||||
|
|
|
@ -34,7 +34,6 @@ export function activate(context: vscode.ExtensionContext) {
|
||||||
vscode.commands.registerCommand('codemp.createWorkspace', commands.createWorkspace),
|
vscode.commands.registerCommand('codemp.createWorkspace', commands.createWorkspace),
|
||||||
vscode.commands.registerCommand('codemp.inviteWorkspace', commands.inviteToWorkspace),
|
vscode.commands.registerCommand('codemp.inviteWorkspace', commands.inviteToWorkspace),
|
||||||
vscode.commands.registerCommand('codemp.listWorkspaces', commands.listWorkspaces),
|
vscode.commands.registerCommand('codemp.listWorkspaces', commands.listWorkspaces),
|
||||||
vscode.commands.registerCommand('codemp.activeWorkspaces', commands.activeWorkspaces),
|
|
||||||
vscode.commands.registerCommand('codemp.leaveWorkspace', commands.leaveWorkspace),
|
vscode.commands.registerCommand('codemp.leaveWorkspace', commands.leaveWorkspace),
|
||||||
vscode.commands.registerCommand('codemp.createBuffer', commands.createBuffer),
|
vscode.commands.registerCommand('codemp.createBuffer', commands.createBuffer),
|
||||||
vscode.commands.registerCommand('codemp.listBuffers', commands.listBuffers),
|
vscode.commands.registerCommand('codemp.listBuffers', commands.listBuffers),
|
||||||
|
|
Loading…
Reference in a new issue