Skip to content

Commit 0da0f53

Browse files
committedMar 2, 2024
Add a propper description of the application that will show when the user runs the app with the help flag
1 parent 744e961 commit 0da0f53

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed
 

‎cmd/root.go

+16-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,22 @@ var rootCmd = &cobra.Command{
1616
Use: "kanban",
1717
Short: "A CLI tool for Kanban board",
1818
Long: `
19-
A long description for the CLI tool for Kanban board
19+
Manage efficiently your TODO items using a kanban board
20+
21+
ADDING A NEW ITEM:
22+
press n to add a new item, then write the title of the item and press enter
23+
24+
CHANGE THE STATUS OF AN ITEM:
25+
press space to change the status
26+
27+
EXIT:
28+
press ctrl + c to exit the kanban board
29+
30+
MOVE BETWEEN ITEMS IN A LIST:
31+
use the up and down arrow keys or j and k
32+
33+
MOVE BETWEEN LISTS:
34+
use the left and right arrow keys or h and l
2035
`,
2136
// Uncomment the following line if your bare application
2237
// has an action associated with it:

0 commit comments

Comments
 (0)