From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: bug#47711: [PATCH VERSION 2] Add new `completion-filter-completions` API and deferred highlighting Date: Sat, 14 Aug 2021 09:45:09 +0300 Message-ID: <83k0kobk3u.fsf@gnu.org> References: <3d3f894f-a6fa-53ae-5d50-c3aa9bffc73e@daniel-mendler.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="35868"; mail-complaints-to="usenet@ciao.gmane.io" Cc: joaotavora@gmail.com, 47711@debbugs.gnu.org, monnier@iro.umontreal.ca, 48841@debbugs.gnu.org, dgutov@yandex.ru To: Daniel Mendler Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sat Aug 14 08:46:17 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1mEnQt-00098Z-M4 for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 14 Aug 2021 08:46:15 +0200 Original-Received: from localhost ([::1]:60176 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mEnQr-0005kv-Sx for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 14 Aug 2021 02:46:13 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37142) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mEnQh-0005kd-2x for bug-gnu-emacs@gnu.org; Sat, 14 Aug 2021 02:46:03 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:60144) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mEnQg-0001BD-SP for bug-gnu-emacs@gnu.org; Sat, 14 Aug 2021 02:46:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mEnQg-0002sK-Iu for bug-gnu-emacs@gnu.org; Sat, 14 Aug 2021 02:46:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 14 Aug 2021 06:46:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 47711 X-GNU-PR-Package: emacs Original-Received: via spool by 47711-submit@debbugs.gnu.org id=B47711.162892353111008 (code B ref 47711); Sat, 14 Aug 2021 06:46:02 +0000 Original-Received: (at 47711) by debbugs.gnu.org; 14 Aug 2021 06:45:31 +0000 Original-Received: from localhost ([127.0.0.1]:43457 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEnQB-0002rU-M3 for submit@debbugs.gnu.org; Sat, 14 Aug 2021 02:45:31 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:48858) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mEnQ7-0002r6-Sw; Sat, 14 Aug 2021 02:45:28 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:43728) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mEnQ1-0000b7-A2; Sat, 14 Aug 2021 02:45:21 -0400 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:4976 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mEnPz-0004qn-W4; Sat, 14 Aug 2021 02:45:20 -0400 In-Reply-To: <3d3f894f-a6fa-53ae-5d50-c3aa9bffc73e@daniel-mendler.de> (message from Daniel Mendler on Fri, 13 Aug 2021 12:38:28 +0200) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:211806 Archived-At: > From: Daniel Mendler > Cc: Eli Zaretskii , João Távora > , Stefan Monnier , > Dmitry Gutov > Date: Fri, 13 Aug 2021 12:38:28 +0200 > > I attached the overhauled patch, which addresses most of the comments by > Eli. In comparison to my last patch, the patch is fully backward > compatible and preserves all existing tests. As before, there are tests > which check the new functionality for each existing completion style. Thanks. You were faster than me, so I sent a few more comments to the old patch today.