mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
completions: add qdbus completion
This commit is contained in:
parent
5642499dc2
commit
c588bd5c5c
1 changed files with 25 additions and 0 deletions
25
share/completions/qdbus.fish
Normal file
25
share/completions/qdbus.fish
Normal file
|
@ -0,0 +1,25 @@
|
|||
function __fish_qdbus_complete
|
||||
argparse system 'bus=' literal help -- (commandline --cut-at-cursor --tokenize) 2>/dev/null
|
||||
or return
|
||||
if set -q _flag_help
|
||||
return
|
||||
end
|
||||
set -l qdbus_flags $_flag_system
|
||||
if set -q _flag_bus
|
||||
set -a qdbus_flags --bus $_flag_bus
|
||||
end
|
||||
set argc (count $argv)
|
||||
if test $argc -le 3
|
||||
# avoid completion of property value
|
||||
qdbus $qdbus_flags $argv[2] $argv[3] | string replace --regex '^(property(\ read)?|signal|method) ((\{.+\})|([^\ ]+)) ([^\(]+)(\(.+?\))?' '$6\t$1 $3 $7' | string trim
|
||||
end
|
||||
end
|
||||
|
||||
complete -c qdbus -f
|
||||
|
||||
complete -c qdbus -l system -d 'connect to the system bus'
|
||||
complete -c qdbus -l bus -r -d 'connect to a custom bus'
|
||||
complete -c qdbus -l literal -d 'print replies literally'
|
||||
complete -c qdbus -l help -d 'print usage'
|
||||
|
||||
complete -c qdbus -a '(__fish_qdbus_complete)'
|
Loading…
Reference in a new issue