diff options
Diffstat (limited to '.config/emacs/site-lisp/gh.el')
| -rw-r--r-- | .config/emacs/site-lisp/gh.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/emacs/site-lisp/gh.el b/.config/emacs/site-lisp/gh.el index 9f7d348..39dc339 100644 --- a/.config/emacs/site-lisp/gh.el +++ b/.config/emacs/site-lisp/gh.el @@ -3,7 +3,8 @@ (defun gh-get-labels () "Return a list of labels in the current GitHub repository." (with-temp-buffer - (call-process "gh" nil t nil "label" "list" "--sort" "name" "--json" "name") + (call-process "gh" nil t nil "label" "list" + "--sort" "name" "--json" "name" "--limit" "1000000") (goto-char (point-min)) (seq-map (lambda (x) (gethash "name" x)) (json-parse-buffer)))) |