diff options
Diffstat (limited to 'app/search.lisp')
-rw-r--r-- | app/search.lisp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/app/search.lisp b/app/search.lisp index 015a749..afc8f84 100644 --- a/app/search.lisp +++ b/app/search.lisp @@ -29,7 +29,19 @@ :short-name #\n :long-name "newest" :description "the newest matching oneliners are returned" - :key :newest))) + :key :newest) + + ;; TODO + ;; (cli:make-option + ;; :flag + ;; :short-name #\c + ;; :long-name "cache" + ;; :description "restrict search to what is already in the local cache" + ;; :env-vars '("OL_CACHE_ONLY") + ;; :key :cache) + + + )) (defun search/handler (cmd) "Handler function for the search command. " |