0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Commands completion for Tarantool's cartridge framework

This commit is contained in:
Vas N 2020-07-23 13:33:39 +01:00
parent 9521837240
commit 60a823d8a4
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,9 @@
# Cartridge
This plugin provides completion for Tarantool [cartridge](https://www.tarantool.io/en/cartridge/) commands.
To use it add `cartridge` to the plugins array in your .zshrc file.
```zsh
plugins=(... cartridge)
```

View file

@ -0,0 +1,11 @@
# 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