mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
b05bfa64b5
really great job with zsh, thanks a lot. [1] - Upgrade to 4.3.11 - add linsysfs to the file system list for completion [2] - fix mount completion when adding available labels to the list of devices [3] PR: ports/141472 [2], ports/145657 [3] Submitted by: scf [2], Frédéric Perrin <frederic.perrin _at_ resel.fr> [3] Approved by: des@ [1]
12 lines
398 B
Plaintext
12 lines
398 B
Plaintext
--- ./Completion/Unix/Command/_mount.orig 2009-08-28 17:10:39.000000000 +0200
|
|
+++ ./Completion/Unix/Command/_mount 2011-02-28 00:34:40.000000000 +0100
|
|
@@ -868,7 +868,7 @@
|
|
# add glabel devices
|
|
_glabel=(${(M)${(f)"$(/sbin/glabel list)"}:#*Name:[[:space:]]*/*})
|
|
for mline ($_glabel);do
|
|
- dev_tmp+=( mline[(w)3] )
|
|
+ dev_tmp+=( /dev/$mline[(w)3] )
|
|
done
|
|
|
|
_alternative \
|