mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 11:37:10 +08:00
5 lines
222 B
Fish
5 lines
222 B
Fish
function __fish_complete_subcommand_root -d "Run the __fish_complete_subcommand function using a PATH containing /sbin and /usr/sbin"
|
|
set -lx -p PATH /sbin /usr/sbin ^/dev/null
|
|
__fish_complete_subcommand $argv
|
|
end
|