Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-10-13 | render issue title as header | ||
2023-10-13 | title cannot span multiple lines | ||
2023-10-13 | chore: sort buildInputs | ||
2023-10-13 | make external programs accessible | ||
2023-10-13 | resolved feature/markdown-printing-via-mdcat | ||
2023-10-13 | review | ||
2023-10-13 | do not strip tags from description | ||
2023-10-13 | review 'feature/markdown-printing-via-mdcat' | ||
2023-10-13 | pretty print issues using mdcat | ||
2023-10-13 | add issue about topic printing | ||
2023-10-13 | install completions for bash, fish and zsh | ||
2023-10-11 | add haskell-language-server | ||
Requires [$EDITOR integration](https://haskell-language-server.readthedocs.io/en/latest/configuration.html#configuring-your-editor). | |||
2023-10-11 | add Hoogle | ||
The `hoogle` command is useful, among other things, for searching the used libraries for functions, ie: ```console hoogle 'a -> a' GHC.Prelude id :: a -> a .. ``` You can also start a web-server: ```console hoogle server ``` | |||
2023-10-11 | add ghcid | ||
Invoking `ghcid` allows us to watch for compilation errors while developing. | |||
2023-10-09 | add 'edit issues' issue | ||
2023-10-05 | fix trailing newline in text extract, fix tests | ||
2023-10-05 | show single issue by id only | ||
2023-10-05 | generate internal @id tag from title | ||
2023-10-05 | refactor issue text extraction | ||
2023-10-04 | add tag improvement issues | ||
2023-10-04 | update generate-and-show-hash-for-each-issue | ||
2023-10-04 | add REVIEWING.md | ||
2023-10-04 | add --filter, filter by tags | ||
2023-10-04 | strip tags from description | ||
2023-10-04 | output ansi styles only to tty, fixes tests | ||
2023-10-04 | ansi style output, breaks tests | ||
2023-10-04 | enable bash completion | ||
2023-10-04 | fix tests | ||
2023-10-04 | add tags to issues | ||
2023-10-04 | allow passing files to `git ls-files` | ||
2023-10-04 | improve error handling when calling external processes | ||
2023-10-04 | update readme | ||
2023-10-04 | drop shell script | ||
2023-10-04 | bring issue extraction on-par with shell script | ||
2023-10-02 | don't show full bodies in list | ||
2023-10-02 | refactor match merging to own module | ||
2023-10-02 | fix match merging | ||
2023-10-02 | add match merging, in a hurry | ||
2023-10-02 | add issues to new code | ||
2023-10-02 | parse tree-grepper results | ||
2023-10-02 | run tree-grepper for all files | ||
2023-10-02 | get list of files which should be checked | ||
2023-10-02 | add command line argument parsing | ||
2023-10-02 | add minimal haskell boilerplate | ||
2023-09-29 | fix extracting body for shell issues | ||
The underlying problem is that tree-sitter does not allow for matching sibling nodes. So any issues comprised of line comments (vs. block comments) suffered from this issue, independent of the language (shell). Thus, we manually merge such sibling matches after running tree-grepper. | |||
2023-09-28 | add list, show commands | ||
The `list` command can be omitted and is the default. The `show` command retains past output. ```console $ anissue -h Usage: anissue anissue list anissue show ``` The implementation uses docopts, the shell variant of docopt [1]. Because of that, wrapping with `--argv0 ''` is necessary when packaging. [1] http://docopt.org/ | |||
2023-09-28 | split augmentation and output into separate passes | ||
2023-09-28 | remove unnessary quoting when extracting fields from JSON | ||
2023-09-27 | assign and schedule issues | ||
2023-09-27 | add some issues | ||