import { nvim_exec_lua } from "https://deno.land/x/denops_std@v3.9.0/function/nvim/mod.ts";
Execute Lua code. Parameters (if any) are available as ...
inside the chunk. The chunk can return a value.
Only statements are executed. To evaluate an expression,
prefix it with return
: return my_function(...)
Parameters: ~
{code} Lua code to execute
{args} Arguments to the code
Return: ~
Return value of Lua code if present or NIL.