slap icon indicating copy to clipboard operation
slap copied to clipboard

Painless shell argument parsing and dependency check.

Results 13 slap issues
Sort by recently updated
recently updated
newest added

Context: (If I got it right) the current implementation expects a centralized definition of commands and subcommands. When implementing CLI with multiple nested commands; like these AWS or GCP CLI...

In this project it's easy to have subtle logic errors. We should have some tests to make the releases more robust.

enhancement

Using the following test script: ```bash #!/bin/bash # shellcheck disable=SC2154 slap deps bat confirm rg sd|| exit 1 eval "$(slap parse bash _ -- "$@"

documentation

Hi, there are enough examples to get started with Slap, but I'm left with unanswered questions about how the variables are named. Take the first example, with an argument named...

enhancement

It's hard to remember all the options slap has, it would be cool to have the editor autocomplete possible options and maybe even document what's their use. In clap's `master`...

enhancement