From e7590d3a40d23d02e0223cda05f4b4e25438ef93 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 9 Feb 2026 13:29:53 +0100 Subject: emacs: Set a really high limit --- .config/emacs/site-lisp/gh.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.config') 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)))) -- cgit v1.2.3