=== Adding a new issue ===

When you want to add something to your issue list you simply
type it out in your project (tip: create a snippet for this; for example "issue").

Example:
*brakoll - d: fix formatting issue in debug statement, p: 10, t: debug, s: closed

d: description of the issue (obligatory)
p: priority from 0 to infinity where the highest number takes priority (optional - fallback: 0)
t: tag (optional - fallback: n/a)
s: status [ (op)en | (pr)ogress | (cl)osed ] (optional - fallback: open)

Important:
* An issue line is any line containing the prefix "*brakoll".
* Everything before the prefix on an issue line is ignored by the parser.
* Everything after the prefix is parsed as metadata.

=== Flags & Subcommands ===

An optional target path can be added (works alongside other flags):
$ brakoll <relative path>

All the issues listed, sorted by priority and status:
$ brakoll

Filter issues by tag:
$ brakoll -s <tag>

Filter issues by status:
$ brakoll -s <status>

Filter issues by description:
$ brakoll -d <keyword>

Limit search to zero depth (e.g. no recursion):
$ brakoll -r

Summary of all issues:
$ brakoll summary

Close issue through CLI:
$ brakoll close <id>
$ brakoll cl <id>

Open issue through CLI:
$ brakoll open <id>
$ brakoll op <id>

Progress issue through CLI:
$ brakoll prog <id>
$ brakoll pr <id>
$ brakoll progress <id>

Display help and version information:
$ brakoll help
