GNU bug report logs -
#45893
[PATCH 0/2] DRAFT: Hint for options.
Previous Next
Reported by: zimoun <zimon.toutoune <at> gmail.com>
Date: Fri, 15 Jan 2021 16:38:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #23 received at 45893 <at> debbugs.gnu.org (full text, mbox):
* guix/ui.scm (run-guix-command): Add command hint.
---
guix/ui.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/guix/ui.scm b/guix/ui.scm
index bd504c68da..43c2007594 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -2123,6 +2123,20 @@ Run COMMAND with ARGS.\n"))
(define (run-guix-command command . args)
"Run COMMAND with the given ARGS. Report an error when COMMAND is not
found."
+ (define (command-hint guess commands)
+ (define command-names
+ (map (lambda (command)
+ (match (command-name command)
+ ((head tail ...) head)))
+ commands))
+
+ (fold (lambda (name res)
+ (if (string-null? res)
+ (string-append "@code{" name "}")
+ (string-append "@code{" name "}, " res)))
+ ""
+ (string-closest (symbol->string guess) command-names)))
+
(define module
(catch 'misc-error
(lambda ()
@@ -2139,6 +2153,8 @@ found."
(load file)
(resolve-interface `(guix extensions ,command)))))
(lambda _
+ (display-hint (format #f (G_ "Do you mean ~a?")
+ (command-hint command (commands))))
(format (current-error-port)
(G_ "guix: ~a: command not found~%") command)
(show-guix-usage))))))
--
2.29.2
This bug report was last modified 4 years and 105 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.