From ad02baffb7ae6d4faa0f89a5946e1b13bc7aa76d Mon Sep 17 00:00:00 2001 From: m455 Date: Tue, 12 Mar 2019 15:19:34 -0400 Subject: [PATCH] added a todo and a note in util.rkt --- README.md | 1 + util.rkt | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 606c073..38c9ec6 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ Now the default directory and todo list file have better default permissions: # Todos +- Allow the use of unquoted items to be added if the user doesn't want/forgets to use them - Add color option to `config.rkt` file - Encrypt `todo.txt` file - Add note on `.bash_history` about items being added here before going into the `todo.txt` file diff --git a/util.rkt b/util.rkt index 46517e9..5c7b301 100644 --- a/util.rkt +++ b/util.rkt @@ -117,6 +117,9 @@ (if (and (check-for-directory) (check-for-file)) + ;; Todo: add rest of arguments to make double quotation + ;; marks optional if the user doesn't want/ + ;; forgets to use them (add-item-to-file (vector-ref args 1)) (begin (display-hash-ref messages:messages 'file-not-found)