commander-s/scheme/std-command.scm

11 lines
289 B
Scheme

(define (standard-command-plugin-completer command args)
#f)
(define (standard-command-plugin-evaluater command args)
(directory-files))
(define standard-command-plugin
(make-command-plugin #f
standard-command-plugin-completer
standard-command-plugin-evaluater))