Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: fix for new completion files
- X-seq: zsh-workers 5401
- From: Sven Wischnowsky <wischnow@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: PATCH: fix for new completion files
- Date: Tue, 16 Feb 1999 15:41:45 +0100 (MET)
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
I forgot to rename files to __files in some places.
Bye
Sven
--- of/Completion/__condition Tue Feb 16 15:02:56 1999
+++ Functions/Completion/__condition Tue Feb 16 15:33:46 1999
@@ -3,8 +3,8 @@
if [[ -current -1 -o ]]; then
complist -o -M 'L:|[nN][oO]= M:_= M:{A-Z}={a-z}'
elif [[ -current -1 -nt || -current -1 -ot || -current -1 -ef ]]; then
- files
+ __files
else
- files
+ __files
complist -v
fi
--- of/Completion/__hash Tue Feb 16 15:02:57 1999
+++ Functions/Completion/__hash Tue Feb 16 15:40:33 1999
@@ -2,12 +2,12 @@
if [[ -mword 1 -*d* ]]; then
if [[ -string 1 '=' ]]; then
- pfiles -g '*(-/)'
+ __path_files -g '*(-/)'
else
complist -n -q -S '='
fi
elif [[ -string 1 '=' ]]; then
- files -g '*(*)' '*(-/)'
+ __files -g '*(*)' '*(-/)'
else
complist -m -q -S '='
fi
--
Sven Wischnowsky wischnow@xxxxxxxxxxxxxxxxxxxxxxx
Messages sorted by:
Reverse Date,
Date,
Thread,
Author