diff options
| author | Fuwn <[email protected]> | 2023-07-15 22:17:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-07-15 22:17:16 -0700 |
| commit | 1ac201cb70b937c84a4af6b81c6c394dc5040991 (patch) | |
| tree | f265e7e2358ec1143d731e5d85baa4b49efc2e1f /src/bashly.yml | |
| parent | feat: initial release (diff) | |
| download | kaguya-1ac201cb70b937c84a4af6b81c6c394dc5040991.tar.xz kaguya-1ac201cb70b937c84a4af6b81c6c394dc5040991.zip | |
feat(x): more filter options
Diffstat (limited to 'src/bashly.yml')
| -rw-r--r-- | src/bashly.yml | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/bashly.yml b/src/bashly.yml index 3a0882b..dd0f0ff 100644 --- a/src/bashly.yml +++ b/src/bashly.yml @@ -35,11 +35,20 @@ commands: repeatable: true flags: - - long: --anime - conflicts: [--manga] + - long: --tv + conflicts: [--manga --novel] - long: --manga - conflicts: [--anime] + conflicts: [--tv --novel] + + - long: --novel + conflicts: [--tv --manga] + + - long: --any-tv + conflicts: [--tv --manga --novel --any-manga] + + - long: --any-manga + conflicts: [--tv --manga --novel --any-tv] - long: --al conflicts: [--mal] |