Add ls as an alias for note (#36)

This commit is contained in:
Sung Won Cho 2017-05-06 12:45:19 +10:00 committed by GitHub
commit cc9a438800
2 changed files with 2 additions and 1 deletions

View file

@ -153,6 +153,7 @@ e.g.
css
### dnote notes
*alias: ls*
List all notes in the current book

View file

@ -166,7 +166,7 @@ func main() {
check(err)
case "--version":
fmt.Println(utils.Version)
case "notes":
case "notes", "ls":
err := notes.Run()
check(err)
case "sync":