Steffan Andrews

Results 35 comments of Steffan Andrews

This is a Core MIDI bug specific to Swift that may not affect many - only affects thru connections using specific API. Seems to affect Big Sur and Monterey. From...

I hate it too, just looking out for others 😎

I can foresee some other options being added in future so wouldn't be a bad idea to figure it out. And another reason why unit tests will become increasingly useful...

> My proposition to have an option for this: > > ```swift > ClickableCard(image: "", > title: "", > value: "", > action: { }) That's what my example already...

Yeah, because of assumptions the parsing makes, it can format things in an unexpected way so you have to be fairly specific about what you highlight sometimes. I find myself...

One major benefit to using a formal AST is that you could format an entire file in one go. I often come across code I inherit or old code I...

I don't think it's a replacement necessarily, after testing them out. It's also not exactly the same as Multiliner, you have to tweak the rules to get them to force...

Already addressed in #17 and will be in next release. Repo README already used Key Bindings screenshot and the app now adopts it as well.

In OSCServer.swift, ```swift open class OSCServer { // ... open var delegate: OSCServerDelegate? // ... } ``` `delegate` is holding a strong reference here. `open var delegate` should be `open...

There could still be retain cycles elsewhere in SwiftOSC or in your code. That was just the most obvious one I spotted.