Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用命令行启动不同的 emacs 模式?例如,是否可以按如下方式运行 emacs?
emacs --org-mode # to start orgmode emacs --python-mode # to start python mode
之后我可以运行 emacs 来输入“Mx org-mode”,但我想知道我是否可以启动不同的模式。
您可以使用 -f 参数调用函数,因此要启动 org-mode 使用:
emacs -f org-mode