aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_subcommand_root.fish
blob: f4df8d9d3e809e006525db97add30f503dcb6210 (plain)
1
2
3
4
5
6


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