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
5b23b5e4
Commit
5b23b5e4
authored
May 02, 1998
by
Richard M. Stallman
Browse files
(apropos-mode-map): Bind q to quit-window.
parent
779a69a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lisp/apropos.el
lisp/apropos.el
+3
-2
No files found.
lisp/apropos.el
View file @
5b23b5e4
...
...
@@ -108,8 +108,9 @@ This looks good, but slows down the commands several times."
(
defvar
apropos-mode-map
(
let
((
map
(
make-sparse-keymap
)))
(
define-key
map
"\C-m"
'apropos-follow
)
(
define-key
map
" "
'scroll-up
)
(
define-key
map
"\177"
'scroll-down
)
(
define-key
map
" "
'scroll-up
)
(
define-key
map
"\177"
'scroll-down
)
(
define-key
map
"q"
'quit-window
)
(
define-key
map
[mouse-2]
'apropos-mouse-follow
)
(
define-key
map
[down-mouse-2]
nil
)
map
)
...
...
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