ip

Mew User Guide

Introduction

Mew is a task manager chatbot application that helps you manage your To-Dos, Events, and Deadlines.

Mew UI

img.png

General Command Format

Commands Summary

Commands

Add To-Do - todo

Adds a To-Do task to the current task list.

Format: todo TODO_DESCRIPTION

Example of usage:

Add Deadline - deadline

Adds a Deadline task to the current task list.

Format: deadline DEADLINE_DESCRIPTION /by [YYYYMMDD, HHMM]

Notes: An error will be shown if the input satisfies one of the conditions below:

Example of usage:

Add Event - event

Adds an Event task to the current task list.

Format: event EVENT_DESCRIPTION /at [YYYYMMDD, HHMM]

Note: An error will be shown if the input satisfies one of the conditions below:

Example of usage:

List all tasks - list

Shows the list containing all tasks.

Format: list

Note: An error will be shown if parameter is given

Mark a task as done - mark

Marks a task of given index in the task list as done.

Format: mark TASK_INDEX

Note:

  1. TASK_INDEX is the index of the task in the list and starts from 1.
  2. An error will be shown if TASK_INDEX satisfies one of the conditions below:
    • Is not a positive integer
    • Exceeds the task list size

Example of usage:

Unmark a task as not done - unmark

Unmarks a task of given index in the task list as not done.

Format: unmark TASK_INDEX

Note:

  1. TASK_INDEX is the index of the task in the list and starts from 1.
  2. An error will be shown if TASK_INDEX satisfies one of the conditions below:
    • Is not a positive integer
    • Exceeds the task list size

Example of usage:

Delete a task - delete

Deletes a task in the task list.

Format: delete TASK_INDEX

Note:

  1. TASK_INDEX is the index of the task in the list and starts from 1.
  2. An error will be shown if TASK_INDEX satisfies one of the conditions below:
    • Is not a positive integer
    • Exceeds the task list size

Example of usage:

Edit task - edit

Edits description of a task at selected index.

Format: edit TASK_INDEX TASK_DESCRIPTION

Note:

  1. TASK_INDEX is the index of the task in the list and starts from 1.
  2. An error will be shown if TASK_INDEX satisfies one of the conditions below:
    • Is not a positive integer
    • Exceeds the task list size
  3. An error will also be shown if no description is given.

Example of usage:

Find task - find

Finds a task that matches the keyword given.

Format: find KEYWORD

Note: Only one keyword can be given per one search, e.g. find eat dorayaki will search all tasks containing the keyword eat dorayaki.

Example of usage:

Help - help

Lists all available commands.

Format: help

Exit - bye

Sends bye to Mew and exits the application.

Format: bye