mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-01 15:07:32 +08:00
9 lines
243 B
Fish
9 lines
243 B
Fish
|
|
|
|
function __fish_complete_subcommand_root -d "Run the __fish_complete_subcommand function using a PATH containing /sbin and /usr/sbin"
|
|
set -l PATH_OLD $PATH
|
|
set PATH /sbin /usr/sbin $PATH
|
|
__fish_complete_subcommand
|
|
set PATH $PATH_OLD
|
|
end
|