finished prefixing everything

This commit is contained in:
m455 2018-10-10 14:57:00 -04:00
parent 15709187f7
commit 24ed84d922

View File

@ -1,6 +1,6 @@
#lang racket/base
(require "config.rkt")
(require (prefix-in config: "config.rkt"))
(provide (all-defined-out))
@ -8,36 +8,36 @@
(hash
'show-help
(string-append
"* " initialize-command ": "
config:initialize-command ":\n"
"initialize a file in "
program-path
program-directory
program-file
config:program-path
config:program-directory
config:program-file
"\n"
"\x09Example: "
"Example: "
"rodo init\n\n"
"* " list-command ": "
config:list-command ":\n"
"lists items on the list"
"\n"
"\x09Example: "
"Example: "
"rodo ls\n\n"
"* " add-command ": "
config:add-command ":\n"
"adds an item to the list"
"\n"
"\x09Example: "
"Example: "
"rodo add bread\n\n"
"\x09Note: For multi-word items you will need to\n"
"\x09surround your item in double quotes as so:\n"
"\x09rodo add \"go to the bank\"\n"
"Note: For multi-word items you will need to\n"
"surround your item in double quotes as so:\n"
"rodo add \"go to the bank\"\n\n"
"* " remove-command ": "
config:remove-command ":\n"
"removes an item from the list\n"
"\x09Example: "
"rodo rm 1\n"
"\x09Note: You may have to run `rodo ls` to see which\n"
"\x09number corresponds to which item to remove it.\n")
"Example: "
"rodo rm 1\n\n"
"Note: You may have to run `rodo ls` to see which\n"
"number corresponds to which item to remove it.\n")
'empty-todo-list
"> There is nothing in your list \n"
@ -45,77 +45,77 @@
'show-usage
(string-append
"> For usage type "
"`" program-name " -h`"
"`" config:program-name " -h`"
" or "
"`" program-name " --help`\n")
"`" config:program-name " --help`\n")
'creating-folder
(string-append
"> creating a "
program-directory
config:program-directory
" folder in "
program-path " ...\n")
config:program-path " ...\n")
'creating-file
(string-append
"> creating a "
program-file
config:program-file
" file in "
program-path
program-directory " ...\n")
config:program-path
config:program-directory " ...\n")
'creation-error
(string-append
"> Error: Could not create "
program-file
config:program-file
" in "
program-directory
program-path ".\n"
config:program-directory
config:program-path ".\n"
"> This may be due to directory permissions\n")
'file-already-exists
(string-append
"> Error: "
program-name
config:program-name
" already exists in "
program-path
program-directory
program-file "\n")
config:program-path
config:program-directory
config:program-file "\n")
'successfully-created
(string-append
"> "
program-path
program-directory
program-file
config:program-path
config:program-directory
config:program-file
" has been successfully created\n")
'file-not-found
(string-append
"> Error: Could not find "
program-path
program-directory
program-file "\n")
config:program-path
config:program-directory
config:program-file "\n")
'init-y/n
(string-append
"> A "
program-file
config:program-file
" file will be created in "
program-path
program-directory "\n"
config:program-path
config:program-directory "\n"
"> Are you sure you want to continue? [y/n]\n")
'try-init
(string-append
"> Try typing "
"`" program-name " init` "
"`" config:program-name " init` "
"to set it up\n")
'terminating
(string-append
"> Exiting "
program-name
config:program-name
" ...\n")
'choose-y/n