Sebastian Pfitzner
Sebastian Pfitzner
Does this issue occur when all extensions are disabled?: Probably, but hard to reproduce - VS Code Version: 1.70.0 and insiders - OS Version: Linux x64 5.18.16-1-MANJARO Steps to Reproduce:...
Fixes https://github.com/timholy/Revise.jl/issues/691. Fixes https://github.com/timholy/Revise.jl/issues/687.
This is generally closer to what people expect when talking about references. Before:  After: 
 Todo: - [ ] better method selection - [x] better tooltips - [x] take request range into account - [x] get rid of hints in func defs - [x]...
https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_inlayHint Can expose type info a bit better that way, I think; this is what that looks like in JS: 
and better startup diagnostics. Requires https://github.com/julia-vscode/StaticLint.jl/pull/333.
``` julia> cst = CSTParser.parse("g(x;y)=x+y") 1:10 BinaryOpCall 1:6 Call 1:1 g 2:2 ( 3:4 x 5:5 Parameters 5:5 y 6:6 ) 7:7 OP: EQ 8:10 Block 8:10 BinaryOpCall 8:8 x...
Not necessarily an issue, but more of an feature request (or, if it's already implemented: a request for a better documentation). How do you get a plot to span multiple...
``` julia> print(JuliaFormatter.format_text(""" write("", \"\"\" second third \"\"\") """)) write( "", """ second third """, ) ``` Not strictly an issue since it parses correctly, but does look weird. Originally...