summaryrefslogtreecommitdiff
path: root/completions/xhost
diff options
context:
space:
mode:
authorDavid Paleino <dapal@debian.org>2011-11-03 12:32:52 +0100
committerDavid Paleino <dapal@debian.org>2011-11-03 12:32:52 +0100
commit2c8171c38d87ddef31c92a76547d3fdf773a1337 (patch)
tree5e720d5a06ead72ed55454bf6647a712a761ed91 /completions/xhost
parent9920a8faedf704420571d8072ccab27e9dac40ba (diff)
downloadbash-completion-2c8171c38d87ddef31c92a76547d3fdf773a1337.tar.gz
Imported Upstream version 1.90upstream/1.90
Diffstat (limited to 'completions/xhost')
-rw-r--r--completions/xhost13
1 files changed, 3 insertions, 10 deletions
diff --git a/completions/xhost b/completions/xhost
index cec4adcf..397ca9ce 100644
--- a/completions/xhost
+++ b/completions/xhost
@@ -1,10 +1,9 @@
-# xhost(1) completion
+# xhost(1) completion -*- shell-script -*-
-have xhost &&
_xhost ()
{
- local cur
- _get_comp_words_by_ref cur
+ local cur prev words cword
+ _init_completion || return
case $cur in
+*) _known_hosts_real -p+ "${cur:1}" ;;
@@ -16,10 +15,4 @@ _xhost ()
} &&
complete -F _xhost xhost
-# Local variables:
-# mode: shell-script
-# sh-basic-offset: 4
-# sh-indent-comment: t
-# indent-tabs-mode: nil
-# End:
# ex: ts=4 sw=4 et filetype=sh