mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
42978: fix small but irritating bug in pbcopy completion
This commit is contained in:
parent
c89d9cc820
commit
63e09b338b
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2018-06-10 Oliver Kiddle <okiddle@yahoo.co.uk>
|
||||
|
||||
* 42978: dana: Completion/Darwin/Command/_pbcopy: fix small bug
|
||||
|
||||
* 42977: dana: Completion/Unix/Command/_man: Complete options to
|
||||
major man variants, otherwise improve especially section matching
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ args=(
|
|||
'(-)-help[display help information]'
|
||||
'-pboard[specify pasteboard to copy to or paste from]: :->pboards'
|
||||
)
|
||||
[[ $service == pbpaste ]] & args+=(
|
||||
[[ $service == pbpaste ]] && args+=(
|
||||
'-Prefer[specify type of data to prefer when pasting]: :->dtypes'
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue