We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
home
1 parent 7bf0ec9 commit 17418adCopy full SHA for 17418ad
README.md
@@ -34,6 +34,8 @@ The `gh todo` or `gh todo list` where show todo list.
34
gh todo --help
35
# create `todo` repo
36
gh todo init
37
+# goto `issues` web page
38
+gh todo home
39
# show todo list
40
gh todo
41
# add todo item
gh-todo
@@ -30,6 +30,10 @@ init() {
30
exec gh repo create --confirm --private --template=yuler/template-todo todo
31
}
32
33
+home() {
+ gh issue list --web --repo $repo
+}
+
add() {
input="$1"
issue_id=$(get_issue_id)
@@ -71,6 +75,10 @@ while [ $# -gt 0 ]; do
71
75
init
72
76
shift
73
77
;;
78
+ home)
79
+ home
80
+ shift
81
+ ;;
74
82
add)
83
if [[ -z "$2" ]]; then
84
echo -n "[Enter]: "
0 commit comments