emacs file.txt
:打开 file.txt
文件emacs file1.txt file2.txt
:同时打开 file1.txt
和 file2.txt
文件emacs -nw file.txt
:以无窗口模式打开 file.txt
文件emacs -q
:以无配置文件模式启动 Emacsemacs -nw --no-init-file
:以无窗口模式且不加载配置文件启动 Emacsemacs -nw -Q
:以无窗口模式且不加载任何 Lisp 文件启动 Emacsemacs -nw --eval "(split-window-horizontally)"
:以无窗口模式并在水平方向上分割窗口emacs --daemon
:启动 Emacs 后台守护进程emacsclient file.txt
:使用 Emacs 客户端打开 file.txt
文件emacsclient -a "" file.txt
:如果 Emacs 未运行,则启动 Emacs 并打开 file.txt
文件emacsclient -c file.txt
:以 GUI 模式打开 file.txt
文件emacsclient -t file.txt
:以终端模式打开 file.txt
文件