Answers:
使用来查看Brew Emacs配方选项brew info emacs
。它具有以下选项:
--devel
Install development version 26.0.90
要替换当前的emacs,请运行:
brew unlink emacs
brew uninstall emacs
brew install emacs --devel --with-modules --with-cocoa --with-gnutls \
--with-librsvg --with-mailutils --with-imagemagick@6
brew linkapps
imagemagick @ 6库和emacs开发经常更改,因此将它们从自动更新中排除,并在方便的时候手动进行更新:
brew pin imagemagick@6 emacs
不幸的brew linkapps
是现在不推荐使用。
您可以使用,
编辑:正如GuilhermeSalomé指出的那样,现在brew cask install emacs
但截至2018年4月1日,它不允许您下载emacs 26。brew cask install emacs
将安装版本26.1
。
您可以从https://emacsformacosx.com/builds下载所需的版本。
brew cask install emacs
现在正在工作,它目前正在下载26.1版本
这只会安装Emacs 26.1的终端版本。如果您(像我一样)更喜欢使用Emacs的GUI版本,则无法使用
brew install emacs
这是因为维护啤酒的人发现维护和测试多个公式的所有版本和自定义选项很麻烦。从那以后,他们放弃了对自定义选项的支持,并鼓励用户维护自己的水龙头。正如其他人所提到的,您可以使用emacs-mac版本,也可以使用emacs-plus版本,但是如果您更喜欢使用未经编辑的版本并使用自定义标志来支持颜色字体,ImageMagick支持以及所有功能,那么我建议您使用使用以下tap homebrew-emacs-head版本。
brew tap daviderestivo/emacs-head
brew install emacs-head --with-cocoa
或者,如果您更喜欢emacs-head版本(目前为27.x)
brew tap daviderestivo/emacs-head
brew install emacs-head --HEAD --with-cocoa
MacOs有自己的Emacs。在2019年仍然是22.x. 要使用最新的Emacs版本,请执行
brew cask install emacs
-它会将最新的emacs版本安装到/Applications
文件夹中。然后编辑(或创建,如果还没有的话)~/.bash_profile
文件,添加新行
alias emacs='/Applications/Emacs.app/Contents/MacOS/Emacs -nw'
。
source ./bash_profile
以更新bash环境。emacs -version
以确保您使用最新的Emacs版本。这将使您使用Emacs终端版本。如果要使用Emacs UI,只需-nw
在步骤中将其删除2
。
git
autoconf
automake