From 76205ae5a8c1387b663317baa9cf78daeb7451aa Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Fri, 4 Mar 2022 13:48:53 -0600 Subject: right. need to remember to (set-term-width) where appropriate. --- build-app.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build-app.lisp') diff --git a/build-app.lisp b/build-app.lisp index a3ef6fc..044ae8a 100644 --- a/build-app.lisp +++ b/build-app.lisp @@ -91,8 +91,8 @@ you run the oneliner, all positional variables appear first. :description "Like --run, but puts the oneliner into the clipboard.")) (text :contents " ") (group (:header "OTHER OPTIONS") - (flag :long-name "info" - :description "View all info the oneliner given by NAME or ID") + (flag :long-name "view" + :description "View all information for the oneliner given by NAME or ID") (lispobj :long-name "timeout" :argument-type :optional :argument-name "SECONDS" @@ -230,14 +230,14 @@ than the users." (cli::unlock-item id-or-name )) ((getopt :long-name "edit") (cli::edit-item id-or-name )) - ((getopt :long-name "info") + ((getopt :long-name "view") (cli::print-item-explanation id-or-name)) ((getopt :long-name "clip") - (cli::run-item id-or-name (rest arguments) + (cli::run-item id-or-name args :force-clip t :timeout (getopt :long-name "timeout"))) ((getopt :long-name "run") - (cli::run-item id-or-name (rest arguments) + (cli::run-item id-or-name args :timeout (getopt :long-name "timeout"))) (t (cli::search-for-oneliners arguments -- cgit v1.2.3