File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "type" : " Feature" ,
3
+ "description" : " /review: update reference tracker checkbox label"
4
+ }
Original file line number Diff line number Diff line change 122
122
},
123
123
"additionalProperties" : false
124
124
},
125
- "amazonQ.showInlineCodeSuggestionsWithCodeReferences " : {
125
+ "amazonQ.showCodeWithReferences " : {
126
126
"type" : " boolean" ,
127
127
"markdownDescription" : " %AWS.configuration.description.amazonq%" ,
128
128
"default" : true
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ export async function activate(context: ExtContext): Promise<void> {
156
156
EditorContext . updateTabSize ( getTabSizeSetting ( ) )
157
157
}
158
158
159
- if ( configurationChangeEvent . affectsConfiguration ( 'amazonQ.showInlineCodeSuggestionsWithCodeReferences ' ) ) {
159
+ if ( configurationChangeEvent . affectsConfiguration ( 'amazonQ.showCodeWithReferences ' ) ) {
160
160
ReferenceLogViewProvider . instance . update ( )
161
161
if ( auth . isEnterpriseSsoInUse ( ) ) {
162
162
await vscode . window
@@ -212,7 +212,7 @@ export async function activate(context: ExtContext): Promise<void> {
212
212
if ( id === 'codewhisperer' ) {
213
213
await vscode . commands . executeCommand (
214
214
'workbench.action.openSettings' ,
215
- `@id:amazonQ.showInlineCodeSuggestionsWithCodeReferences `
215
+ `@id:amazonQ.showCodeWithReferences `
216
216
)
217
217
} else {
218
218
await openSettings ( 'amazonQ' )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { fromExtensionManifest } from '../../shared/settings'
6
6
import { ArrayConstructor } from '../../shared/utilities/typeConstructors'
7
7
8
8
const description = {
9
- showInlineCodeSuggestionsWithCodeReferences : Boolean , // eslint-disable-line id-length
9
+ showCodeWithReferences : Boolean , // eslint-disable-line id-length
10
10
importRecommendationForInlineCodeSuggestions : Boolean , // eslint-disable-line id-length
11
11
shareContentWithAWS : Boolean ,
12
12
workspaceIndex : Boolean ,
@@ -19,7 +19,7 @@ const description = {
19
19
20
20
export class CodeWhispererSettings extends fromExtensionManifest ( 'amazonQ' , description ) {
21
21
public isSuggestionsWithCodeReferencesEnabled ( ) : boolean {
22
- return this . get ( `showInlineCodeSuggestionsWithCodeReferences ` , false )
22
+ return this . get ( `showCodeWithReferences ` , false )
23
23
}
24
24
public isImportRecommendationEnabled ( ) : boolean {
25
25
return this . get ( `importRecommendationForInlineCodeSuggestions` , false )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export const amazonqSettings = {
20
20
"minIdeVersion" : { } ,
21
21
"ssoCacheError" : { }
22
22
} ,
23
- "amazonQ.showInlineCodeSuggestionsWithCodeReferences " : { } ,
23
+ "amazonQ.showCodeWithReferences " : { } ,
24
24
"amazonQ.allowFeatureDevelopmentToRunCodeAndTests" : { } ,
25
25
"amazonQ.importRecommendationForInlineCodeSuggestions" : { } ,
26
26
"amazonQ.shareContentWithAWS" : { } ,
You can’t perform that action at this time.
0 commit comments