Created
June 29, 2009 21:29
-
-
Save jferris/137825 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # completion for schema | |
| _rails_tables() { | |
| if [[ -n $words[2] ]]; then | |
| compadd `schema -l ${words[2]}` | |
| fi | |
| } | |
| compdef _rails_tables schema |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment