Line 0
Link Here
|
|
|
1 |
--- share/functions/__fish_print_filesystems.fish.orig 2017-01-13 15:45:46 UTC |
2 |
+++ share/functions/__fish_print_filesystems.fish |
3 |
@@ -4,6 +4,6 @@ function __fish_print_filesystems -d "Pr |
4 |
set fs $fs hfs hpfs iso9660 jfs minix msdos ncpfs nfs ntfs proc qnx4 ramfs |
5 |
set fs $fs reiserfs romfs smbfs sysv tmpfs udf ufs umsdos vfat xenix xfs xiafs |
6 |
# Mount has helper binaries to mount filesystems |
7 |
- # These are called mount.* and are placed somewhere in $PATH |
8 |
- printf "%s\n" $fs (string replace -ra ".*/mount." "" -- $PATH/mount.*) |
9 |
+ # These are called mount_* and are placed somewhere in $PATH |
10 |
+ printf "%s\n" $fs (string replace -ra ".*/mount_" "" -- $PATH/mount_*) |
11 |
end |