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 d6eba67 commit d018c5dCopy full SHA for d018c5d
vim.ts
@@ -35,8 +35,8 @@ export class Vim {
35
await this.#denops.cmd(cmd, context);
36
}
37
38
- async eval(expr: string, context: Context = {}): Promise<void> {
39
- await this.#denops.eval(expr, context);
+ async eval(expr: string, context: Context = {}): Promise<unknown> {
+ return await this.#denops.eval(expr, context);
40
41
42
async execute(command: string | string[]): Promise<void> {
0 commit comments