mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 02:13:38 +08:00
9 lines
275 B
Fish
9 lines
275 B
Fish
|
# fish completion for mycli -*- shell-script -*-
|
||
|
|
||
|
function __fish_mycli_dsn
|
||
|
mycli --list-dsn
|
||
|
end
|
||
|
|
||
|
complete -c mycli -s d -l dsn -x -d 'Use DSN configured into the [alias_dsn]' -a '(__fish_mycli_dsn)'
|
||
|
complete -c mycli -a '(__fish_mycli_dsn)'
|