fish-shell/share/functions/__fish_complete_subcommand_root.fish

7 lines
210 B
Fish
Raw Normal View History

function __fish_complete_subcommand_root -d "Run the __fish_complete_subcommand function using a PATH containing /sbin and /usr/sbin"
set -lx PATH /sbin /usr/sbin $PATH
__fish_complete_subcommand $argv
end