mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 08:58:01 +00:00
14 lines
333 B
Fish
14 lines
333 B
Fish
|
function __fish_complete_abook_formats --description 'Complete abook formats'
|
||
|
set -l pat
|
||
|
switch $argv[1]
|
||
|
case in
|
||
|
set pat '/output:/,$d; /input:\|^$/d'
|
||
|
case out
|
||
|
set pat '/input:/,/output:/d; /^$/d'
|
||
|
case '*'
|
||
|
return 1
|
||
|
end
|
||
|
abook --formats | sed -e $pat -e 's/^\s\+//'
|
||
|
|
||
|
end
|