최근 편집
추가됨:
> EmacsNewbie
삭제됨:
< CategoryReferenceSheet
추가됨:
> CategoryReferenceSheet
Here are some pointers for getting help for EmacsNewbies:
Try ‘C-h C-h’ (‘help-for-help’) to access Emacs help. You can also use the ‘Help’ menu. The EmacsManual is available through ‘Help’ → ‘Info’ → ‘Emacs’. The command names associated with the individual help keys can sometimes help you remember the keys themselves.
Useful help keys and commands include these (this info is available via ‘C-h C-h’):
‘C-h t’ (‘help-with-tutorial’)‘C-h k’ (‘describe-key’)‘C-h K’ (‘Info-goto-emacs-key-command-node’)‘C-h w’ (‘where-is’)‘C-h k’.‘C-h f’ (‘describe-function’)‘C-h F’‘view-emacs-FAQ’): Show the Emacs FAQ (frequently asked questions). (This is ‘C-h C-f’ in Emacs 22.)‘Info-goto-emacs-command-node’): Go to the Emacs manual section that describes an Emacs command. ‘C-h a’ (‘apropos-command’)‘C-h a file’ lists the commands with “file” in their name.‘C-h d’‘describe-function’): Same as ‘C-h f’.‘apropos-documentation’): Show documentation for Lisp symbols whose documentation matches a word or regexp.‘C-h m’ (‘describe-mode’)‘C-h b’ (‘describe-bindings’)‘C-h r’ (‘info-emacs-manual’)‘C-h i’ (‘info’)‘C-h p’ (‘finder-by-keyword’, FinderByKeyword)‘M-x search-emacs-glossary’‘C-h C-n’ (‘view-emacs-news’)‘C-h l’ (‘view-lossage’)‘C-h v’ (‘describe-variable’)There are several more.
Help on anything at all, with one click: ‘help-on-click/key’ in help+.el: Gives help on a key sequence or an object clicked with the mouse. See HelpPlus.
Bind ‘l’ to ‘help-go-back’ in ‘help-mode’, to make it behave a tiny bit more like Info mode:
(add-hook 'help-mode-hook
(lambda () (define-key help-mode-map "l" 'help-go-back)))EmacsNewbie CategoryHelp CategoryKeys CategoryReferenceSheet