diff --git a/Quick-Start-Guide.textile b/Quick-Start-Guide.textile index 4f38f67..1d1434c 100644 --- a/Quick-Start-Guide.textile +++ b/Quick-Start-Guide.textile @@ -11,3 +11,23 @@ Here's how to install and run the Todo.txt CLI: 3. Type @./todo.sh@ to see the usage message. You're ready to go! To start adding tasks, type @./todo.sh add "My new task"@ + +4. (Optional, since v 2.9:) Install the Bash completion, either system-wide, for all users: + +
+ $ sudo cp todo_completion /etc/bash_completion.d/todo ++ +_or_ put it somewhere in your home directory and source it from your @.bashrc@: + +
+ $ source todo_completion ++ +Now you can type @$ ./todo.sh ad
+ $ complete -F _todo t +