emacs 命令行
How to make Emacs run in command line by default? I do not want to open the X window.
默认情况下如何使Emacs在命令行中运行? 我不想打开X窗口。
You have at least 2 choices.
您至少有2个选择。
First choice: use emacs-nox
and make it the default:
首选:使用emacs-nox
并将其设置为默认值:
# yum install emacs-nox
# alternatives --config emacs
and choose emacs-nox.
并选择emacs-nox。
Second choice: use emacs
but with -nw
to disable the window system. Invoke emacs by
第二选择:使用emacs
但使用-nw
禁用窗口系统 。 通过调用emacs
emacs -nw
You can write a small script ema
and put it into your $PATH
, e.g. ~/bin/:
您可以编写一个小的脚本 ema
并将其放入$PATH
,例如〜/ bin /:
#!/bin/env bash
emacs -nw $*
and invoke ema
to use emacs each time.
并每次调用ema
以使用emacs。
翻译自: https://www.systutorials.com/how-to-make-emacs-run-in-command-line-by-default/
emacs 命令行