Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] Completion: _date_formats updates
- X-seq: zsh-workers 44034
- From: dana <dana@xxxxxxx>
- To: Zsh workers <zsh-workers@xxxxxxx>
- Subject: [PATCH] Completion: _date_formats updates
- Date: Sun, 3 Feb 2019 13:10:17 -0600
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dana-is.20150623.gappssmtp.com; s=20150623; h=from:content-transfer-encoding:mime-version:subject:message-id:date :to; bh=qJbZwPXKe0/tIKN1pjzog6TeIixrRkUGaNn7/sELtr0=; b=MSa6zuo4Yhjm99wVce/3OWcgY+JQmrYKxly2w3MZQJb7pIiHA/1xZ9WT1jB9HppZCq Mv4Bu0ub2OdaoQBTYzrIiDPQFsylHrQMaN1ZJfkeUaheW753ZEiyNgQSfnAqC1obyeE3 XwKPRqTX73zLGUVly0EhzMTVkkU6lSV31L2KNGtnd2ZJ8pBWvQb9BUs/OkUiq22XieZT ygzqwKmkS7EXL+ZqaU8/wzuTEKbZhZFWvrJwyJsB49LMWFsilPdmgR6iTHoMfHFvUX82 tFFwcdS2jk5v+EXl/+YbNdEia5ukS9rKkqdueRhRlOo5R46gc2Gvx0qry0nx6sXeHLMf A3TA==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Some last-minute updates to _date_formats before i get to work on 5.7.1. This
is mostly to account for the nanosecond stuff (%9./%N) added recently, but it
also fixes some wording/capitalisation.
This function is actually broken in some places (e.g., date +<TAB> produces
weird output), apparently due to a bug in _describe related to the fact that
%b and %h share a description. It also needs additional ways for the caller to
specify the implementation, so that (for example) we can complete properly for
GNU date on non-Linux systems. But i'll look into those issues later
dana
diff --git a/Completion/Unix/Type/_date_formats b/Completion/Unix/Type/_date_formats
index 6bd5c6d6b..889a95779 100644
--- a/Completion/Unix/Type/_date_formats
+++ b/Completion/Unix/Type/_date_formats
@@ -24,7 +24,7 @@ specs=(
'c:preferred locale date and time'
'C:2-digit century'
'd:day of month (01-31)'
- 'D:american format month/day/year (%m/%d/%y)'
+ 'D:American format month/day/year (%m/%d/%y)'
'e:day of month ( 1-31)'
'F:ISO 8601 year-month-date (%Y-%m-%d)'
'G:4-digit ISO 8601 week-based year'
@@ -44,21 +44,25 @@ specs=(
'S:seconds (00-60)'
't:tab'
'T:24-hour notation with seconds (%H:%M:%S)'
- 'u:day of week (1-7, 1=monday)'
- 'U:week number of current year, sunday based (00-53)'
+ 'u:day of week (1-7, 1=Monday)'
+ 'U:week number of current year, Sunday based (00-53)'
'V:ISO 8601 week number of current year, week 1 has 4 days in current year (01-53)'
- 'w:day of week (0-6, 0=sunday)'
- 'W:week number of current year, monday based (00-53)'
+ 'w:day of week (0-6, 0=Sunday)'
+ 'W:week number of current year, Monday based (00-53)'
'x:locale dependent date representation without time'
'X:locale dependent time representation without date'
'y:2-digit year (00-99)'
'Y:full year'
'z:UTC offset'
'Z:timezone name'
- '%:A %'
+ '%:literal %'
)
case $OSTYPE in
+ linux-gnu)
+ [[ $1 == zsh ]] || # %N is handled below in this case
+ specs+=( 'N:fractional part of seconds since epoch, in nanoseconds' )
+ ;|
freebsd*|dragonfly*|darwin*|linux-gnu|solaris2.<11->)
specs+=(
'E:alternate representation'
@@ -91,6 +95,7 @@ if [[ $1 == zsh ]]; then
'f:day of month (1-31)'
'K:hour (0-23)'
'L:hour (0-12)'
+ 'N:fractional part of seconds since epoch, in nanoseconds (%9.)'
'.:fractional part of seconds since epoch'
"-:don't pad numeric values"
)
@@ -102,4 +107,4 @@ done
_describe -t date-format-specifier 'date format specifier' specs \
-p "${(Q)PREFIX:-%}" -S ''
-[[ $1 == zsh ]] && _message -e date-format-precision 'precision for %%. (1-6)'
+[[ $1 == zsh ]] && _message -e date-format-precision 'precision for %%. (1-9)'
Messages sorted by:
Reverse Date,
Date,
Thread,
Author