diff options
| author | Quey-Liang Kao <s101062801@m101.nthu.edu.tw> | 2017-08-14 16:34:33 +0800 |
|---|---|---|
| committer | Quey-Liang Kao <s101062801@m101.nthu.edu.tw> | 2017-08-14 16:34:33 +0800 |
| commit | 7c24f39a0fc8bb07dc9db4f5fecd3468705b1e37 (patch) | |
| tree | fef48b2359c4a432cf8bf28c5caa16188dbb53e8 /todo.go | |
| parent | c4d6dbdb100bb66db9b184c653617c47a63e91ca (diff) | |
Implement the "en" feature: Editting notes
Diffstat (limited to 'todo.go')
| -rw-r--r-- | todo.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -129,6 +129,8 @@ func usage() { fmt.Println("\tLists notes of the todo with id 12\n") yellow.Println("\ttodo dn 12 3") fmt.Println("\tDeletes the 3rd note of the todo with id 12\n") + yellow.Println("\ttodo en 12 3 check http://that.web.site") + fmt.Println("\tEditing the 3rd note of the todo with id 12 to \"http://that.web.site\" \n") blueBold.Println("\nGarbage Collection") yellow.Println("\ttodo gc") @@ -161,7 +163,7 @@ func routeInput(command string, input string) { app.EditTodo(input) case "ex", "expand": app.ExpandTodo(input) - case "an", "ln", "dn": + case "an", "ln", "dn", "en": app.ManipulateNotes(input) case "gc": app.GarbageCollect() |
