I want to open manuals directly in Terminal to Emacs by
man man
I put the following code as an alias in .zshrc unsuccessfully
alias man=x
unalias man
man() { emacs ^x man }
How can you open manuals to emacs?
|
|
|
|
|
|
|
Perhaps this is what you mean:
The
If you want to call Emacs functions from the command line, you must write the function call in elisp; you can't just give Emacs key sequences on the command line. |
|||
|
|
|
Check out this part of the info pages (and the following sections) for more information. |
||
|
|
|
|
A few possibilities, depending on how you want the man pages formatted:
or
or
|
||
|
|
|
|
I'm not sure I completely understand your question, but you can open a man page in emacs by simply doing |
||
|
|