From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: "Alfred M. Szmidt" Newsgroups: gmane.emacs.devel Subject: Re: Instead of pcase Date: Sun, 10 Dec 2023 03:34:26 -0500 Message-ID: References: <87fs169mjj.fsf@posteo.net> <093f11a1-57c2-5e56-d39b-26fef1c67cbb@gutov.dev> <25942.25061.217864.329049@retriever.mtv.corp.google.com> <87zfzdcz6z.fsf@posteo.net> <87zfza2aq2.fsf@web.de> <7nmsv9zq6u.fsf@ecube.ecubist.org> <7nv89x5tsi.fsf@ecube.ecubist.org> <87o7focuf5.fsf@web.de> <8734wmbhd8.fsf@dataswamp.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="18981"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Emanuel Berg Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Dec 10 09:35:37 2023 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 1rCFHi-0004eR-Is for ged-emacs-devel@m.gmane-mx.org; Sun, 10 Dec 2023 09:35:34 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rCFGp-00028J-Md; Sun, 10 Dec 2023 03:34:39 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rCFGn-00027v-JY for emacs-devel@gnu.org; Sun, 10 Dec 2023 03:34:37 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rCFGm-00059p-6C; Sun, 10 Dec 2023 03:34:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=Date:References:Subject:In-Reply-To:To:From: mime-version; bh=jEXcKHkD+lqDJQ9xokgJSCqmZYU2GshedAXd3+yQynU=; b=IOwFtdCfn36G cFCq7Xy77GO41sMTHY8HWfF5tLlClQx2rJmSHQNzptaWm0QZafWIQFtTgxeWB16wXvJQDZe7yIoDO X7cPwBwglrWQE41JQ8cxntS1LymPrajxUW3YhB3DciLJcDdIP9CaUpOqj/zH45aYEp4cxCLUDo2o3 zax2aE4Z4DiAlKUvLRQYUEWQ9AYMagmwhXAJ/lUJUsGab/oUJoatgJpADOfBU5halUQ4c3NgwBgb8 ozLU3sDsKGxL1KniiJ1v/gOX6ojPE/Gf0o431u+mNGQzCKoSATKbhkKrta4QunGWb/YtDWyR6VfBU QYF/dUx3Vbna+WIA7gN/eQ==; Original-Received: from ams by fencepost.gnu.org with local (Exim 4.90_1) (envelope-from ) id 1rCFGc-0001Iu-LM; Sun, 10 Dec 2023 03:34:35 -0500 In-Reply-To: <8734wmbhd8.fsf@dataswamp.org> (message from Emanuel Berg on Fri, 01 Dec 2023 06:51:15 +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-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:313659 Archived-At: [Seems this message didn't get pushed -- if it is a duplicate, apologies!] I am writing to express my concern about a recent change in the behavior of the jump-to-register and point-to-register commands in the master branch (Bug#66394). It is also not mentioned in NEWS; unless you consider the cryptic entry: ** 'register-preview-delay' is no longer used. Register preview is no more delayed. If you want to disable it use 'register-use-preview' instead with a boolean value. Setting register-use-preview to nil doesn't revert to the previous, ancient, behaviour. It also seems that this change removes the possibility to add a delay -- which sounds like a nice feature, specially _if_ after that delay you're asked for a explicit RET. Previously, these commands allowed users to seamlessly navigate without the need to press the RET key every time. Unfortunately, the recent modification has introduced a requirement to press RET with every use, which has proven to be quite cumbersome for me. INCF.