mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-13 01:31:18 +02:00
Mikael: 27642: missing glob qualifier completion
This commit is contained in:
parent
0d8a580951
commit
1caf52f396
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-01-31 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
|
* Mikael: 27642: Completion/Zsh/Type/_globquals: add some
|
||||||
|
missing entries.
|
||||||
|
|
||||||
2010-01-29 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
2010-01-29 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
* users/14752: Functions/Misc/zed, Src/builtin.c: add #!
|
* users/14752: Functions/Misc/zed, Src/builtin.c: add #!
|
||||||
|
@ -12647,5 +12652,5 @@
|
||||||
|
|
||||||
*****************************************************
|
*****************************************************
|
||||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||||
* $Revision: 1.4875 $
|
* $Revision: 1.4876 $
|
||||||
*****************************************************
|
*****************************************************
|
||||||
|
|
|
@ -146,6 +146,9 @@ while [[ -n $PREFIX ]]; do
|
||||||
"m:last modification time"
|
"m:last modification time"
|
||||||
"c:last inode change time"
|
"c:last inode change time"
|
||||||
"d:directory depth"
|
"d:directory depth"
|
||||||
|
"N:no sorting"
|
||||||
|
"e:execute code"
|
||||||
|
"+:+ command name"
|
||||||
)
|
)
|
||||||
_describe -t sort-specifiers "sort specifier" alts -Q -S ''
|
_describe -t sort-specifiers "sort specifier" alts -Q -S ''
|
||||||
return
|
return
|
||||||
|
|
|
@ -46,7 +46,7 @@ for file in $allfuncs; do
|
||||||
fi
|
fi
|
||||||
test -d $instdir || /bin/sh $sdir_top/mkinstalldirs $instdir || exit 1
|
test -d $instdir || /bin/sh $sdir_top/mkinstalldirs $instdir || exit 1
|
||||||
$INSTALL_DATA $sdir_top/$file $instdir || exit 1
|
$INSTALL_DATA $sdir_top/$file $instdir || exit 1
|
||||||
if test -x $sdir_top/$file; then
|
if sed -ne '1p' $sdir_top/$file | grep '^#!' >/dev/null; then
|
||||||
chmod +x $instdir/`echo $file | sed -e 's%^.*/%%'`
|
chmod +x $instdir/`echo $file | sed -e 's%^.*/%%'`
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue