mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-19 02:02:32 +01:00
11 lines
236 B
Bash
11 lines
236 B
Bash
|
|
# Cartridge basic commands
|
|
_cartridge_get_command_list () {
|
|
cartridge | sed "1,/Available Commands/d" | awk '/^[ \t]*[a-z]+/ { print $1 }'
|
|
}
|
|
|
|
_cartridge () {
|
|
compadd `_cartridge_get_command_list`
|
|
}
|
|
|
|
compdef _cartridge cartridge
|