mzte-nv: fix telescope path transformer

This commit is contained in:
LordMZTE 2024-04-21 21:09:40 +02:00
parent cc5c19cff0
commit be70635b95
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -41,8 +41,8 @@ fn lPathTransformerClosure(l: *c.lua_State) !c_int {
ffi.luaPushString(l, path); ffi.luaPushString(l, path);
} }
c.lua_call(l, 2, 1); c.lua_call(l, 2, 2);
return 1; return 2;
} }
fn transformJdtlsURI(uri_str: []const u8, writer: anytype) !void { fn transformJdtlsURI(uri_str: []const u8, writer: anytype) !void {