fish-shell/share/functions/__fish_print_commands.fish
Fabian Homborg 222a07e907 Allow compressed man pages in help
It seems Fedora compresses our whopping 340k of man pages.

Fixes #3130.

Inspired by @TieDyedDevil's work there.
2016-06-10 14:13:15 +02:00

7 lines
287 B
Fish

function __fish_print_commands --description "Print a list of documented fish commands"
if test -d $__fish_datadir/man/man1/
for file in $__fish_datadir/man/man1/**.1*
string replace -r '.*/' '' -- $file | string replace -r '.1(.gz)?$' ''
end
end
end