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 033347f commit 023cfa1Copy full SHA for 023cfa1
1 file changed
packages/lib-neovim-common/src/neovimApi.ts
@@ -164,6 +164,6 @@ export async function showErrorMessage(
164
client: NeovimClient,
165
message: string,
166
): Promise<void> {
167
- const luaCode = `vim.notify("${message}")`;
168
- await client.executeLua(luaCode, []);
+ const luaCode = "vim.notify(...)";
+ await client.executeLua(luaCode, [message]);
169
}
0 commit comments