mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 03:54:04 +08:00
4 lines
101 B
Fish
4 lines
101 B
Fish
function __fish_complete_pg_database
|
|
psql -AtqwlF \t 2>/dev/null | awk 'NF > 1 { print $1 }'
|
|
end
|