Index: tools/auto-complete.md
===================================================================
--- tools/auto-complete.md	(revision 120ab9d503b1159ce3a47089076ad982d32adbe1)
+++ tools/auto-complete.md	(revision c26b98c4e3ad17010233faff6d8dd23d5a41340b)
@@ -32,2 +32,23 @@
 
 ### Zsh
+
+1 - Add the following somewhere:
+    #compdef test.py
+
+    _test_py() {
+        local -a options
+        options=$($words[1] --list-comp)
+        _alternative "files:filenames:($options)"
+    }
+
+    _test_py "$@"
+
+2 - Add the path to that file to the "fpath" environment variable.
+
+3 - In ~/.zshrc add
+    autoload -U compinit
+    compinit
+
+*How it works:* I don't know ;P
+
+
