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
1 changed files with 2 additions and 2 deletions

View File

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