diff --git a/packages/neovim-common/src/neovimApi.ts b/packages/neovim-common/src/neovimApi.ts index 08d3716999..54efe7939b 100644 --- a/packages/neovim-common/src/neovimApi.ts +++ b/packages/neovim-common/src/neovimApi.ts @@ -166,6 +166,7 @@ export async function showErrorMessage( client: NeovimClient, message: string, ): Promise { - const luaCode = `vim.notify("${message}")`; - await client.executeLua(luaCode, []); + // XXX - commenting to test if this avoids hanging problem in CI? + // const luaCode = `vim.notify("${message}")`; + // await client.executeLua(luaCode, []); }