Skip to content

Commit

Permalink
Document showing tasks from all columns
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderBeyn committed Jun 3, 2020
1 parent 65793dc commit 28cf75f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ kb show
# Show tasks in the "done" column containing "great task":
kb show %done "/great task"
# Show tasks from all columns containing "excellent":
kb show %* /excellent
# Add a new task to the default column:
kb add This is my new task
Expand Down
5 changes: 4 additions & 1 deletion cmd/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ var showCmd = &cobra.Command{
kb show
# Show tasks in the "done" column containing "great task":
kb show %done "/great task"`,
kb show %done "/great task"
# Show tasks from all columns containing "excellent":
kb show %* /excellent`,

ValidArgsFunction: lib.CliSigilCompletions,
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down

0 comments on commit 28cf75f

Please sign in to comment.