File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed
Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 77 "license" : " Apache-2.0" ,
88 "repository" : {
99 "type" : " git" ,
10- "url" : " https://github.com/phodal/auto-dev"
10+ "url" : " https://github.com/phodal/auto-dev-sketch "
1111 },
1212 "engines" : {
1313 "vscode" : " ^1.85.0"
Original file line number Diff line number Diff line change @@ -127,8 +127,10 @@ export async function activate(context: vscode.ExtensionContext) {
127127 // Show welcome message on first install
128128 const welcomeShownKey = 'autodev.welcomeShown' ;
129129 if ( ! context . globalState . get ( welcomeShownKey ) ) {
130+ const isMac = process . platform === 'darwin' ;
131+ const keyCombo = isMac ? 'Cmd+Shift+A' : 'Ctrl+Shift+A' ;
130132 vscode . window . showInformationMessage (
131- ' AutoDev extension installed successfully! Press Cmd+Shift+A to open chat.'
133+ ` AutoDev extension installed successfully! Press ${ keyCombo } to open chat.`
132134 ) ;
133135 context . globalState . update ( welcomeShownKey , true ) ;
134136 }
Original file line number Diff line number Diff line change @@ -70,13 +70,6 @@ export class StatusBarManager {
7070 error : '$(error)'
7171 } ;
7272
73- const colors : Record < StatusBarState , string | undefined > = {
74- idle : undefined ,
75- thinking : new vscode . ThemeColor ( 'statusBarItem.warningForeground' ) . toString ( ) ,
76- streaming : new vscode . ThemeColor ( 'statusBarItem.prominentForeground' ) . toString ( ) ,
77- error : new vscode . ThemeColor ( 'statusBarItem.errorForeground' ) . toString ( )
78- } ;
79-
8073 const icon = icons [ this . state ] ;
8174 const text = message || this . getDefaultText ( ) ;
8275
You can’t perform that action at this time.
0 commit comments