BearBear is a desktop task manager application done as part of the CS2103T module in NUS.
- Add Todo Task
- Add Deadline Task
- Add Event Task
- Mark Task as Complete
- Delete Task
- Find Task
- List Tasks
- View Help guide
- Exit Application
- Description: Creates and adds a Todo task to the task list.
- Format:
todo <task_description> - Example:
todo borrow book
- Description: Creates and adds a Deadline task to the task list.
- Format:
deadline <task_description> <deadline> - Examples:
deadline submit project /by Sunday 2359deadline submit project /by 2021-2-23
- Description: Creates and adds an Event task to the task list.
- Format:
event <task_description> <event_time> - Examples:
event school /at Monday 1400event school /at 2021-2-23
- Description: Marks a task corresponding to a task index in task list as complete.
- Format: done <task_index>
- Example:
done 2
- Description: Deletes a task corresponding to a task index in task list.
- Format: delete <task_index>
- Example:
delete 2
- Description: Finds a task with task description that matches a keyword.
- Format:
find <keyword> - Example:
find book
- Description: Shows a list of all tasks.
- Format:
list - Example:
list
- Description: Shows a list of supported commands and their descriptions.
- Format:
help - Example:
help
- Description: Terminates the application.
- Format:
bye - Example:
bye