We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10230f commit d6e6474Copy full SHA for d6e6474
with_test.ts
@@ -31,6 +31,8 @@ for (const mode of ["vim", "nvim"] as const) {
31
await withDenops(mode, async (denops: Denops) => {
32
await denops.cmd("echomsg 'Hello. Hello. Hello. Hello. Hello. Hello.'");
33
await denops.cmd("echomsg 'World. World. World. World. World. World.'");
34
+ // To avoid message cutoff, execute arbitrary command.
35
+ await denops.cmd("redraw");
36
}, { verbose: true });
37
const rawOutput = s.calls.map((c) => c.args[0]);
38
const normOutput = rawOutput.join("").split("\r\n").map((v) => v.trim());
0 commit comments