style: rename module (radix repl command) to (radix repl commands)

main
Luis Guilherme Coelho 2024-07-31 17:52:45 -03:00
parent e87b5e9513
commit b7eef0302e
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
(define-module (radix repl command)
(define-module (radix repl commands)
#:use-module (guix packages)
#:use-module (system repl command)
#:use-module (radix combinators))
(define-meta-command ((clear repl) repl)
"Clear REPL."
(system* "printf" (object->string "\\033c")))
(system* "printf" "\\033c"))
(define-meta-command ((edit filename) repl filename)
"Open FILENAME using the editor (getenv \"EDITOR\")."