diff options
| author | Thomas Voss <thomas.voss@humanwave.nl> | 2026-02-09 13:29:53 +0100 |
|---|---|---|
| committer | Thomas Voss <thomas.voss@humanwave.nl> | 2026-02-09 13:29:53 +0100 |
| commit | e7590d3a40d23d02e0223cda05f4b4e25438ef93 (patch) | |
| tree | 88ef85e6fe57dec39d19e7b063e08bc5402f70c1 | |
| parent | 3978f6b555f765ddb2bb5c539e2e881d3ad31078 (diff) | |
emacs: Set a really high limit
| -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)))) |