@@ -278,76 +278,50 @@ export async function activate(ctx: vscode.ExtensionContext): Promise<void> {
278278 "coder.login" ,
279279 commands . login . bind ( commands ) ,
280280 ) ,
281- ) ;
282- ctx . subscriptions . push (
283281 vscode . commands . registerCommand (
284282 "coder.logout" ,
285283 commands . logout . bind ( commands ) ,
286284 ) ,
287- ) ;
288- ctx . subscriptions . push (
289285 vscode . commands . registerCommand ( "coder.open" , commands . open . bind ( commands ) ) ,
290- ) ;
291- ctx . subscriptions . push (
292286 vscode . commands . registerCommand (
293287 "coder.openDevContainer" ,
294288 commands . openDevContainer . bind ( commands ) ,
295289 ) ,
296- ) ;
297- ctx . subscriptions . push (
298290 vscode . commands . registerCommand (
299291 "coder.openFromSidebar" ,
300292 commands . openFromSidebar . bind ( commands ) ,
301293 ) ,
302- ) ;
303- ctx . subscriptions . push (
304294 vscode . commands . registerCommand (
305295 "coder.openAppStatus" ,
306296 commands . openAppStatus . bind ( commands ) ,
307297 ) ,
308- ) ;
309- ctx . subscriptions . push (
310298 vscode . commands . registerCommand (
311299 "coder.workspace.update" ,
312300 commands . updateWorkspace . bind ( commands ) ,
313301 ) ,
314- ) ;
315- ctx . subscriptions . push (
316302 vscode . commands . registerCommand (
317303 "coder.createWorkspace" ,
318304 commands . createWorkspace . bind ( commands ) ,
319305 ) ,
320- ) ;
321- ctx . subscriptions . push (
322306 vscode . commands . registerCommand (
323307 "coder.navigateToWorkspace" ,
324308 commands . navigateToWorkspace . bind ( commands ) ,
325309 ) ,
326- ) ;
327- ctx . subscriptions . push (
328310 vscode . commands . registerCommand (
329311 "coder.navigateToWorkspaceSettings" ,
330312 commands . navigateToWorkspaceSettings . bind ( commands ) ,
331313 ) ,
332- ) ;
333- ctx . subscriptions . push (
334314 vscode . commands . registerCommand ( "coder.refreshWorkspaces" , ( ) => {
335315 myWorkspacesProvider . fetchAndRefresh ( ) ;
336316 allWorkspacesProvider . fetchAndRefresh ( ) ;
337317 } ) ,
338- ) ;
339- ctx . subscriptions . push (
340318 vscode . commands . registerCommand (
341319 "coder.viewLogs" ,
342320 commands . viewLogs . bind ( commands ) ,
343321 ) ,
344- ) ;
345- ctx . subscriptions . push (
346322 vscode . commands . registerCommand ( "coder.searchMyWorkspaces" , async ( ) =>
347323 showTreeViewSearch ( MY_WORKSPACES_TREE_ID ) ,
348324 ) ,
349- ) ;
350- ctx . subscriptions . push (
351325 vscode . commands . registerCommand ( "coder.searchAllWorkspaces" , async ( ) =>
352326 showTreeViewSearch ( ALL_WORKSPACES_TREE_ID ) ,
353327 ) ,
0 commit comments