Define backtab in text fields in eww
* lisp/net/eww.el (eww-text-map): (eww-textarea-map): Define backtab, as in the main mode map (bug#44247).
This commit is contained in:
parent
d2be9233d1
commit
eca5f4dec7
1 changed files with 2 additions and 0 deletions
|
@ -1190,6 +1190,7 @@ just re-display the HTML already fetched."
|
|||
(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 @@ just re-display the HTML already fetched."
|
|||
(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
|
||||
|
|
Loading…
Add table
Reference in a new issue