fish-shell/share/functions/__fish_complete_subcommand_root.fish
Jan Kanis b0c6d891e9 reviewed merge reqest 14:
* fixed some whitespace inconsistencies
* changed variable handling in __fish_complete_subcommand_root
2012-01-25 01:14:47 +01:00

6 lines
210 B
Fish

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