Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e17d2fd1
Commit
e17d2fd1
authored
Aug 03, 1992
by
Eric S. Raymond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
parent
8892e83c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
lisp/ebuff-menu.el
lisp/ebuff-menu.el
+1
-1
lisp/echistory.el
lisp/echistory.el
+1
-1
lisp/help.el
lisp/help.el
+2
-2
No files found.
lisp/ebuff-menu.el
View file @
e17d2fd1
...
...
@@ -221,7 +221,7 @@ Does not execute select, save, or delete commands."
(
ding
)
(
message
(
if
(
and
(
eq
(
key-binding
"\C-c\C-c"
)
'Electric-buffer-menu-quit
)
(
eq
(
key-binding
" "
)
'Electric-buffer-menu-select
)
(
eq
(
key-binding
help-key
)
'Helper-help
)
(
eq
(
key-binding
(
char-to-string
help-char
)
)
'Helper-help
)
(
eq
(
key-binding
"?"
)
'Helper-describe-bindings
))
(
substitute-command-keys
"Type C-c C-c to exit, Space to select, \\[Helper-help] for help, ? for commands"
)
(
substitute-command-keys
"\
...
...
lisp/echistory.el
View file @
e17d2fd1
...
...
@@ -63,7 +63,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing."
(
define-key
electric-history-map
"\C-c\C-c"
'Electric-history-quit
)
(
define-key
electric-history-map
"\C-]"
'Electric-history-quit
)
(
define-key
electric-history-map
"\C-z"
'suspend-emacs
)
(
define-key
electric-history-map
help-char
'Helper-help
)
(
define-key
electric-history-map
(
char-to-string
help-char
)
'Helper-help
)
(
define-key
electric-history-map
"?"
'Helper-describe-bindings
)
(
define-key
electric-history-map
"\e>"
'end-of-buffer
)
(
define-key
electric-history-map
"\e<"
'beginning-of-buffer
)
...
...
lisp/help.el
View file @
e17d2fd1
...
...
@@ -26,10 +26,10 @@
(
defvar
help-map
(
make-sparse-keymap
)
"Keymap for characters following the Help key."
)
(
define-key
global-map
help-key
'help-command
)
(
define-key
global-map
(
char-to-string
help-char
)
'help-command
)
(
fset
'help-command
help-map
)
(
define-key
help-map
help-char
'help-for-help
)
(
define-key
help-map
(
char-to-string
help-char
)
'help-for-help
)
(
define-key
help-map
"?"
'help-for-help
)
(
define-key
help-map
"\C-c"
'describe-copying
)
...
...
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