aboutsummaryrefslogtreecommitdiff
path: root/build-app.lisp
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-22 14:10:18 -0600
committerColin Okay <okay@toyful.space>2022-02-22 14:10:18 -0600
commit3cb79b3c6abd7607de309f410d957bba344a031e (patch)
treed0b5171f94fd479a89f209a70de853f2071282ce /build-app.lisp
parent2f977d630fad6918fe0039d22ec13d90b89a94a0 (diff)
altered prompt to use linedit
Diffstat (limited to 'build-app.lisp')
-rw-r--r--build-app.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/build-app.lisp b/build-app.lisp
index b0405f5..284feaa 100644
--- a/build-app.lisp
+++ b/build-app.lisp
@@ -55,7 +55,7 @@ my1337pw.")
(group (:header "Wiki" :hidden t)
(flag :long-name "add"
:description "Intaractively add a oneliner and update the wiki.")
- (flag :long-name "update"
+ (flag :long-name "edit"
:description "Interactively edit a oneliner and update the wiki.")
(flag :long-name "flag"
:description "Flag a oneliner for review.")
@@ -134,6 +134,8 @@ than the users."
(cli::lock-item hist-number))
((getopt :long-name "unlock")
(cli::unlock-item hist-number))
+ ((getopt :long-name "edit")
+ (cli::edit-item hist-number))
(t
(cli::run-item hist-number (rest arguments) (getopt :long-name "clip"))))
(uiop:quit))