Skip to content

Commit 3f0a8fb

Browse files
kevinvandijkmarkijbema
authored andcommitted
Enable autocomplete by default for new installs
and set the default of gutter animation to disabled
1 parent 2163129 commit 3f0a8fb

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/core/webview/ClineProvider.ts

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2158,9 +2158,12 @@ ${prompt}
21582158
sharingEnabled: sharingEnabled ?? false,
21592159
organizationAllowList,
21602160
// kilocode_change start
2161-
ghostServiceSettings: ghostServiceSettings ?? {
2162-
enableQuickInlineTaskKeybinding: true,
2163-
enableSmartInlineTaskKeybinding: true,
2161+
ghostServiceSettings: {
2162+
enableAutoTrigger: ghostServiceSettings?.enableAutoTrigger ?? true,
2163+
enableQuickInlineTaskKeybinding: ghostServiceSettings?.enableQuickInlineTaskKeybinding ?? true,
2164+
enableSmartInlineTaskKeybinding: ghostServiceSettings?.enableSmartInlineTaskKeybinding ?? true,
2165+
provider: ghostServiceSettings?.provider,
2166+
model: ghostServiceSettings?.model,
21642167
},
21652168
// kilocode_change end
21662169
organizationSettingsVersion,
@@ -2390,9 +2393,14 @@ ${prompt}
23902393
commitMessageApiConfigId: stateValues.commitMessageApiConfigId, // kilocode_change
23912394
terminalCommandApiConfigId: stateValues.terminalCommandApiConfigId, // kilocode_change
23922395
// kilocode_change start
2393-
ghostServiceSettings: stateValues.ghostServiceSettings ?? {
2394-
enableQuickInlineTaskKeybinding: true,
2395-
enableSmartInlineTaskKeybinding: true,
2396+
ghostServiceSettings: {
2397+
enableAutoTrigger: stateValues.ghostServiceSettings?.enableAutoTrigger ?? true,
2398+
enableQuickInlineTaskKeybinding:
2399+
stateValues.ghostServiceSettings?.enableQuickInlineTaskKeybinding ?? true,
2400+
enableSmartInlineTaskKeybinding:
2401+
stateValues.ghostServiceSettings?.enableSmartInlineTaskKeybinding ?? true,
2402+
provider: stateValues.ghostServiceSettings?.provider,
2403+
model: stateValues.ghostServiceSettings?.model,
23962404
},
23972405
// kilocode_change end
23982406
// kilocode_change start - Auto-purge settings

0 commit comments

Comments
 (0)