<UPPER_CASE>
are parameters to be supplied by the user
todo <DESCRIPTION>
, DESCRIPTION
is a parameter which can be used as todo call oppa
.Three types of tasks, Todo
, Event
and Deadline
can be added.
<TASK_TYPE> <PARAMETERS>
todo
- Add a TODO
tasktodo <DESCRIPTION>
TODO
with DESCRIPTION
to the list.todo meet oppa
[T][N] meet oppa
Todo
to meet oppa.event
- Add an Event
taskevent <DESCRIPTION> /at <DATETIME>
Event
with DESCRIPTION
and DETAILS
to the list.event eat dinner with oppa /at Wednesday 2pm
[E][N] eat dinner with oppa (at: Wednesday 2pm)
Event
to eat dinner with oppa at Wednesday 2pm.deadline
- Add a Deadline
taskdeadline <DESCRIPTION> /by <DATETIME>
Deadline
with DESCRIPTION
, to be done by DATETIME
to the list.deadline wash oppa's clothes /by 2019-12-02
[D][X] wash oppa's clothes (by: Dec 2 2019)
Deadline
to wash oppa’s clothes by Dec 2 2019.Displays all tasks in the list to the screen.
list
todo kiss oppa
list
1. [T][N] kiss oppa // only showing 'list' output
Delete a particular task from the list.
delete <TASK_NUMBER>
TASK_NUMBER
is the numbering of the task when the list
command is executed.todo kiss oppa
event eat dinner with oppa /at 2019-12-02
list
delete 2
list
1. [T][N] kiss oppa // before delete
2. [E][N] eat dinner with oppa (at: Dec 2 2019)
...
1. [T][N] kiss oppa // after delete
done <TASK_NUMBER>
Marks a particular task in the list as done.
TASK_NUMBER
is the numbering of the task when the list
command is executed.todo kiss oppa
event eat dinner with oppa /at 2019-12-02
list
done 2
list
1. [T][N] kiss oppa // before 'done'
2. [E][N] eat dinner with oppa (at: Dec 2 2019)
...
1. [T][N] kiss oppa // after 'done'
2. [E][Y] eat dinner with oppa (at: Dec 2 2019) ---
Searches and retrieves all tasks with the KEYWORD
in the DESCRIPTION
find <KEYWORD>
KEYWORD
is the string keyword.todo kiss oppa
event eat dinner with oppa /at 2019-12-02
find ith
1. [E][N] eat dinner with oppa (at: Dec 2 2019)
Update the description or time of a task in the list.
update <TASKNUMBER> <TORD> <CHANGE>
TASK_NUMBER
is the numbering of the task when the list
command is executed.TORD
T OR D depending on if user wants to update the time or description of the task.CHANGE
is the string change you want to update to.todo kiss oppa
event eat dinner with oppa /at 2019-12-02
list
update 2 T breakup with oppa
list
1. [T][N] kiss oppa // before 'update'
2. [E][N] eat dinner with oppa (at: Dec 2 2019)
...
1. [T][N] kiss oppa // after 'update'
2. [E][Y] breakup with oppa (at: Dec 2 2019)
bye
todo kiss oppa
bye