mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
4037219dc0
darcs-hash:20060913171310-ac50b-a9e30533bc634f194f73fdee1e042d407f55fcac.gz
8 lines
244 B
Fish
8 lines
244 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
|