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
7ee71cf1
Commit
7ee71cf1
authored
Mar 06, 1995
by
Richard M. Stallman
Browse files
(view-emacs-FAQ): New function. Bind to C-h F.
(help-for-help): Doc fix.
parent
6a06ace6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
lisp/help.el
lisp/help.el
+8
-0
No files found.
lisp/help.el
View file @
7ee71cf1
...
...
@@ -58,6 +58,8 @@
(
define-key
help-map
"d"
'describe-function
)
(
define-key
help-map
"f"
'describe-function
)
(
define-key
help-map
"F"
'view-emacs-FAQ
)
(
define-key
help-map
"i"
'info
)
(
define-key
help-map
"\C-f"
'Info-goto-emacs-command-node
)
(
define-key
help-map
"\C-k"
'Info-goto-emacs-key-command-node
)
...
...
@@ -309,6 +311,11 @@ of the key sequence that ran this command."
(
interactive
)
(
find-file-read-only
(
expand-file-name
"NEWS"
data-directory
)))
(
defun
view-emacs-FAQ
()
"Display the Emacs Frequently Asked Questions (FAQ) file."
(
interactive
)
(
find-file-read-only
(
expand-file-name
"FAQ"
data-directory
)))
(
defun
view-lossage
()
"Display last 100 input keystrokes."
(
interactive
)
...
...
@@ -345,6 +352,7 @@ c describe-key-briefly. Type a command key sequence;
f describe-function. Type a function name and get documentation of it.
C-f Info-goto-emacs-command-node. Type a function name;
it takes you to the Info node for that command.
F view-emacs-FAQ. Shows emacs frequently asked questions file.
i info. The info documentation reader.
k describe-key. Type a command key sequence;
it displays the full documentation.
...
...
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