如何在Mac terminal中使用GUI Emacs打开文件
October 23, 2012
~/.bashrc
或~/.zshrc
中添加:alias em="open -a /Applications/Emacs.app/Contents/MacOS/Emacs $@"
,然后source ~/.bashrc
或者source ~/.zshrc
文件使之生效。.emacs
中添加:(setq ns-pop-up-frames nil)
并M-x
执行eval-buffer
,使打开文件时不打开新的窗口,而是作为当前窗口的一个buffer。- Done,在terminal中使用
em some.file
就可以用gui emacs打开文件了。