mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
emacs: Use "B" key in "Package List" to display latest builds.
* emacs/guix-ui-package.el (guix-package-list-latest-builds): New procedure. (guix-package-list-mode-map): Bind "B" key to it. (guix-output-list-mode-map): Likewise. * doc/emacs.texi (Emacs List buffer): Document it.
This commit is contained in:
parent
32950fc846
commit
5c8994d9d9
2 changed files with 17 additions and 0 deletions
|
@ -288,6 +288,8 @@ similar to @command{guix edit} command (@pxref{Invoking guix edit}), but
|
||||||
for opening a package recipe in the current Emacs instance.
|
for opening a package recipe in the current Emacs instance.
|
||||||
@item x
|
@item x
|
||||||
Execute actions on the marked packages.
|
Execute actions on the marked packages.
|
||||||
|
@item B
|
||||||
|
Display latest builds of the current package (@pxref{Emacs Hydra}).
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
A ``generation-list'' buffer additionally provides the following
|
A ``generation-list'' buffer additionally provides the following
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
(require 'guix-guile)
|
(require 'guix-guile)
|
||||||
(require 'guix-entry)
|
(require 'guix-entry)
|
||||||
(require 'guix-utils)
|
(require 'guix-utils)
|
||||||
|
(require 'guix-hydra-build)
|
||||||
|
|
||||||
(guix-ui-define-entry-type package)
|
(guix-ui-define-entry-type package)
|
||||||
(guix-ui-define-entry-type output)
|
(guix-ui-define-entry-type output)
|
||||||
|
@ -546,6 +547,7 @@ This function is used to hide a \"Download\" button if needed."
|
||||||
(delete . ?D)))
|
(delete . ?D)))
|
||||||
|
|
||||||
(let ((map guix-package-list-mode-map))
|
(let ((map guix-package-list-mode-map))
|
||||||
|
(define-key map (kbd "B") 'guix-package-list-latest-builds)
|
||||||
(define-key map (kbd "e") 'guix-package-list-edit)
|
(define-key map (kbd "e") 'guix-package-list-edit)
|
||||||
(define-key map (kbd "x") 'guix-package-list-execute)
|
(define-key map (kbd "x") 'guix-package-list-execute)
|
||||||
(define-key map (kbd "i") 'guix-package-list-mark-install)
|
(define-key map (kbd "i") 'guix-package-list-mark-install)
|
||||||
|
@ -720,6 +722,18 @@ The specification is suitable for `guix-process-package-actions'."
|
||||||
(interactive)
|
(interactive)
|
||||||
(guix-edit (guix-list-current-id)))
|
(guix-edit (guix-list-current-id)))
|
||||||
|
|
||||||
|
(defun guix-package-list-latest-builds (number &rest args)
|
||||||
|
"Display latest NUMBER of Hydra builds of the current package.
|
||||||
|
Interactively, prompt for NUMBER. With prefix argument, prompt
|
||||||
|
for all ARGS."
|
||||||
|
(interactive
|
||||||
|
(let ((entry (guix-list-current-entry)))
|
||||||
|
(guix-hydra-build-latest-prompt-args
|
||||||
|
:job (guix-package-name-specification
|
||||||
|
(guix-entry-value entry 'name)
|
||||||
|
(guix-entry-value entry 'version)))))
|
||||||
|
(apply #'guix-hydra-latest-builds number args))
|
||||||
|
|
||||||
|
|
||||||
;;; Output 'info'
|
;;; Output 'info'
|
||||||
|
|
||||||
|
@ -784,6 +798,7 @@ The specification is suitable for `guix-process-package-actions'."
|
||||||
(delete . ?D)))
|
(delete . ?D)))
|
||||||
|
|
||||||
(let ((map guix-output-list-mode-map))
|
(let ((map guix-output-list-mode-map))
|
||||||
|
(define-key map (kbd "B") 'guix-package-list-latest-builds)
|
||||||
(define-key map (kbd "e") 'guix-output-list-edit)
|
(define-key map (kbd "e") 'guix-output-list-edit)
|
||||||
(define-key map (kbd "x") 'guix-output-list-execute)
|
(define-key map (kbd "x") 'guix-output-list-execute)
|
||||||
(define-key map (kbd "i") 'guix-output-list-mark-install)
|
(define-key map (kbd "i") 'guix-output-list-mark-install)
|
||||||
|
|
Loading…
Reference in a new issue