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


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 $argv
	set PATH $PATH_OLD


end