We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c8294b commit 54d0ef3Copy full SHA for 54d0ef3
src/bootstrap/browser/index.ts
@@ -175,14 +175,17 @@ async function renderApp() {
175
[AINativeSettingSectionsId.IntelligentCompletionsPromptEngineeringEnabled]: false,
176
// 总是显示智能提示
177
[AINativeSettingSectionsId.IntelligentCompletionsAlwaysVisible]: true,
178
+ // 开启 Code Edits
179
+ [AINativeSettingSectionsId.CodeEditsLintErrors]: true,
180
+ [AINativeSettingSectionsId.CodeEditsLineChange]: true,
181
},
182
onigWasmUri: URI.file(electronEnv.onigWasmPath).toString(true),
183
treeSitterWasmDirectoryUri: URI.file(electronEnv.treeSitterWasmDirectoryPath).toString(true),
184
AINativeConfig: {
185
layout: {
186
menubarLogo: logo,
187
}
- }
188
+ },
189
190
191
const app = new ClientApp(opts);
0 commit comments