feat(notes, tasks): Label for list commands
This commit is contained in:
parent
60fdb30640
commit
9ff46fe572
2 changed files with 2 additions and 0 deletions
1
notes.sh
1
notes.sh
|
@ -57,6 +57,7 @@ function createNote() {
|
|||
|
||||
## LIST notes in directory
|
||||
if [ "$1" = "list" ] || [ "$1" = "l" ]; then
|
||||
echo "ACTIVE NOTES: "
|
||||
files=( $notes_dir/*.md )
|
||||
index=0
|
||||
notesSync
|
||||
|
|
1
tasks.sh
1
tasks.sh
|
@ -57,6 +57,7 @@ function createtask() {
|
|||
|
||||
## LIST tasks in directory
|
||||
if [ "$1" = "list" ] || [ "$1" = "l" ]; then
|
||||
echo "ACTIVE TASKS: "
|
||||
files=( $tasks_dir/*.md )
|
||||
index=0
|
||||
notesSync
|
||||
|
|
Loading…
Reference in a new issue