mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-31 23:28:45 +00:00
4 lines
125 B
Fish
4 lines
125 B
Fish
|
function __fish_complete_external_command
|
||
|
command find $PATH/ -maxdepth 1 -perm +u+x 2>&- | string match -r '[^/]*$'
|
||
|
end
|