GNU bug report logs -
#44247
EWW: backtab is not defined in text and textarea keymaps
Previous Next
Reported by: Nicolas Graner <nicolas <at> graner.name>
Date: Mon, 26 Oct 2020 23:29:01 UTC
Severity: normal
Tags: fixed
Fixed in version 28.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 44247 in the body.
You can then email your comments to 44247 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#44247
; Package
emacs
.
(Mon, 26 Oct 2020 23:29:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nicolas Graner <nicolas <at> graner.name>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Mon, 26 Oct 2020 23:29:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
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
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#44247
; Package
emacs
.
(Tue, 27 Oct 2020 07:16:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 44247 <at> debbugs.gnu.org (full text, mbox):
Nicolas Graner <nicolas <at> graner.name> 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
Added tag(s) fixed.
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Tue, 27 Oct 2020 07:16:02 GMT)
Full text and
rfc822 format available.
bug marked as fixed in version 28.1, send any further explanations to
44247 <at> debbugs.gnu.org and Nicolas Graner <nicolas <at> graner.name>
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Tue, 27 Oct 2020 07:16:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 24 Nov 2020 12:24:11 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 209 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.