已复制到剪贴板

emacs

Emacs 是一款功能强大的文本编辑器,可以通过命令行进行操作。它拥有许多自定义选项和插件,使得用户可以高度定制化地使用这个编辑器。

例子

  • emacs file.txt:打开 file.txt 文件
  • emacs file1.txt file2.txt:同时打开 file1.txtfile2.txt 文件
  • emacs -nw file.txt:以无窗口模式打开 file.txt 文件
  • emacs -q:以无配置文件模式启动 Emacs
  • emacs -nw --no-init-file:以无窗口模式且不加载配置文件启动 Emacs
  • emacs -nw -Q:以无窗口模式且不加载任何 Lisp 文件启动 Emacs
  • emacs -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 文件