Nate Cook

Results 18 issues of Nate Cook

Good points from Joshua Fisher [here](https://twitter.com/joshxfisher/status/614079863411068929) and [here](https://twitter.com/joshxfisher/status/614104884850335745) about NSCache not being as low-memory notification savvy as advertised, especially since iOS 7.

Check on whether the result handler for `requestImageForAsset(_:targetSize:contentMode:options:resultHandler:)` handles cancellation updates properly, as described in in #430.

### _Work in Progress_ --- ### Description Methods for finding the first, last, or all ranges of a given subsequence. ### Detailed Design TK ### Documentation Plan Guide and docs...

There should be API added to the `CommandConfiguration` type so that command authors can disable interactive mode. We'll need to choose a good name — something like `promptForMissingRequiredValues: Bool =...

Tests are currently blocked on the `feature/interactive` branch because the interactive mode is always on. It should only run when the command is executed in an interactive shell.

### Description This adds a new `ArgumentSource` type as the projected value for `@Argument`, `@Option`, and `@Flag` types. This way, you can access the original string and location in the...

Option groups are currently just splatted into the rest of the declared arguments for a command. This is sometimes fine, but often it would be nice if option groups were...

enhancement

As pointed out in #120, there isn't any documentation describing how to manually create instances of `ParsableArguments` or `ParsableCommand` types, and the error message when using one created from calling...

documentation

The guide should cover pull request and testing expectations, coding style (re: [this note](https://github.com/apple/swift-argument-parser/pull/22#issuecomment-593087110)), and any platform-specific requirements.

documentation

### Description This adds two new parsing options for argument arrays, and renames `.unconditionalRemaining` to `.captureForPassthrough`: - `unconditionalRemaining` has been an attractive nuisance. It looks like it means "everything leftover",...