jferris (owner)

Revisions

gist: 137825 Download_button fork
public
Public Clone URL: git://gist.github.com/137825.git
Schema tab completion
1
2
3
4
5
6
7
8
# completion for schema
_rails_tables() {
  if [[ -n $words[2] ]]; then
    compadd `schema -l ${words[2]}`
  fi
}
compdef _rails_tables schema