vscode-zig icon indicating copy to clipboard operation
vscode-zig copied to clipboard

Navigation stops working on builder-style expressions

Open cryptocode opened this issue 4 years ago • 0 comments

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();

cryptocode avatar Feb 14 '21 20:02 cryptocode