From 8c58e5f118db93de10ab286d6c1d02e33ec3280f Mon Sep 17 00:00:00 2001 From: Shohei YOSHIDA Date: Sun, 8 Mar 2026 23:15:05 +0900 Subject: [PATCH] Fix textutil completion - fix array value expansion --- src/_textutil | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_textutil b/src/_textutil index f29947e..a0ee74b 100644 --- a/src/_textutil +++ b/src/_textutil @@ -39,8 +39,8 @@ local -a format=(txt html rtf rtfd doc docx wordml odt webarchive) _arguments -S \ '-help[Show the usage information for the command and exit]' \ '-info[Display information about the specified files]' \ - '-convert[Convert the specified files to the indicated format and write]:format:(($format))' \ - '-cat[Read the specified files, concatenate them in the indicated format]:format:(($format))' \ + '-convert[Convert the specified files to the indicated format and write]:format:($format)' \ + '-cat[Read the specified files, concatenate them in the indicated format]:format:($format)' \ '-extension[Specify an extension to be used for output files]:ext' \ '-output[Specify the file name to be used for the first output file]:path:_files' \ '-stdin[Specify that input should be read from stdin rather than from files]' \