Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH: _screen: support /dev/ttyUSB0 [baud] arguments



This fixes debian bug #623522:
    <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=623522>

Regards, Frank
---
 Completion/Unix/Command/_screen |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/Completion/Unix/Command/_screen b/Completion/Unix/Command/_screen
index 4d3b089..931946c 100644
--- a/Completion/Unix/Command/_screen
+++ b/Completion/Unix/Command/_screen
@@ -3,6 +3,18 @@
 local curcontext="$curcontext" state line expl
 local scr_cmds sessions
 
+function __screen_normal() {
+    if (( CURRENT == 1 )) && [[ $PREFIX == /dev/* ]]; then
+        _path_files -g '*(%)'
+    elif (( CURRENT == 2 )) && [[ ${words[1]} == /dev/* ]]; then
+        _message "baud rate"
+    elif (( CURRENT > 2 )) && [[ ${words[1]} == /dev/* ]]; then
+        _message "no more parameters"
+    else
+        _normal "$@"
+    fi
+}
+
 scr_cmds=(
   acladd            aclchg            acldel            aclgrp
   aclumask          activity          addacl            allpartial
@@ -91,7 +103,7 @@ _arguments -C \
   '-Dx: :->any-sessions' \
   '-dx: :->any-sessions' \
   '-X[execute command as a screen command in the specified session]:screencmd:(${scr_cmds[@]})' \
-  '*::arguments: _normal'
+  '*::arguments: __screen_normal'
 
 if [[ -n $state ]]; then
   case $state in
-- 
1.7.4.1.140.g89781



Messages sorted by: Reverse Date, Date, Thread, Author