Sebastian Pfitzner

Results 121 issues of 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: ![image](https://user-images.githubusercontent.com/6735977/174311466-6a8e187f-05f6-494e-949f-9c59ab6f3815.png) After: ![image](https://user-images.githubusercontent.com/6735977/174311273-57ec3ac8-b1fe-4e30-b909-10870fecb9af.png)

![image](https://user-images.githubusercontent.com/6735977/167164034-0e10b9e7-b64a-4fa0-bb5c-2d70d4fdbc98.png) 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: ![image](https://user-images.githubusercontent.com/6735977/165733328-5ef1f4df-4433-4ab3-96c1-628753637050.png)

enhancement

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...

bug

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...

discussion