mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
b0c6d891e9
* fixed some whitespace inconsistencies * changed variable handling in __fish_complete_subcommand_root
6 lines
210 B
Fish
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
|