Skip to content

Commit 6c126b9

Browse files
benbrandtskeshive
andauthored
fix(zed-integration): Ensure that the zed integration is classified as interactive (#13394)
Co-authored-by: Shreya Keshive <[email protected]>
1 parent 1d2e27a commit 6c126b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cli/src/config/config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,10 +515,11 @@ export async function loadCliConfig(
515515
const hasQuery = !!argv.query;
516516
const interactive =
517517
!!argv.promptInteractive ||
518+
!!argv.experimentalAcp ||
518519
(process.stdin.isTTY && !hasQuery && !argv.prompt);
519520
// In non-interactive mode, exclude tools that require a prompt.
520521
const extraExcludes: string[] = [];
521-
if (!interactive && !argv.experimentalAcp) {
522+
if (!interactive) {
522523
const defaultExcludes = [
523524
SHELL_TOOL_NAME,
524525
EDIT_TOOL_NAME,

0 commit comments

Comments
 (0)