diff options
author | Aaron Ball <nullspoon@oper.io> | 2017-01-03 08:30:26 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2017-01-03 08:30:26 -0700 |
commit | 32e422d04fee8a01c2547e113cab516824ff6eee (patch) | |
tree | 0891ee0a64d3b9261fdec4bb754c8385a5b50b46 | |
parent | b525ca2496a1cb4f6803d652863fb2cf019d9457 (diff) | |
download | noteless-32e422d04fee8a01c2547e113cab516824ff6eee.tar.gz noteless-32e422d04fee8a01c2547e113cab516824ff6eee.tar.xz |
TODO: Updated and changed from markdown to asciidoc
Added a few new Pending items as well as a couple to completed.
-rw-r--r-- | TODO.asciidoc | 37 | ||||
-rw-r--r-- | TODO.mdown | 25 |
2 files changed, 37 insertions, 25 deletions
diff --git a/TODO.asciidoc b/TODO.asciidoc new file mode 100644 index 0000000..6fa6954 --- /dev/null +++ b/TODO.asciidoc @@ -0,0 +1,37 @@ +TODO +==== + + +Note +---- + +The items listed in this file are not listed in order of importance or in the +order they might be worked on. They're just added to the bottom and marked as +completed when they're complete. + + + +Pending +------- +* Sort configuration through program arguments +* Sort by name +* Implement path.append +* Implement path.basename (path to the parent directory) +* Better implement relative path handling +* Handle new notes being created in subdirectories that don't exist yet (hint + hint: it fails) +* Integrate support for git versioning, repo creation, etc. + + +Completed +--------- +* Implement sort-by-modified-date +* Implement last-modified date output +* Implement path.exists +* Implement path.create (path to the parent directory) +* Automatically open for edit the specified note without requiring the edit + if note name is the first argument +* Write "init" command to create the configured notes directory if it doesn't + exist. +* Implement better subdirectory handling when listing notes +* Implement rm action to delete notes diff --git a/TODO.mdown b/TODO.mdown deleted file mode 100644 index 985d7bf..0000000 --- a/TODO.mdown +++ /dev/null @@ -1,25 +0,0 @@ -## Note -The items listed in this file are not listed in order of importance or in the -order they might be worked on. They're just added to the bottom and marked as -completed when they're complete. - - - -## Pending -* Implement path.append -* Implement path.basename (path to the parent directory) -* Better implement relative path handling -* Handle new notes being created in subdirectories that don't exist yet (hint - hint: it fails) -* Integrate support for git versioning, repo creation, etc. - - -## Completed -* Implement path.exists -* Implement path.create (path to the parent directory) -* Automatically open for edit the specified note without requiring the edit - if note name is the first argument -* Write "init" command to create the configured notes directory if it doesn't - exist. -* Implement better subdirectory handling when listing notes -* Implement rm action to delete notes |