I’m using the awesome Julia mode in VSCode, thanks for that!
One slight issue however is that vscode seems to display incorrect error markers on some calls to functions with keyword arguments. Is it possible to get rid of that?
Examples:
function func1(x, y)
return x + y
end
function func2(x; y=3)
return x + y
end
function func3(x; y)
return x + y
end
function func4(; x, y)
return x + y
end
function example()
a = func1(2, 3)
b = func2(2)
c = func3(2; y=3) # displays error markers in VS Code
d = func4(x=2, y=3) # displays error markers in VS Code
end