2012-06-16 00:30:10 +00:00
|
|
|
function __fish_complete_lpr_option --description 'Complete lpr option'
|
2016-11-28 05:27:22 +00:00
|
|
|
set -l optstr (commandline -t)
|
|
|
|
switch $optstr
|
|
|
|
case '*=*'
|
2017-07-25 03:45:43 +00:00
|
|
|
string split -m1 = -- "$optstr" | read -l opt val
|
2016-11-28 05:27:22 +00:00
|
|
|
set -l descr
|
2018-04-01 20:42:38 +00:00
|
|
|
for l in (lpoptions -l 2>/dev/null | string match -- "*$opt*" | string replace -r '.*/(.*):\s*(.*)$' '$1 $2' | string split " ")
|
2016-11-28 05:27:22 +00:00
|
|
|
if not set -q descr[1]
|
|
|
|
set descr $l
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
set -l default ''
|
|
|
|
if string match -q '\**' -- $l
|
|
|
|
set default 'Default '
|
|
|
|
set l (string sub -s 2 -- $l)
|
|
|
|
end
|
|
|
|
echo $opt=$l\t$default$descr
|
|
|
|
end
|
|
|
|
case '*'
|
2018-04-01 20:42:38 +00:00
|
|
|
lpoptions -l 2>/dev/null | string replace -r '(.*)/(.*):.*$' '$1=\t$2'
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
2012-06-16 00:30:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
end
|