aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-06 02:41:33 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-06 02:41:46 +0100
commit8fd0696d61ec871da0ee994818c4113141dbff8f (patch)
treeee232434cdc8707f14166a7f00041e3c8bff7ca3
parent23bacb83e6ea67ffdd62be630626ab50ff665abf (diff)
issue: add replace-anissue-show-with-anissue-list---detailed
-rw-r--r--app/Main.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs
index fdbe4ae..c14ecfc 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -454,7 +454,12 @@ data Command
{ patch :: Bool
}
| Show
- { id :: Maybe String,
+ { -- TODO Replace `anissue show` with `anissue list --detailed`
+ --
+ -- The `Show` command has recently been changed to allow showing multiple issues. However, filtering, soring, grouping, etc. is still lacking and would be useful for this mode.
+ --
+ -- Instead of copying over that functionality, and somehow explain that they are only sensible when omitting the optional `id` parameter, I would like to revert that change and add `--detailed` to `anissue list` which would show issues in the `Detailed` reporting style.
+ id :: Maybe String,
edit :: Bool
}
| Tags