aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_complete_subcommand_root.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-09-14 03:13:10 +1000
committerGravatar axel <axel@liljencrantz.se>2006-09-14 03:13:10 +1000
commit4037219dc062acaf3792b818cceb8cc9ef3d5bcb (patch)
tree4642aca375c28891a54538af93001afb163675ea /share/functions/__fish_complete_subcommand_root.fish
parent1612ec50fbac4344f365fb31a15240834c01eaeb (diff)
Make sude completions include /sbin and /usr/sbin in PATH. Thanks to Xavier Douville for the suggestion.
darcs-hash:20060913171310-ac50b-a9e30533bc634f194f73fdee1e042d407f55fcac.gz
Diffstat (limited to 'share/functions/__fish_complete_subcommand_root.fish')
-rw-r--r--share/functions/__fish_complete_subcommand_root.fish8
1 files changed, 8 insertions, 0 deletions
diff --git a/share/functions/__fish_complete_subcommand_root.fish b/share/functions/__fish_complete_subcommand_root.fish
new file mode 100644
index 00000000..49504ce4
--- /dev/null
+++ b/share/functions/__fish_complete_subcommand_root.fish
@@ -0,0 +1,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