mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:12:50 +08:00
13 lines
330 B
Fish
13 lines
330 B
Fish
# Helper function for completions that need to enumerate block devices.
|
|
function __fish_complete_blockdevice
|
|
set -l cmd (commandline -ct)
|
|
test -z "$cmd"
|
|
and set cmd /dev/
|
|
for f in $cmd*
|
|
test -b $f
|
|
and printf "%s\t%s\n" $f "Block device"
|
|
test -d $f
|
|
and printf "%s\n" $f/
|
|
end
|
|
end
|