André Pacheco Neves

Results 19 comments of André Pacheco Neves

Sorry for the delay, I was off last week 😇 I agree that the `resume()` and `pause()` APIs can be a bit confusing for users. I went with it because...

@stephencelis @mbrandonw did this work by any chance inspire you for [episode 148](https://www.pointfree.co/episodes/ep148-derived-behavior-collections)? It certainly has some similar ideas! 😅 If so, does that mean you'll be taking a look...

@stephencelis @mbrandonw hi there! 👋🏼 Made the `Store.child` a private helper on the example itself, to avoid increasing public API surface (which I think would be the deal breaker in...

Hi @stephencelis @mbrandonw 👋🏼 Sorry for pushing, but this PR has sadly been sitting here waiting for your review for over a year now. Do you think these changes are...

Closing this following discussion with @beloso. We will revisit this if the need arises.

Bumping this. @djbe can you please review? 🙏🏼

Hi @eddy-lau 👋 Thanks for opening up #13 and this PR! 🙏 I'm curious, In what scenario(s) is the `TargetAttributes` dictionary nil? Cheers! 🍻

I see. That makes sense since we never had that issue with Xcode generated project files. Even though we can fix the issue on the plugin, I think that the...

Thanks for testing that! It really is weird that Xcode doesn't fill the information up 🤔. Have you also tried running the target via Xcode? Anyway, I think we can...

FWIW, managed to fix this by using a copy of the [`structured-swift5.stentil`](https://github.com/SwiftGen/SwiftGen/blob/stable/Sources/SwiftGenCLI/templates/strings/structured-swift5.stencil) locally with this modification: ```diff - {% set translation string.translation|replace:'"','\"'|replace:' ','\t' %} + {% set translation string.translation|replace:'\','\\'|replace:'"','\"'|replace:' ','\t'...