Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm
Precedence: bulk
X-No-Archive: yes
List-Id: Zsh Workers List <zsh-workers.zsh.org>
List-Post: <mailto:zsh-workers@zsh.org>
List-Help: <mailto:zsh-workers-help@zsh.org>
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au
X-Spam-Level: 
X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID
	autolearn=ham autolearn_force=no version=3.4.1
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=brasslantern-com.20150623.gappssmtp.com; s=20150623;
        h=from:message-id:date:in-reply-to:comments:references:to:subject
         :mime-version;
        bh=puizm/nnTFdQc6KHbZ2+ViuV/6e6xZugzckkfCMFOD8=;
        b=a3FXJjVWggSK3oE43ygT1aMYeO+hkiU+tfB0HMxCMFDo7rkEFDO/AToHlflX1HFTWr
         wD6St1iwudL5jY11wnJL/yoh9m7ukdsIM/EPYtAQP9c6wT6SfIpkL2r/0Kd+UwI0ZNHf
         aToV9q7Zl/++5u7WYep1SUayfBR/R21J50i53l+T+5ODtd/J0lfD9gS7P2QvlSMX79sk
         6nAT9srR/efnct0XTQFk+qXlQWYkvyCyXFzBjpBdCWa4Dy7eMY1Zpc25grOHoWyV0PmI
         mOCPl6nfoYganpIbdhH1EztNHxHkSJ0afSccv9V3N2evKYYX7jD8hOygj7LGwxZd5pON
         hI/w==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20130820;
        h=x-gm-message-state:from:message-id:date:in-reply-to:comments
         :references:to:subject:mime-version;
        bh=puizm/nnTFdQc6KHbZ2+ViuV/6e6xZugzckkfCMFOD8=;
        b=TzNaxWeWLFoZymXZPxhrPqL23HnbIFshcGUt1swctB0lZ74eCJfxZ0Sz19z4SPyGok
         uu3tfv33q/cceVth1uH4xOVmQXnypsEQaeQ6XJR3Y+Ik63+EZuq9pXrb8Y4RTxdOSWE1
         DsXROOfeClZWL2+FWbfUinSihpQYYzayYu5YMZ/zGqupcdqjwQ2z7u9d4CJP39HNTM+i
         D9/zVueuhWyVck9qEYal2F7oSvjD0aJ0DSsgGHC4X2+8m/RkbUDsEYkpv13QVb+RtJCP
         FU7ay4fFk58BQfx0WH8bDhDhrpiWg8tUpz/fEm/i77KSokgG63mw8/gPHAwmZC/7jOC1
         K5jA==
X-Gm-Message-State: ALyK8tLxG8bJsOuHnQH5IpAMeRPdUW/i6aYDJZTL7j60sW1rpaMqn5oqYmlztnAi9XZ7Ew==
X-Received: by 10.98.32.15 with SMTP id g15mr18124789pfg.67.1465778815587;
        Sun, 12 Jun 2016 17:46:55 -0700 (PDT)
From: Bart Schaefer <schaefer@brasslantern.com>
Message-Id: <160612174712.ZM10957@torch.brasslantern.com>
Date: Sun, 12 Jun 2016 17:47:12 -0700
In-Reply-To: <87oa76172f.fsf@secretsauce.net>
Comments: In reply to Dima Kogan <dima@secretsauce.net>
        "Regression: broken completion on modification time" (Jun 12,  1:32pm)
References: <87oa76172f.fsf@secretsauce.net>
X-Mailer: OpenZMail Classic (0.9.2 24April2005)
To: Dima Kogan <dima@secretsauce.net>, zsh-workers <zsh-workers@zsh.org>
Subject: Re: Regression: broken completion on modification time
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Seq: zsh-workers 38668

On Jun 12,  1:32pm, Dima Kogan wrote:
}
} In zsh 5.0.5 (Debian version 5.0.5-2) I can type in an interactive
} shell:
} 
}   $ ls *(m
} 
} Then I press TAB to get the different ways to specify modification time,
} 
} [...]  If I update the zsh package, or use the zsh from git
} and do the same thing, I get no message, and instead the completion
} cycles between various integers.

This is from zsh-workers/35718 and the behavior you are seeing assumes
that you have menu-selection enabled (which will cause a much more
extensive set of completion responses to appear in a calendar format).
There was some controversy about this when it was added and discussion
of how to keep it from kicking in if menu selection was NOT enabled,
but I guess it never got fully resolved.

In the meantime, to mostly get your old behavior back:

    zstyle ':completion:*:dates' max-matches-length 0

