Jake Zimmerman

Results 170 comments of Jake Zimmerman

We have a policy of testing changes to Sorbet against Stripe's codebase before merging them. I've kicked off a test run for the current PR. When the build finishes, I'll...

Whoops sorry about that! For what it’s worth the issue can be reproduced without Tapioca. I can put together a more minimal repro tomorrow.

Are you sure you're using ``` vim let g:pandoc#formatting#mode = 'hA' ``` vs ``` vim let g:pandoc#formatting#mode = 'ha' ``` I just tried it both ways and I was definitely...

Curious. I can't think of another plugin that might be interfering, but I'll see if I can't make a reproducible Vim setup (as a zip file or something).

> Incidentally, is there a way to disable autoformatting entirely, except perhaps for hard wrapping at line ends? Given some of the unpredictable behavior of pandoc's autoformatting, I'd presently much...

You can try setting up [prettier] through ALE to run on save as a fixer for markdown and pandoc filetypes. Prettier now has a Markdown autoformatter that uses common mark,...

This is the same issue as #4149. That one has more test cases, this one has better context.

Thanks for the clarification, this definitely seems like a bug!

#### Input [→ View on sorbet.run](https://sorbet.run/#%23%20typed%3A%20true%0Aextend%20T%3A%3ASig%0A%0Aclass%20Box%0A%20%20extend%20T%3A%3AGeneric%0A%20%20Elem%20%3D%20type_member%0Aend%0A%0Asig%20%7Breturns%28Box%5BString%5D%29%7D%0Adef%20foo%0A%20%20%23%20I%20believe%20a%20type%20parameter%20should%20be%20required%20here%3A%0A%20%20box%20%3D%20Box.new%0A%20%20T.reveal_type%28box%29%0A%0A%20%20%23%20Note%20that%20%0A%20%20box%0Aend%0A) ```ruby # typed: true extend T::Sig class Box extend T::Generic Elem = type_member end sig {returns(Box[String])} def foo # I believe a type parameter...