diff options
Diffstat (limited to 'input/input.go')
-rw-r--r-- | input/input.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/input/input.go b/input/input.go index 16264efc..4da73fc5 100644 --- a/input/input.go +++ b/input/input.go @@ -153,6 +153,27 @@ const queryTemplate = `%s # Please edit the bug query. # Lines starting with '#' will be ignored, and an empty query aborts the operation. +# +# Example: status:open author:"rené descartes" sort:edit +# +# Valid filters are: +# +# - status:open, status:closed +# - author:<query> +# - label:<label> +# - no:label +# +# Sorting +# +# - sort:id, sort:id-desc, sort:id-asc +# - sort:creation, sort:creation-desc, sort:creation-asc +# - sort:edit, sort:edit-desc, sort:edit-asc +# +# Notes +# +# - queries are case insensitive. +# - you can combine as many qualifiers as you want. +# - you can use double quotes for multi-word search terms (ex: author:"René Descartes") ` // QueryEditorInput will open the default editor in the terminal with a |