mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 17:28:19 +00:00
c51abd04ff
Closes #4429
7 lines
289 B
Fish
7 lines
289 B
Fish
function __fish_print_commands --description "Print a list of documented fish commands"
|
|
if test -d $__fish_data_dir/man/man1/
|
|
for file in $__fish_data_dir/man/man1/**.1*
|
|
string replace -r '.*/' '' -- $file | string replace -r '.1(.gz)?$' ''
|
|
end
|
|
end
|
|
end
|