diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2018-08-24 15:43:29 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2018-08-25 15:54:35 +0000 |
commit | 1c5fb91e71271abfc8ed13bf7545de196f1fe764 (patch) | |
tree | 621141c8c1efe96182b230569ce088e01c48fe79 /Completion/Unix/Command | |
parent | 40d9681b6294fbc6727056320e0f84b06885eeeb (diff) | |
download | zsh-1c5fb91e71271abfc8ed13bf7545de196f1fe764.tar.gz zsh-1c5fb91e71271abfc8ed13bf7545de196f1fe764.tar.xz zsh-1c5fb91e71271abfc8ed13bf7545de196f1fe764.zip |
43331: _diff3: Enhance positional argument descriptions (thanks, Oliver).
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_diff3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_diff3 b/Completion/Unix/Command/_diff3 index 81e274d05..524507ce0 100644 --- a/Completion/Unix/Command/_diff3 +++ b/Completion/Unix/Command/_diff3 @@ -39,8 +39,8 @@ else fi _arguments -s -S $args \ - '1:updated file:_files' \ - '2:original file:_files' \ - '3:updated file:_files' \ + '1: : _wanted files expl "first updated file (${${(As.:.)opt_args[-L]}[1]:-mine})" _files' \ + '2: : _wanted files expl "original file (${${(As.:.)opt_args[-L]}[2]:-old})" _files' \ + '3: : _wanted files expl "second updated file (${${(As.:.)opt_args[-L]}[3]:-their})" _files' \ + '(ed)' $ed |