diff --git a/README.md b/README.md index 63897b6..5d6d22a 100644 --- a/README.md +++ b/README.md @@ -117,3 +117,12 @@ Symlink the Plano library into your `python` directory: Copy the `plano` command into the root of your project: cp external/plano/bin/plano plano + +## Extending an existing command + +~~~ python +@command(parent=blammo) +def blammo(*args, **kwargs): + parent(*args, **kwargs) + # Do child stuff +~~~