mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02: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
|