vscode-zig
vscode-zig copied to clipboard
Navigation stops working on builder-style expressions
For instance, cmd+click/F12 on remove()
works if code is formatted the normal way:
builder.add().remove().process().finalize();
But not if there are lines breaks:
var x = builder.
add().
remove().
process().
finalize();