Skip to content

Commit 3d086ac

Browse files
lambdalisueclaude
andcommitted
fix(test): suppress Vim message truncation in testutil with.ts
Add `shortmess-=T` to Vim startup options alongside `columns=9999` to prevent Vim from truncating long messages during test runs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e1b8213 commit 3d086ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/denops/testutil/with.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function withVim<T>(
5656
"-c",
5757
"visual", // Go to Normal mode
5858
"-c",
59-
"set columns=9999", // Avoid unwilling output newline
59+
"set columns=9999 shortmess-=T", // Avoid unwilling output newline/truncation
6060
...commands.flatMap((c) => ["-c", c]),
6161
];
6262
return withProcess(cmd, args, { verbose: conf.verbose, ...options });

0 commit comments

Comments
 (0)