You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
before:
● Node host › can run a command from plugin
failed request to "nvim_command" (see $NVIM_NODE_LOG_FILE for details, if it was set)
75 | request(name, args = []) {
76 | // Dummy error, to get stacktrace.
> 77 | const error = new Error(`failed request to "${name}" (see $NVIM_NODE_LOG_FILE for details, if it was set)`);
| ^
78 | return this.asyncRequest(name, args, error.stack);
79 | }
80 | _getArgsByPrefix(...args) {
at NeovimClient.request (../neovim/lib/api/Base.js:77:23)
at NeovimClient.request (../neovim/lib/api/Neovim.js:355:21)
at Object.command (__tests__/integration.test.ts:85:16)
after:
● Node host › can run a command from plugin
nvim_command: Vim:E492: Not an editor command: JSHostTestCmd
67 | return this[DO_REQUEST](name, args).catch(err => {
68 | // XXX: Get a `*.ts stacktrace. If we re-throw `err` we get a `*.js` trace. tsconfig issue?
> 69 | const newError = new Error(err.message);
| ^
70 | this.logger.error(`failed request to "%s": %s: %s`, name, newError.name, newError.message);
71 | throw newError;
72 | });
at ../neovim/lib/api/Base.js:69:34
at Object.<anonymous> (__tests__/integration.test.ts:85:5)
0 commit comments