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 53818b0 commit cd83f94Copy full SHA for cd83f94
denops/@denops-private/cli.ts
@@ -4,6 +4,10 @@ import {
4
} from "jsr:@lambdalisue/[email protected]";
5
import { parseArgs } from "jsr:@std/cli/parse-args";
6
7
+// Disable "Native acceleration" feature of `msgpackr` as an workaround of Deno panic.
8
+// https://github.com/denoland/deno/issues/23792
9
+Deno.env.set("MSGPACKR_NATIVE_ACCELERATION_DISABLED", "true");
10
+
11
const script = import.meta.resolve("./worker.ts");
12
13
async function handleConn(
0 commit comments