Hubert Kindermann
Hubert Kindermann
Interesting that you have the cursor behind the `)` character. These are completions for specific DateTime formats and should be provided inside the format string. Unfortunately, I wasn't able to...
Simpler crashing code: ```C# async void M() => throw null; M() ```
Ideally we should move the execution engine outside into separate process. There are another problems aside from crashes that would be solved by that. E.g. some of my scripts loads...
Yeah, that's a non-trivial problem. At first, I thought the problem is our formatting (I didn't read the callstack carefully) but it is a limitation of Roslyn's scripting engine. I...
Hm, maybe the interception shouldn't return `T[]` but some custom type: ```C# class __Span { public readonly T[] Array; public readonly OriginalLength; //custom ToString } ``` So the output would...
This is currently not configurable. As a workaround, you could probably (but I haven't tried) just manually replace Roslyn's dlls at `%userprofile%\.dotnet\tools\.store\csharprepl\0.6.5\csharprepl\0.6.5\tools\net7.0\any` (of course, supposing that its public API surface...
Shift+UpArrow behaves correctly.
Please see #148. This matches Visual Studio behavior and is wanted.
We are saving rendered comments to the file system cache and we store info about the font used for rendering. You can see it (and clear it) here:  I...
I'm not sure but I think it wouldn't be easy. It was nontrivial to render images inside the text and I deliberately choose to support only entire comments and not...