From unknown Sat Jun 21 10:26:44 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#44247 <44247@debbugs.gnu.org> To: bug#44247 <44247@debbugs.gnu.org> Subject: Status: EWW: backtab is not defined in text and textarea keymaps Reply-To: bug#44247 <44247@debbugs.gnu.org> Date: Sat, 21 Jun 2025 17:26:44 +0000 retitle 44247 EWW: backtab is not defined in text and textarea keymaps reassign 44247 emacs submitter 44247 Nicolas Graner severity 44247 normal tag 44247 fixed thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 26 19:28:06 2020 Received: (at submit) by debbugs.gnu.org; 26 Oct 2020 23:28:06 +0000 Received: from localhost ([127.0.0.1]:42000 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXBuH-0001iw-Jm for submit@debbugs.gnu.org; Mon, 26 Oct 2020 19:28:06 -0400 Received: from lists.gnu.org ([209.51.188.17]:56768) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXBGb-0000Y9-Nk for submit@debbugs.gnu.org; Mon, 26 Oct 2020 18:47:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49518) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXBGb-0002pW-BA for bug-gnu-emacs@gnu.org; Mon, 26 Oct 2020 18:47:05 -0400 Received: from smtp-out.ouvaton.coop ([51.15.229.26]:40442) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXBGY-0003Iw-Eo for bug-gnu-emacs@gnu.org; Mon, 26 Oct 2020 18:47:04 -0400 Received: from panel.vitry.ouvaton.coop (panel.vitry.ouvaton.coop [194.36.166.20]) by smtp-out.ouvaton.coop (Postfix) with ESMTPS id 1BBB4C005F for ; Mon, 26 Oct 2020 22:46:57 +0000 (UTC) Received: from hypra-graner (37.124.67.86.rev.sfr.net [86.67.124.37]) by panel.vitry.ouvaton.coop (Postfix) with ESMTPSA id 83B93A0FAB for ; Mon, 26 Oct 2020 23:46:56 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=graner.name; s=default; t=1603752416; bh=468BoUUSaKqKqlPdjqpTVyI/NWkXgGl0zB/rju73yls=; l=976; h=From:To:Subject; b=kL+57tFbP8jw+61clLqTGfeR5ZE1o+tcE4PaW8WNNil6t92Wxvver4D8k/ruoi1xF ppd2m2bRiJBgb1O3M99l94Q1Hh5P3NCfmqWTo9yV16c4b8g/LvHGapGx09CgdpJNtC Gxr3H31LIQj9UQoreuOGBBJiit4vJJD2NysU1UlY= From: Nicolas Graner To: bug-gnu-emacs@gnu.org Subject: EWW: backtab is not defined in text and textarea keymaps Date: Mon, 26 Oct 2020 23:46:55 +0100 Message-ID: <87y2jssizk.fsf@hypra-graner> MIME-Version: 1.0 Content-Type: text/plain X-PPP-Message-ID: <20201026224656.11055.62260@panel.vitry.ouvaton.coop> X-PPP-Vhost: graner.name Received-SPF: pass client-ip=51.15.229.26; envelope-from=nicolas@graner.name; helo=smtp-out.ouvaton.coop X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/26 18:46:57 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 26 Oct 2020 19:28:04 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) In the main eww-mode-map, the function shr-previous-link is bound to both \M-\t and backtab (aka shift+tab). However, in the more specific eww-text-map and eww-textarea-map, that same function is only bound to \M-\t. This makes the use of backtab inconsistent. Patch to fix this in emacs 28: diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 53835bb544..ebc75e0e8a 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -1190,6 +1190,7 @@ eww-text-map (define-key map [(control e)] 'eww-end-of-text) (define-key map [?\t] 'shr-next-link) (define-key map [?\M-\t] 'shr-previous-link) + (define-key map [backtab] 'shr-previous-link) map)) (defvar eww-textarea-map @@ -1199,6 +1200,7 @@ eww-textarea-map (define-key map [(control c) (control c)] 'eww-submit) (define-key map [?\t] 'shr-next-link) (define-key map [?\M-\t] 'shr-previous-link) + (define-key map [backtab] 'shr-previous-link) map)) (defvar eww-select-map -- Nicolas From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 27 03:15:52 2020 Received: (at 44247) by debbugs.gnu.org; 27 Oct 2020 07:15:52 +0000 Received: from localhost ([127.0.0.1]:42612 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXJCy-0000rG-EA for submit@debbugs.gnu.org; Tue, 27 Oct 2020 03:15:52 -0400 Received: from quimby.gnus.org ([95.216.78.240]:53200) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXJCw-0000r0-Fg for 44247@debbugs.gnu.org; Tue, 27 Oct 2020 03:15:51 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=webr3EY9sF24nKOs5rZ/AQXE/lQVMp2tjRZvwcyIvmY=; b=szfs0miafeeWRusJBoYv5ZAaHD t9LnZcuSBzA78pJrfcCY4cRDtUZ7GflDBXlD0B+09431RKG0FyQKwxgWy8502dojF3a8i228P5oV9 5DGOrv2BM+vo0yXngZoEDSo5pabtpbxieKDu6JhLG/uIM0jYwoTeFQggiSPXTNgkVZNU=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kXJCk-0003Yo-Qs; Tue, 27 Oct 2020 08:15:44 +0100 From: Lars Ingebrigtsen To: Nicolas Graner Subject: Re: bug#44247: EWW: backtab is not defined in text and textarea keymaps References: <87y2jssizk.fsf@hypra-graner> X-Now-Playing: Prince's _Sign 'O' the Times (2)_: "Strange Relationship" Date: Tue, 27 Oct 2020 08:15:37 +0100 In-Reply-To: <87y2jssizk.fsf@hypra-graner> (Nicolas Graner's message of "Mon, 26 Oct 2020 23:46:55 +0100") Message-ID: <87r1pkrvfq.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Nicolas Graner writes: > In the main eww-mode-map, the function shr-previous-link is bound to > both \M-\t and backtab (aka shift+tab). However, in the more specific > eww-text-map and eww-textarea-map, that same function i [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 44247 Cc: 44247@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Nicolas Graner writes: > In the main eww-mode-map, the function shr-previous-link is bound to > both \M-\t and backtab (aka shift+tab). However, in the more specific > eww-text-map and eww-textarea-map, that same function is only bound to > \M-\t. This makes the use of backtab inconsistent. > > Patch to fix this in emacs 28: Thanks; applied to Emacs 28. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 27 03:15:58 2020 Received: (at control) by debbugs.gnu.org; 27 Oct 2020 07:15:59 +0000 Received: from localhost ([127.0.0.1]:42615 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXJD4-0000rZ-LO for submit@debbugs.gnu.org; Tue, 27 Oct 2020 03:15:58 -0400 Received: from quimby.gnus.org ([95.216.78.240]:53214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXJD3-0000rF-6W for control@debbugs.gnu.org; Tue, 27 Oct 2020 03:15:57 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=oOrUbRawedcQ6cP/BVnMS4GGz8v5EdO/Dk1CgCcy4so=; b=REogkzsPS2UFLTNr21KyiMBT3H 4Y6XCq3CZKgGMcOwKR3qo7Br5Jtn+K1mQES3LlkTAMCK0OF+e6s07vYgyEBsIGSuXmkrLQ1Gk6r0O eG+EPxXpO9U/i6g3EWlHOGhE0yh0Uz4NUF1nHs7jg+W073hzwk1WCbj5wmB9D6Azoc2E=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kXJCv-0003Yx-Fd for control@debbugs.gnu.org; Tue, 27 Oct 2020 08:15:51 +0100 Date: Tue, 27 Oct 2020 08:15:48 +0100 Message-Id: <87pn54rvff.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #44247 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 44247 fixed close 44247 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 44247 fixed close 44247 28.1 quit From unknown Sat Jun 21 10:26:44 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 24 Nov 2020 12:24:11 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator