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


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