This isn't exactly Wingman, but I think @isovector is probably the man for the job (?) given what he's been working on... ``` case my expr of ``` In this case, we'll get some errors about allow "empty-case" and add "EmptyCase" etc. My suggestion: to add a code action that inserts empty case destructors: ``` case myMaybeValue of ``` becomes ``` case myMaybeValue of Nothing -> _ Just val -> _ ``` and now the same Wingman workflows are recovered.