diff options
author | dana <dana@dana.is> | 2018-06-02 17:15:48 -0500 |
---|---|---|
committer | Oliver Kiddle <okiddle@yahoo.co.uk> | 2018-06-09 10:05:07 +0200 |
commit | e60620bc2f1392a938e945d2f09d9b8d8f9e11bc (patch) | |
tree | bb806698c54f3fb5f2e2ce99c63996197e8ce0bc /Completion/Unix/Command | |
parent | 9767ee88495d49df36b54b6fc58232ad76f8b020 (diff) | |
download | zsh-e60620bc2f1392a938e945d2f09d9b8d8f9e11bc.tar.gz zsh-e60620bc2f1392a938e945d2f09d9b8d8f9e11bc.tar.xz zsh-e60620bc2f1392a938e945d2f09d9b8d8f9e11bc.zip |
42918: fix file completion for jq
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_jq | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_jq b/Completion/Unix/Command/_jq index 55bb93c04..4ff05dab4 100644 --- a/Completion/Unix/Command/_jq +++ b/Completion/Unix/Command/_jq @@ -31,4 +31,4 @@ _arguments -S -s : \ '*--argjson[pre-set a variable to an object]: :_guard "|[A-Za-z][A-Za-z0-9]#" "variable name":value (JSON): ' \ '*--slurpfile[pre-set a variable to contents of a file]: :_guard "|[A-Za-z][A-Za-z0-9]#" "variable name":value (filename of file containing JSON):_files' \ "1: :_guard '|[^-]' filter" \ - "*:_files" + "*: :_files" |