diff options
Diffstat (limited to 'Completion/X')
-rwxr-xr-x | Completion/X/Command/_kfmclient | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Completion/X/Command/_kfmclient b/Completion/X/Command/_kfmclient index 0d2b753b4..87080cf90 100755 --- a/Completion/X/Command/_kfmclient +++ b/Completion/X/Command/_kfmclient @@ -1,7 +1,10 @@ -#compdef kfmclient +#compdef kfmclient kioclient # kfmclient is a command line interface for use with Konqueror, # the KDE file manager and web browser. +# +# In KDE4, kioclient has similar syntax but doesn't necessarily talk +# to Konqueror ("kioclient exec ." by default starts Dolphin, for example). local expl local -a context state line @@ -82,8 +85,8 @@ case $line[1] in (exec) if [[ $state = secondarg ]]; then - # TODO: could probe inside Desktop files. - _message "KDE binding" + # Look for a Desktop Action binding. + _wanted binding expl 'KDE binding' compadd -- ${${${(M)${(f)"$(<$file)"}:#"[Desktop Action "*"]"}%%\]}##"[Desktop Action "} return elif [[ $state = firstarg ]]; then _webbrowser |