diff options
author | Clint Adams <clint@users.sourceforge.net> | 2005-04-12 20:15:48 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2005-04-12 20:15:48 +0000 |
commit | b65e0419fef046e68498fde592c9e6f596243bea (patch) | |
tree | 66fc8ca68c819d1588ae65b64a94db76bede87e0 | |
parent | bfdccce23e52592e144654fd6e87f7b9cfaa65b1 (diff) | |
download | zsh-b65e0419fef046e68498fde592c9e6f596243bea.tar.gz zsh-b65e0419fef046e68498fde592c9e6f596243bea.tar.xz zsh-b65e0419fef046e68498fde592c9e6f596243bea.zip |
* 21135: complete attached sessions after screen -x.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_screen | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index cfc116143..b57683841 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-04-11 Clint Adams <clint@zsh.org> + + * 21135: Completion/Unix/Command/_screen: complete attached + sessions after screen -x. + 2005-04-12 Peter Stephenson <pws@csr.com> * 21134: Test/A04redirect.ztst: error for bad file descriptor diff --git a/Completion/Unix/Command/_screen b/Completion/Unix/Command/_screen index a49709013..c2ecd0382 100644 --- a/Completion/Unix/Command/_screen +++ b/Completion/Unix/Command/_screen @@ -83,7 +83,7 @@ _arguments -C \ '-U[tell screen to use UTF-8 encoding]' \ '(-)-v[print screen version]' \ '(-)-wipe[do nothing, clean up SockDir]' \ - '-x[attach to a not detached screen (multi display mode)]' \ + '-x[attach to a not detached screen (multi display mode)]: :->attached-sessions' \ '-X[execute command as a screen command in the specified session]:screencmd:(${scr_cmds[@]})' \ '*::arguments: _normal' |