Sort commands alphabetically in "guix --help".
* guix/ui.scm (show-guix-help): Sort commands.master
parent
2b8cf44fd9
commit
b30b13dc3d
|
@ -420,7 +420,7 @@ Run COMMAND with ARGS.\n"))
|
||||||
(format #t (_ "COMMAND must be one of the sub-commands listed below:\n"))
|
(format #t (_ "COMMAND must be one of the sub-commands listed below:\n"))
|
||||||
(newline)
|
(newline)
|
||||||
;; TODO: Display a synopsis of each command.
|
;; TODO: Display a synopsis of each command.
|
||||||
(format #t "~{ ~a~%~}" (commands))
|
(format #t "~{ ~a~%~}" (sort (commands) string<?))
|
||||||
(show-bug-report-information))
|
(show-bug-report-information))
|
||||||
|
|
||||||
(define program-name
|
(define program-name
|
||||||
|
|
Reference in New Issue