mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-06 09:01:13 +02:00
28761: file completion for sccs
This commit is contained in:
parent
3a23e82941
commit
6be3fe2fca
2 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
2011-02-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
2011-02-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
|
* 28761: Completion/Unix/Command/_sccs: file completion missing
|
||||||
|
for some commands.
|
||||||
|
|
||||||
* 28762: Src/exec.c: logic for closing coproc file descriptors
|
* 28762: Src/exec.c: logic for closing coproc file descriptors
|
||||||
was wrong.
|
was wrong.
|
||||||
|
|
||||||
|
@ -14212,5 +14215,5 @@
|
||||||
|
|
||||||
*****************************************************
|
*****************************************************
|
||||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||||
* $Revision: 1.5199 $
|
* $Revision: 1.5200 $
|
||||||
*****************************************************
|
*****************************************************
|
||||||
|
|
|
@ -109,7 +109,9 @@ case $service in
|
||||||
sact|print) _sccs_files;;
|
sact|print) _sccs_files;;
|
||||||
create|enter) _files;;
|
create|enter) _files;;
|
||||||
deledit|delget|delta)
|
deledit|delget|delta)
|
||||||
_arguments '-s[silent]' '-y+[specify delta commentary]:comment'
|
_arguments "$sfiles" \
|
||||||
|
'-s[silent]' \
|
||||||
|
'-y+[specify delta commentary]:comment' \
|
||||||
;;
|
;;
|
||||||
diffs)
|
diffs)
|
||||||
_diff_options diff "$sfiles" "$ropt" "$copt" \
|
_diff_options diff "$sfiles" "$ropt" "$copt" \
|
||||||
|
|
Loading…
Reference in a new issue