diff options
author | Clint Adams <clint@users.sourceforge.net> | 2003-10-25 14:12:47 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2003-10-25 14:12:47 +0000 |
commit | a19eb0c4f0a51365d73e3421176e282227f8e0d4 (patch) | |
tree | 83c7cdb4297944fb20c9a85e9d6e58265bb6be97 /Completion | |
parent | df3c2c64a5e3dd2921719a5a31ff4197e7e3b17b (diff) | |
download | zsh-a19eb0c4f0a51365d73e3421176e282227f8e0d4.tar.gz zsh-a19eb0c4f0a51365d73e3421176e282227f8e0d4.tar.xz zsh-a19eb0c4f0a51365d73e3421176e282227f8e0d4.zip |
* 19201: Completion/Unix/Command/_screen: patch from Yasuhiro Hayase
to complete normal commands after screen.
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_screen | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_screen b/Completion/Unix/Command/_screen index 89ddc9a96..6995dfdec 100644 --- a/Completion/Unix/Command/_screen +++ b/Completion/Unix/Command/_screen @@ -69,7 +69,8 @@ _arguments \ '(-)-v[print screen version]' \ '(-)-wipe[do nothing, clean up SockDir]' \ '-x[attach to a not detached screen. (Multi display mode).]' \ - '-X[execute <cmd> as a screen command in the specified session.]:screencmd:(${scr_cmds[@]})' + '-X[execute <cmd> as a screen command in the specified session.]:screencmd:(${scr_cmds[@]})' \ + '*::arguments: _normal' case $state in sessionname) |