File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
packages/amazonq/src/app/chat Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export async function activate(context: ExtensionContext) {
1818 void amazonq . LspController . instance . trySetupLsp ( context , {
1919 startUrl : AuthUtil . instance . startUrl ,
2020 maxIndexSize : CodeWhispererSettings . instance . getMaxIndexSize ( ) ,
21- isVectorIndexEnabled : CodeWhispererSettings . instance . isLocalIndexEnabled ( ) ,
21+ isVectorIndexEnabled : false ,
2222 } )
2323 } , 5000 )
2424
@@ -30,14 +30,7 @@ export async function activate(context: ExtensionContext) {
3030 amazonq . listCodeWhispererCommandsWalkthrough . register ( ) ,
3131 amazonq . focusAmazonQPanel . register ( ) ,
3232 amazonq . focusAmazonQPanelKeybinding . register ( ) ,
33- amazonq . tryChatCodeLensCommand . register ( ) ,
34- vscode . workspace . onDidChangeConfiguration ( async ( configurationChangeEvent ) => {
35- if ( configurationChangeEvent . affectsConfiguration ( 'amazonQ.workspaceIndex' ) ) {
36- if ( CodeWhispererSettings . instance . isLocalIndexEnabled ( ) ) {
37- void setupLsp ( )
38- }
39- }
40- } )
33+ amazonq . tryChatCodeLensCommand . register ( )
4134 )
4235
4336 Commands . register ( 'aws.amazonq.learnMore' , ( ) => {
You can’t perform that action at this time.
0 commit comments