aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/ls.go5
-rw-r--r--doc/man/git-bug-ls.12
-rw-r--r--doc/md/git-bug_ls.md2
3 files changed, 5 insertions, 4 deletions
diff --git a/commands/ls.go b/commands/ls.go
index 7bab429d..ad45eefa 100644
--- a/commands/ls.go
+++ b/commands/ls.go
@@ -2,6 +2,7 @@ package commands
import (
"fmt"
+ "strings"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/cache"
@@ -27,7 +28,7 @@ func runLsBug(cmd *cobra.Command, args []string) error {
var query *cache.Query
if len(args) >= 1 {
- query, err = cache.ParseQuery(args[0])
+ query, err = cache.ParseQuery(strings.Join(args, " "))
if err != nil {
return err
@@ -133,7 +134,7 @@ var lsCmd = &cobra.Command{
You can pass an additional query to filter and order the list. This query can be expressed either with a simple query language or with flags.`,
Example: `List open bugs sorted by last edition with a query:
-git bug ls "status:open sort:edit-desc"
+git bug ls status:open sort:edit-desc
List closed bugs sorted by creation with flags:
git bug ls --status closed --by creation
diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1
index c5f989a8..5f799c30 100644
--- a/doc/man/git-bug-ls.1
+++ b/doc/man/git-bug-ls.1
@@ -57,7 +57,7 @@ You can pass an additional query to filter and order the list. This query can be
.nf
List open bugs sorted by last edition with a query:
-git bug ls "status:open sort:edit\-desc"
+git bug ls status:open sort:edit\-desc
List closed bugs sorted by creation with flags:
git bug ls \-\-status closed \-\-by creation
diff --git a/doc/md/git-bug_ls.md b/doc/md/git-bug_ls.md
index 53f9b7f4..a1ebad20 100644
--- a/doc/md/git-bug_ls.md
+++ b/doc/md/git-bug_ls.md
@@ -16,7 +16,7 @@ git-bug ls [<query>] [flags]
```
List open bugs sorted by last edition with a query:
-git bug ls "status:open sort:edit-desc"
+git bug ls status:open sort:edit-desc
List closed bugs sorted by creation with flags:
git bug ls --status closed --by creation