diff options
| author | Mark Oteiza | 2014-11-23 16:34:44 +0100 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2014-11-23 16:34:44 +0100 |
| commit | dd01e20628a846a9a75fcd0d6e38ac1c3e9687db (patch) | |
| tree | 7bf5a79424325b5e69bf96a30908c69bb5c0fe5a | |
| parent | 7f223a582e586f69e034981925db9ad70d9d6965 (diff) | |
| download | emacs-dd01e20628a846a9a75fcd0d6e38ac1c3e9687db.tar.gz emacs-dd01e20628a846a9a75fcd0d6e38ac1c3e9687db.zip | |
(eww-mode-map): Bind backtab to shr-previous-link
* net/eww.el (eww-mode-map): Bind backtab to shr-previous-link
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/net/eww.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 79375078ae4..4b72eb80561 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-11-17 Mark Oteiza <mvoteiza@udel.edu> (tiny change) | ||
| 2 | |||
| 3 | * net/eww.el (eww-mode-map): Bind backtab to shr-previous-link | ||
| 4 | |||
| 1 | 2014-11-23 Kenjiro Nakayama <nakayamakenjiro@gmail.com> | 5 | 2014-11-23 Kenjiro Nakayama <nakayamakenjiro@gmail.com> |
| 2 | 6 | ||
| 3 | * net/eww.el (eww-set-character-encoding): New command and keystroke. | 7 | * net/eww.el (eww-set-character-encoding): New command and keystroke. |
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 3c1621c0468..f2a1631a5ba 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el | |||
| @@ -555,6 +555,7 @@ the like." | |||
| 555 | (define-key map "g" 'eww-reload) | 555 | (define-key map "g" 'eww-reload) |
| 556 | (define-key map [?\t] 'shr-next-link) | 556 | (define-key map [?\t] 'shr-next-link) |
| 557 | (define-key map [?\M-\t] 'shr-previous-link) | 557 | (define-key map [?\M-\t] 'shr-previous-link) |
| 558 | (define-key map [backtab] 'shr-previous-link) | ||
| 558 | (define-key map [delete] 'scroll-down-command) | 559 | (define-key map [delete] 'scroll-down-command) |
| 559 | (define-key map [?\S-\ ] 'scroll-down-command) | 560 | (define-key map [?\S-\ ] 'scroll-down-command) |
| 560 | (define-key map "\177" 'scroll-down-command) | 561 | (define-key map "\177" 'scroll-down-command) |