David Ferneding
David Ferneding
Additional info: A workaround for this is to explicitly create a new list and copying the content: ```c# public void ChangeCompanyName(string companyName) { if (CompanyInfo is null) return; CompanyInfo =...
I'm having the same issue on macOS. I was able to reproduce this issue with `gum file` and `gum filter`, other commands are displayed like before. I'm seeing the same...
Correction on `gum filter`: From what I can see, the behaviour has been like this since v0.3.0, so there is no regression / change for `gum filter` in v0.17.0
This has already been reported in #969, I proposed a fix with pr #975. The command works properly in 0.16.2
I fell like an extension method would help to communicate which value will be used if no ErrorOr-object has any errors: ```c# public static ErrorOr AppendErrors(this ErrorOr errorOr, params ErrorOr[]...
I agree that `ErrorOr[]` is not optimal. The reason I chose that instead of `ErrorOr[]` was to allow combining ErrorOr instances of multiple types. Since on success, only the first...
Sure, I can add both versions, great suggestion 👍
I agree, that would be a nice feature. The eight tuple restriction should probably not be an issue in most scenarios - I can't think of a situation where I...