diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-06 09:09:42 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-06 09:09:42 -0500 |
commit | b46a00f1856947d66c8f74b9f24f7574133a1663 (patch) | |
tree | ee1bdf510b7bbeae9270702f7fd75f2d093b8782 /lib/client.lisp | |
parent | 575695b5f1f204aa670b996e791822f36f47ee1d (diff) |
[fix] saving local state after command finishes
Diffstat (limited to 'lib/client.lisp')
-rw-r--r-- | lib/client.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/client.lisp b/lib/client.lisp index e3f304e..13bf2fe 100644 --- a/lib/client.lisp +++ b/lib/client.lisp @@ -86,7 +86,8 @@ running the body. If such a oneliner can be found." (when *drafts* (format t (concatenate 'string "~%~" (prin1-to-string *term-width*) "< ~;DRAFTS~; ~>~%")) (dolist (draft *drafts*) - (print-oneliner-result-for-user (cdr draft))))) + (format t "Draft Name: ~a~%" (first draft)) + (print-oneliner-result-for-user (rest draft))))) ;;; RUNNING ONELINERS |