From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Jean Louis Newsgroups: gmane.emacs.devel Subject: orderless/bookmarks Date: Sun, 8 Nov 2020 12:52:13 +0300 Message-ID: References: <4b357d14-125f-4639-9bac-86b97479cc98@default> <11ac533f-298d-4b7b-b72c-5c1b42d3b0a2@default> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="27050"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mutt/+ (1036f0e) (2020-10-18) Cc: Emacs-Devel List To: Drew Adams Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Nov 08 14:47:37 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kbl2f-0006wx-LC for ged-emacs-devel@m.gmane-mx.org; Sun, 08 Nov 2020 14:47:37 +0100 Original-Received: from localhost ([::1]:44766 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kbl2e-0001H8-Fy for ged-emacs-devel@m.gmane-mx.org; Sun, 08 Nov 2020 08:47:36 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:43498) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kbkv7-0004uu-Q7 for emacs-devel@gnu.org; Sun, 08 Nov 2020 08:39:50 -0500 Original-Received: from static.rcdrun.com ([95.85.24.50]:39201) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kbkv6-0005L5-5V for emacs-devel@gnu.org; Sun, 08 Nov 2020 08:39:49 -0500 Original-Received: from localhost ([::ffff:197.157.34.177]) (AUTH: PLAIN admin, TLS: TLS1.2,256bits,ECDHE_RSA_AES_256_GCM_SHA384) by static.rcdrun.com with ESMTPSA id 00000000002C0004.000000005FA7F522.00003707; Sun, 08 Nov 2020 13:39:46 +0000 Content-Disposition: inline In-Reply-To: <11ac533f-298d-4b7b-b72c-5c1b42d3b0a2@default> Received-SPF: pass client-ip=95.85.24.50; envelope-from=bugs@gnu.support; helo=static.rcdrun.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/11/08 08:39:38 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -2 X-Spam_score: -0.3 X-Spam_bar: / X-Spam_report: (-0.3 / 5.0 requ) BAYES_00=-1.9, DATE_IN_PAST_03_06=1.592, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:258897 Archived-At: * Drew Adams [2020-11-06 22:28]: > > > Icicles or library orderless.el provides such > > > behavior. > > > > https://urldefense.com/v3/__https://www.emacswiki.org/emacs/DrewsElispLibrari > > es__;!!GqivPVa7Brio!PeXT38xLaZ0WLPhzhQoy50PH99rQt9z2shHRkvYnymiDP96UbGsrHqcRD > > 1EpQbPv$ > > > > Incremental search on that page does not give me: orderless.el - where > > is it? > > It's not one of my libraries. I mentioned it because, > like Icicles "progressive completion", it lets you get > matches of multiple patterns without respect to order. > > Googling "orderless.el" tells me it's here: > https://github.com/oantolin/orderless Thank you. I was also researching bookmark handlers in bookmark.el in built-in Emacs. From: bookmark-alist HANDLER is a function that provides the bookmark-jump behavior for a specific kind of bookmark instead of the default `bookmark-default-handler'. This is the case for Info bookmarks, for instance. HANDLER must accept a bookmark as its single argument. I am following it inside as I may wish to use built-in bookmark functions for storage into database that later may be expanded into various different formats.