Skip to content

Commit 0973350

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 0973350

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

src/core/webview/ClineProvider.ts

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2158,9 +2158,13 @@ ${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+
showGutterAnimation: ghostServiceSettings?.showGutterAnimation ?? false,
2166+
provider: ghostServiceSettings?.provider,
2167+
model: ghostServiceSettings?.model,
21642168
},
21652169
// kilocode_change end
21662170
organizationSettingsVersion,
@@ -2390,9 +2394,15 @@ ${prompt}
23902394
commitMessageApiConfigId: stateValues.commitMessageApiConfigId, // kilocode_change
23912395
terminalCommandApiConfigId: stateValues.terminalCommandApiConfigId, // kilocode_change
23922396
// kilocode_change start
2393-
ghostServiceSettings: stateValues.ghostServiceSettings ?? {
2394-
enableQuickInlineTaskKeybinding: true,
2395-
enableSmartInlineTaskKeybinding: true,
2397+
ghostServiceSettings: {
2398+
enableAutoTrigger: stateValues.ghostServiceSettings?.enableAutoTrigger ?? true,
2399+
enableQuickInlineTaskKeybinding:
2400+
stateValues.ghostServiceSettings?.enableQuickInlineTaskKeybinding ?? true,
2401+
enableSmartInlineTaskKeybinding:
2402+
stateValues.ghostServiceSettings?.enableSmartInlineTaskKeybinding ?? true,
2403+
showGutterAnimation: stateValues.ghostServiceSettings?.showGutterAnimation,
2404+
provider: stateValues.ghostServiceSettings?.provider,
2405+
model: stateValues.ghostServiceSettings?.model,
23962406
},
23972407
// kilocode_change end
23982408
// kilocode_change start - Auto-purge settings

0 commit comments

Comments
 (0)