refactor: clean the old name-superide
This commit is contained in:
@@ -2,7 +2,7 @@ import * as vscode from 'vscode';
|
||||
import QuickAccessTreeProvider from './views/quick-access-tree';
|
||||
import DSHome from './home';
|
||||
|
||||
export class SuperIDEExtension {
|
||||
export class DevStarExtension {
|
||||
dsHome: DSHome;
|
||||
|
||||
constructor(private context: vscode.ExtensionContext) {
|
||||
@@ -17,10 +17,10 @@ export class SuperIDEExtension {
|
||||
|
||||
this.registerGlobalCommands(context);
|
||||
|
||||
this.startSuperIDEHome();
|
||||
this.startDevStarHome();
|
||||
}
|
||||
|
||||
async startSuperIDEHome() {
|
||||
async startDevStarHome() {
|
||||
vscode.commands.executeCommand('devstar.showHome');
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ export class SuperIDEExtension {
|
||||
}
|
||||
|
||||
export function activate(context: vscode.ExtensionContext) {
|
||||
return new SuperIDEExtension(context);
|
||||
return new DevStarExtension(context);
|
||||
}
|
||||
|
||||
export function deactivate() {
|
||||
|
Reference in New Issue
Block a user