diff options
author | Colin Okay <okay@toyful.space> | 2022-02-22 08:43:56 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-02-22 08:43:56 -0600 |
commit | 72d11288e24349b875171db6b116a3661f5bdbac (patch) | |
tree | fee71d290df2962e12ab09ecb6193d8491c6ecf7 /src/lib.lisp | |
parent | 81d8b86cad053a3bb1f4563cc4fa3b90e0302e15 (diff) |
tweaking oneliner addition functions
Diffstat (limited to 'src/lib.lisp')
-rw-r--r-- | src/lib.lisp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.lisp b/src/lib.lisp index c6801df..300d6d5 100644 --- a/src/lib.lisp +++ b/src/lib.lisp @@ -150,13 +150,13 @@ the directories that appear in the value of that variable." (prompt "Brief Description: ")) (tags (append init-tags - (when (y-or-n-p "Add tags in addition to: ~{~a ~}?" init-tags) - (ppcre:split " +" (prompt "(e.g. foo bar goo): "))))) + (ppcre:split " +" + (prompt (format nil "Additional Tags? [~{~a ~}]" init-tags))))) (explanation (when (y-or-n-p "Provide an explanation?") (string-from-editor))) (runstyle - (if (y-or-n-p "Is GUI, TUI, or requires further input?") + (if (y-or-n-p "Does this oneliner invoke a GUI, a TUI, or will it require user input?") "MANUAL" "AUTO"))) (api:request-with |