summaryrefslogtreecommitdiff
path: root/packages/core/src
diff options
context:
space:
mode:
authorLeo <[email protected]>2025-06-12 18:28:20 +0100
committerGitHub <[email protected]>2025-06-12 17:28:20 +0000
commitad2e47dc20cb19ab892a40077e101e2bae93ac63 (patch)
treef978ba18a7fa9b75c6fbfba6b383fe1a901548df /packages/core/src
parenta9e56ee4606e2e6cb2ededd8834c10bcf25357b6 (diff)
remove enable editor flag (#984)
Diffstat (limited to 'packages/core/src')
-rw-r--r--packages/core/src/config/config.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts
index b94585a5..b94a88a4 100644
--- a/packages/core/src/config/config.ts
+++ b/packages/core/src/config/config.ts
@@ -81,7 +81,6 @@ export interface ConfigParameters {
telemetryLogUserPromptsEnabled?: boolean;
fileFilteringRespectGitIgnore?: boolean;
fileFilteringAllowBuildArtifacts?: boolean;
- enableModifyWithExternalEditors?: boolean;
checkpoint?: boolean;
}
@@ -113,7 +112,6 @@ export class Config {
private readonly geminiIgnorePatterns: string[] = [];
private readonly fileFilteringRespectGitIgnore: boolean;
private readonly fileFilteringAllowBuildArtifacts: boolean;
- private readonly enableModifyWithExternalEditors: boolean;
private fileDiscoveryService: FileDiscoveryService | null = null;
private gitService: GitService | undefined = undefined;
private readonly checkpoint: boolean;
@@ -147,8 +145,6 @@ export class Config {
params.fileFilteringRespectGitIgnore ?? true;
this.fileFilteringAllowBuildArtifacts =
params.fileFilteringAllowBuildArtifacts ?? false;
- this.enableModifyWithExternalEditors =
- params.enableModifyWithExternalEditors ?? false;
this.checkpoint = params.checkpoint ?? false;
if (params.contextFileName) {
@@ -297,10 +293,6 @@ export class Config {
return this.fileFilteringAllowBuildArtifacts;
}
- getEnableModifyWithExternalEditors(): boolean {
- return this.enableModifyWithExternalEditors;
- }
-
getCheckpointEnabled(): boolean {
return this.checkpoint;
}