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.devel Subject: Re: Select completions from the minibuffer Date: Sat, 12 Mar 2022 19:29:57 +0200 Message-ID: <83bkybm63u.fsf@gnu.org> References: <86v8wlprc0.fsf@mail.linkov.net> <874k454n84.fsf@gnus.org> <86ilslmvql.fsf@mail.linkov.net> <87v8wl35wg.fsf@gnus.org> <20220312001446.y2feetylsfjynfao@Ergus> <87ilsj14qx.fsf@gnus.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="24710"; mail-complaints-to="usenet@ciao.gmane.io" Cc: spacibba@aol.com, emacs-devel@gnu.org, juri@linkov.net To: Lars Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Mar 12 18:31:39 2022 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 1nT5ac-0006J3-6F for ged-emacs-devel@m.gmane-mx.org; Sat, 12 Mar 2022 18:31:38 +0100 Original-Received: from localhost ([::1]:51406 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nT5aa-0007SZ-GT for ged-emacs-devel@m.gmane-mx.org; Sat, 12 Mar 2022 12:31:36 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:57146) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nT5Z6-0006jU-6r for emacs-devel@gnu.org; Sat, 12 Mar 2022 12:30:04 -0500 Original-Received: from [2001:470:142:3::e] (port=39190 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nT5Z5-00019T-Co; Sat, 12 Mar 2022 12:30:03 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=Gvr3SFPNFw651BqKi0BE26AkPGS3YR4q82916fiCx0Y=; b=g30dThFtIAwH uUuyrjMPaHLwiylx9kxmrUDIb5uLIId3wWzwqoUtvS8eO1KYj5kHEzC8zsVthCUAuOiedjfKUt5Ih GUIElu1qUbm5FesT8iinjFSf8Zv0LewpBNPSXVeGuq8qqGMN4aroRYlQRFr4G19QY81cWGGjAi0Zo j1ZvV5lNcz5rGBKy6FI4cTRHiIH2ZEa7l95DD08um1gjm5ye+ovuWy2i5S4lZOc1Z4uHry3HZ8hMr wP+/iC2Q1SxESCzHoaItUgRTTtbMD2mohkuDmJqkOX5zRI7HmeZlurefYyaKDM5bwL3d2N85N140t tAgawCUGmYGuOkawysRCfg==; Original-Received: from [87.69.77.57] (port=3932 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 1nT5Z4-0000dZ-Q9; Sat, 12 Mar 2022 12:30:03 -0500 In-Reply-To: <87ilsj14qx.fsf@gnus.org> (message from Lars Ingebrigtsen on Sat, 12 Mar 2022 18:04:54 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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:287037 Archived-At: > From: Lars Ingebrigtsen > Cc: Juri Linkov , Eli Zaretskii , > emacs-devel@gnu.org > Date: Sat, 12 Mar 2022 18:04:54 +0100 > > Ergus writes: > > > I added a highlight mode for completions in my branch using hooks and > > overlays, but I am wondering since then: why we don't have a text > > property that highlight the region when the cursor is over the region, > > like the `mouse-face` but for the cursor (point)... Is it possible to > > implement such thing more or less easily? > > Hm, that does sound kind of attractive. I don't know whether it'd be a > lot of work to implement -- Eli? Isn't it very similar to the region?