mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Update lxd.plugin.zsh
- Delete debug logs
This commit is contained in:
parent
eb5287383d
commit
b47762f7e3
1 changed files with 8 additions and 8 deletions
|
@ -9,7 +9,7 @@ _lxc_get_global_flags () {
|
||||||
}
|
}
|
||||||
|
|
||||||
_lxc_get_command_list () {
|
_lxc_get_command_list () {
|
||||||
echo "___command"
|
|
||||||
$_comp_command1 -h | _lxc_get_commands
|
$_comp_command1 -h | _lxc_get_commands
|
||||||
$_comp_command1 -h | _lxc_get_global_flags
|
$_comp_command1 -h | _lxc_get_global_flags
|
||||||
}
|
}
|
||||||
|
@ -22,24 +22,24 @@ _lxc_get_subcommand_list () {
|
||||||
|
|
||||||
case ${words[2]} in
|
case ${words[2]} in
|
||||||
alias|cluster|image|operation|profile|project|remote|storage|warning)
|
alias|cluster|image|operation|profile|project|remote|storage|warning)
|
||||||
echo "___subco_alias"
|
|
||||||
${words[1]} ${words[2]} list -f csv | cut -d, -f1
|
${words[1]} ${words[2]} list -f csv | cut -d, -f1
|
||||||
;;
|
;;
|
||||||
list)
|
list)
|
||||||
echo "___subco_list"
|
|
||||||
${words[1]} ${words[2]} -cn -fcsv ${words[3]}
|
${words[1]} ${words[2]} -cn -fcsv ${words[3]}
|
||||||
;;
|
;;
|
||||||
exec)
|
exec)
|
||||||
echo "___subco_exec"
|
|
||||||
echo "--"
|
echo "--"
|
||||||
${words[1]} list -cn -fcsv ${words[3]}
|
${words[1]} list -cn -fcsv ${words[3]}
|
||||||
;;
|
;;
|
||||||
network)
|
network)
|
||||||
echo "___subco_autre"
|
|
||||||
${words[1]} ${words[2]} list -fcsv | cut -d, -f1
|
${words[1]} ${words[2]} list -fcsv | cut -d, -f1
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "___subco_autre"
|
|
||||||
${words[1]} list -cn -fcsv ${words[3]}
|
${words[1]} list -cn -fcsv ${words[3]}
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -49,12 +49,12 @@ _lxc_get_subcommand_list () {
|
||||||
_lxc_get_element_list () {
|
_lxc_get_element_list () {
|
||||||
case ${words[2]} in
|
case ${words[2]} in
|
||||||
exec)
|
exec)
|
||||||
echo "___subco_exec2"
|
|
||||||
echo "--"
|
echo "--"
|
||||||
$_comp_command1 ${words[2]} -h | _lxc_get_flags
|
$_comp_command1 ${words[2]} -h | _lxc_get_flags
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "___subco_autre2"
|
|
||||||
$_comp_command1 ${words[2]} ${words[3]} -h | _lxc_get_flags
|
$_comp_command1 ${words[2]} ${words[3]} -h | _lxc_get_flags
|
||||||
$_comp_command1 ${words[2]} ${words[3]} -h | _lxc_get_commands
|
$_comp_command1 ${words[2]} ${words[3]} -h | _lxc_get_commands
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue