ip

TODO-ke: User Guide

TODO-ke is a simple task management application with a command line interface (CLI) and graphical user interface (GUI).

Features

1. Adding a Task

1.1 Adding a Todo

Adds a Todo to the task list. A Todo is a task with only a description and no date.

Format: todo <description>

Examples:

1.2 Adding a Deadline

Adds a Deadline to the task list. A Deadline is a task containing a description and a date by which it is meant to be completed.

Format: deadline <description> \by <date in YYYY-MM-DD format>

Examples:

1.3 Adding an Event

Adds an Event to the task list. An Event is a task containing a description and a date at which it is scheduled to occur.

Format: event <description> \at <date in YYYY-MM-DD format>

Examples:

2. Viewing all Tasks

Displays all tasks currently in the task list.

Format: list

3. Deleting a Task

Deletes a task from the task list.

Format: delete <index of task>

Examples:

4. Searching Task Descriptions

Displays all the tasks whose descriptions contain the search phrase.

Format: find <search phrase>

Examples:

5. Adding Priorities to Tasks

Adds a priority descriptor to a specific task. Before this step, the default priority for a task is UNDEFINED.

Format: priority <index of task> <priority>

Examples:

6. Saving and Exiting

Saves all the tasks in the list to a local file and exits the program. The saved tasks will be loaded again when the program is next run.

Format: bye