summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorThomas Voss <thomas.voss@humanwave.nl> 2026-02-09 13:29:53 +0100
committerThomas Voss <thomas.voss@humanwave.nl> 2026-02-09 13:29:53 +0100
commite7590d3a40d23d02e0223cda05f4b4e25438ef93 (patch)
tree88ef85e6fe57dec39d19e7b063e08bc5402f70c1 /.config
parent3978f6b555f765ddb2bb5c539e2e881d3ad31078 (diff)
emacs: Set a really high limit
Diffstat (limited to '.config')
-rw-r--r--.config/emacs/site-lisp/gh.el3
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))))