From a2638f9d57514116b85649bd78c38b57815382ee Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Wed, 18 Feb 2004 12:45:24 +0000 Subject: 19436: complete more things from nis --- Completion/Unix/Type/_printers | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Completion/Unix/Type/_printers') diff --git a/Completion/Unix/Type/_printers b/Completion/Unix/Type/_printers index d736dd51d..02196daee 100644 --- a/Completion/Unix/Type/_printers +++ b/Completion/Unix/Type/_printers @@ -1,6 +1,6 @@ #compdef -value-,PRINTER,-default- -value-,LPDEST,-default- -local expl ret=1 list disp sep +local expl ret=1 list disp sep tmp if (( $+commands[lsallq] )); then # Use AIX's command to list print queues @@ -39,6 +39,12 @@ if (( ! $+_lp_cache )); then fi done < $file[1] fi + + if [[ $OSTYPE = solaris* ]] && (( ${+commands[ypcat]} )) && + tmp=$(_call_program printers ypcat printers.conf.byname 2>/dev/null); then + _lp_cache+=( ${${${(S)${(f)tmp}/(#b):*((#e)|description=([^:]#):)*/:${match[2]}|}%%|*}:#_default*} ) # If you use YP + fi + (( $#_lp_cache )) || _lp_cache=( 'lp0:Guessed default printer' ) (( $#_lp_alias_cache )) || unset _lp_alias_cache fi -- cgit 1.4.1