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
23a75d7f
Commit
23a75d7f
authored
Jun 26, 2013
by
Lars Magne Ingebrigtsen
Browse files
(eww-mode-map): Add a menu bar.
parent
843571cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
lisp/ChangeLog
lisp/ChangeLog
+1
-0
lisp/net/eww.el
lisp/net/eww.el
+14
-0
No files found.
lisp/ChangeLog
View file @
23a75d7f
...
...
@@ -2,6 +2,7 @@
* net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
probably.
(eww-mode-map): Add a menu bar.
2013-06-26 Glenn Morris <rgm@gnu.org>
...
...
lisp/net/eww.el
View file @
23a75d7f
...
...
@@ -335,6 +335,20 @@ word(s) will be searched for via `eww-search-prefix'."
(
define-key
map
"&"
'eww-browse-with-external-browser
)
(
define-key
map
"d"
'eww-download
)
(
define-key
map
"w"
'eww-copy-page-url
)
(
define-key
map
"C"
'url-cookie-list
)
(
easy-menu-define
nil
map
""
'
(
"eww"
[
"Quit"
eww-quit
t]
[
"Reload"
eww-reload
t]
[
"Back to previous page"
eww-back-url
:active
(
not
(
zerop
(
length
eww-history
)))
]
[
"Forward to next page"
eww-forward-url
:active
(
not
(
zerop
eww-history-position
))
]
[
"Browse with external browser"
eww-browse-with-external-browser
t]
[
"Download"
eww-download
t]
[
"Copy page URL"
eww-copy-page-url
t]
[
"List cookies"
url-cookie-list
t]
))
map
))
(
define-derived-mode
eww-mode
nil
"eww"
...
...
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