Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: _aptitude: Completion for -F format specifiers
- X-seq: zsh-workers 29529
- From: Frank Terbeck <ft@xxxxxxxxxxxxxxxxxxx>
- To: zsh workers <zsh-workers@xxxxxxx>
- Subject: PATCH: _aptitude: Completion for -F format specifiers
- Date: Fri, 1 Jul 2011 11:04:14 +0200
- Cc: Daniel Bolton <dan@xxxxxxx>, 632140@xxxxxxxxxxxxxxx
- In-reply-to: <20110629200601.5518.79542.reportbug@ganymed.my.domain>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20110629200601.5518.79542.reportbug@ganymed.my.domain>
From: Daniel Bolton <dan@xxxxxxx>
Received via the Debian BTS: #632140
Thanks!
---
Completion/Debian/Command/_aptitude | 35 ++++++++++++++++++++++++++++++++++-
1 files changed, 34 insertions(+), 1 deletions(-)
diff --git a/Completion/Debian/Command/_aptitude b/Completion/Debian/Command/_aptitude
index bfec497..2c462e4 100644
--- a/Completion/Debian/Command/_aptitude
+++ b/Completion/Debian/Command/_aptitude
@@ -13,6 +13,39 @@ ${${(M)${(f)"$(</etc/apt/sources.list)"}\
#}}}
}
+# Helper function for -F / --display-format
+function _aptitude_format_strings() {
+ _values -s , 'format string' \
+ '%%[Literal %]' \
+ '%#number[Parameter replacement]' \
+ '%a[Action flag]' \
+ '%A[Action]' \
+ '%B[Broken count]' \
+ '%c[Current state flag]' \
+ '%C[Current state]' \
+ '%d[Description]' \
+ '%H[Hostname]' \
+ '%i[Pin priority]' \
+ '%I[Installed size]' \
+ '%m[Maintainer]' \
+ '%M[Automatic flag]' \
+ '%n[Program version]' \
+ '%N[Program name]' \
+ '%o[Download size]' \
+ '%p[Package name]' \
+ '%P[Priority]' \
+ '%r[Reverse depends count]' \
+ '%R[Abbreviated priority]' \
+ '%s[Section]' \
+ '%S[Trust status]' \
+ '%t[Archive]' \
+ '%T[Tagged]' \
+ '%u[Disk usage change]' \
+ '%v[Current version]' \
+ '%V[Candidate version]' \
+ '%Z[Size change]'
+}
+
_arguments -C \
'(- 1 *)'{-h,--help}'[display help information]' \
'(- 1 *)--version[display version information]' \
@@ -20,7 +53,7 @@ _arguments -C \
'(-d --download-only)'{-d,--download-only}"[just download packages - don\'t install]" \
'(-P --prompt)'{-P,--prompt}'[always display a prompt]' \
'(-y --assume-yes)'{-y,--assume-yes}'[assume yes answer to questions]' \
- '(-F --display-format)'{-F,--display-format}'[specify output format for search command]:format' \
+ '(-F --display-format)'{-F,--display-format}'[specify output format for search command]:format:_aptitude_format_strings' \
'(-O --sort)'{-O,--sort}'[specify sort order]:sort order:()' \
'(-w --width)'{-w,--width}'[specify output width]:width' \
'-f[aggressivley try to fix dependencies of broken packages]' \
--
1.7.6
Messages sorted by:
Reverse Date,
Date,
Thread,
Author