Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6952100d
Commit
6952100d
authored
Mar 05, 2014
by
Lars Ingebrigtsen
Browse files
(eww-textarea-map): [tab] doesn't work on tty.
Reported by Mario Lang. * net/shr.el (shr-map): Ditto.
parent
dffe37a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/net/eww.el
lisp/net/eww.el
+4
-4
lisp/net/shr.el
lisp/net/shr.el
+2
-2
No files found.
lisp/ChangeLog
View file @
6952100d
...
...
@@ -18,6 +18,10 @@
* net/eww.el (eww-mode-map): [tab] doesn't work on tty.
(eww-setup-buffer): Clear next/prev/etc more reliably.
(eww-textarea-map): [tab] doesn't work on tty. Reported by Mario
Lang.
* net/shr.el (shr-map): Ditto.
2014-03-04 Glenn Morris <rgm@gnu.org>
...
...
lisp/net/eww.el
View file @
6952100d
...
...
@@ -592,8 +592,8 @@ appears in a <link> or <a> tag."
(
define-key
map
[
(
control
a
)
]
'eww-beginning-of-text
)
(
define-key
map
[
(
control
c
)
(
control
c
)
]
'eww-submit
)
(
define-key
map
[
(
control
e
)
]
'eww-end-of-text
)
(
define-key
map
[
tab
]
'shr-next-link
)
(
define-key
map
[
backtab
]
'shr-previous-link
)
(
define-key
map
[
?\t
]
'shr-next-link
)
(
define-key
map
[
?\M-\t
]
'shr-previous-link
)
map
))
(
defvar
eww-textarea-map
...
...
@@ -601,8 +601,8 @@ appears in a <link> or <a> tag."
(
set-keymap-parent
map
text-mode-map
)
(
define-key
map
"\r"
'forward-line
)
(
define-key
map
[
(
control
c
)
(
control
c
)
]
'eww-submit
)
(
define-key
map
[
tab
]
'shr-next-link
)
(
define-key
map
[
backtab
]
'shr-previous-link
)
(
define-key
map
[
?\t
]
'shr-next-link
)
(
define-key
map
[
?\M-\t
]
'shr-previous-link
)
map
))
(
defvar
eww-select-map
...
...
lisp/net/shr.el
View file @
6952100d
...
...
@@ -147,8 +147,8 @@ cid: URL as the argument.")
(
define-key
map
"a"
'shr-show-alt-text
)
(
define-key
map
"i"
'shr-browse-image
)
(
define-key
map
"z"
'shr-zoom-image
)
(
define-key
map
[
tab
]
'shr-next-link
)
(
define-key
map
[
backtab
]
'shr-previous-link
)
(
define-key
map
[
?\t
]
'shr-next-link
)
(
define-key
map
[
?\M-\t
]
'shr-previous-link
)
(
define-key
map
[follow-link]
'mouse-face
)
(
define-key
map
[mouse-2]
'shr-browse-url
)
(
define-key
map
"I"
'shr-insert-image
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment