summaryrefslogtreecommitdiff
path: root/README.gmi
diff options
context:
space:
mode:
authorArun Isaac2022-06-29 20:04:43 +0530
committerArun Isaac2022-06-29 20:04:43 +0530
commitff900683c2bd712e991d08e14a49d4aa07b71730 (patch)
treee770d5b3cc94cd27fd158058b8a0ddf047adbb50 /README.gmi
parent2b35f99ea67c496501f25bedc0bc8c26ccd41efd (diff)
downloadgn-gemtext-ff900683c2bd712e991d08e14a49d4aa07b71730.tar.gz
Document new `tissue search' subcommand.
* README.gmi (tissue): Document new `tissue search' subcommand.
Diffstat (limited to 'README.gmi')
-rw-r--r--README.gmi30
1 files changed, 12 insertions, 18 deletions
diff --git a/README.gmi b/README.gmi
index f177301..80f132d 100644
--- a/README.gmi
+++ b/README.gmi
@@ -42,32 +42,26 @@ guix shell tissue
List all open issues.
```
-tissue list
+tissue search
```
-
-Only list open issues assigned to pjotrp.
+Search for open issues matching "genotype database".
```
-tissue list --assigned=pjotrp
+tissue search genotype database
```
-
-Print an issue, say issue 7, on the command line.
+Search for closed issues matching "genotype database".
```
-tissue show 7
+tissue search '(genotype database) AND is:closed'
```
-
-Edit an issue, say issue 9. This opens the relevant gemtext file in your favourite editor as defined by the EDITOR environment variable.
+Search for open issues assigned to pjotrp.
```
-tissue edit 9
+tissue search assigned:pjotrp
```
-
-List issues that were created or updated in the last 3 days, in the last week or month respectively. The --since argument is passed directly to `git log`. Therefore, tissue understands any --since argument that `git log` understands.
+Search for open issues tagged gemma.
```
-tissue news --since='3 days'
-tissue news --since='1 week'
-tissue news --since='1 month'
+tissue search tag:gemma
+tissue search keyword:gemma
```
-
-To learn more about tissue, please use the built-in help feature.
+Search for closed issues tagged low.
```
-tissue --help
+tissue search tag:low AND is:closed
```