Skip to content

Commit

Permalink
commenting to test if this avoids hanging problem in CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric Halbronn committed May 21, 2024
1 parent 3af15e6 commit f7d3660
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/neovim-common/src/neovimApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ export async function showErrorMessage(
client: NeovimClient,
message: string,
): Promise<void> {
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, []);
}

0 comments on commit f7d3660

Please sign in to comment.