From 702d773e8657d1f8ea161d65d5dfce238a67c204 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Thu, 16 Dec 2021 14:19:48 +0100 Subject: 49648 based on github #80 (Vincent Bernat): invert before/since for date glob qualifiers completion --- Completion/Unix/Command/_find | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Completion/Unix/Command') diff --git a/Completion/Unix/Command/_find b/Completion/Unix/Command/_find index 8ff60baf2..74111f92b 100644 --- a/Completion/Unix/Command/_find +++ b/Completion/Unix/Command/_find @@ -156,11 +156,11 @@ if [[ $state = times ]]; then if zstyle -t ":completion:${curcontext}:senses" verbose; then zstyle -s ":completion:${curcontext}:senses" list-separator sep || sep=-- default=" [default exactly]" - disp=( "- $sep before" "+ $sep since" ) + disp=( "+ $sep before (older files)" "- $sep since (newer files)" ) smatch=( - + ) else disp=( before exactly since ) - smatch=( - '' + ) + smatch=( + '' - ) fi alts=( "senses:sense${default}:compadd -V times -S '' -d disp -a smatch" ) fi -- cgit 1.4.1