From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [elpa] master 567ea7e 1/3: Ivy-mode now works better with `find-file' Date: Fri, 17 Apr 2015 14:28:26 -0400 Message-ID: References: <20150417081157.13187.57850@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1429295327 31958 80.91.229.3 (17 Apr 2015 18:28:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 17 Apr 2015 18:28:47 +0000 (UTC) Cc: emacs-devel@gnu.org To: Oleh Krehel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 17 20:28:38 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YjB0I-0007tV-9I for ged-emacs-devel@m.gmane.org; Fri, 17 Apr 2015 20:28:38 +0200 Original-Received: from localhost ([::1]:43033 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YjB0H-0001HU-G7 for ged-emacs-devel@m.gmane.org; Fri, 17 Apr 2015 14:28:37 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40546) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YjB0D-0001HN-8L for emacs-devel@gnu.org; Fri, 17 Apr 2015 14:28:34 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YjB09-0006Tq-7T for emacs-devel@gnu.org; Fri, 17 Apr 2015 14:28:33 -0400 Original-Received: from pruche.dit.umontreal.ca ([132.204.246.22]:54177) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YjB09-0006Tj-2S for emacs-devel@gnu.org; Fri, 17 Apr 2015 14:28:29 -0400 Original-Received: from pastel.home (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id t3HISQgT018152; Fri, 17 Apr 2015 14:28:26 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 57E0A1FB6; Fri, 17 Apr 2015 14:28:26 -0400 (EDT) In-Reply-To: (Oleh Krehel's message of "Fri, 17 Apr 2015 16:57:28 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV5279=0 X-NAI-Spam-Version: 2.3.0.9393 : core <5279> : inlines <2748> : streams <1424095> : uri <1909298> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.22 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:185536 Archived-At: > Info-read-node-name-1 takes STRING, PREDICATE, and CODE and says to > look in the `completing-read' doc. But there's nothing abount CODE > there. Where do I get it? I think you're better off reading about it in the Elisp manual. The third argument (called ACTION usually) is basically the *method* to use on the "object implemented as a function". It can be nil (which means `try-completion'), t (which means `all-completions'), lambda (which means `test-completion'), or `boundaries', or `metadata'. Stefan