summaryrefslogtreecommitdiffstats
path: root/bash-completion/write
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/write')
-rw-r--r--bash-completion/write8
1 files changed, 2 insertions, 6 deletions
diff --git a/bash-completion/write b/bash-completion/write
index 1fe080721..7b2d2fae3 100644
--- a/bash-completion/write
+++ b/bash-completion/write
@@ -11,15 +11,11 @@ _write_module()
esac
case $COMP_CWORD in
1)
- COMPREPLY=( $(compgen -u -- $cur) )
+ COMPREPLY=( $(compgen -W '$(users)' -- $cur) )
return 0
;;
2)
- local I TERMS=''
- for I in /sys/class/tty/*; do
- TERMS+="/dev${I##/sys/class/tty} "
- done
- COMPREPLY=( $(compgen -W "$TERMS" -- $cur) )
+ COMPREPLY=( $(compgen -W "$(w -h $prev | awk '{print $2}')" -- $cur) )
return 0
;;
esac