diff options
-rw-r--r-- | app/Main.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/Main.hs b/app/Main.hs index ebba131..ffd1c99 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,3 +1,16 @@ +-- TODO Add fulltext search +-- +-- Additional to `--filter` it should be possible to search for issues +-- using `--search 'some query'` using a search-engine like full text +-- search. +-- +-- To make this fast, we could use a package like +-- <https://hackage.haskell.org/package/full-text-search> and make sure +-- to persist the index in a local cache. +-- +-- @topic search +-- @backlog + -- TODO Compute history from the top -- -- Currently we are computing the history from the bottom (ie. earliest commit |