在 Vim 中配置 Go 语法高亮
尝试将 Go 语法高亮添加到 Vim,您按照说明将 go.vim 复制到语法目录并创建一个 ftDetect 文件。但是,突出显示未激活。
解决方案
根据 Go 1.4 发行说明,Go 对 Vim 等编辑器的支持已从标准存储库中删除。相反,您可以在 Go Wiki 上找到 Vim 插件的安装说明:
To use all the Vim plugins, add these lines to your $HOME/.vimrc. " Some Linux distributions set filetype in /etc/vimrc. " Clear filetype flags before changing runtimepath to force Vim to reload them. filetype off filetype plugin indent off set runtimepath+=$GOROOT/misc/vim filetype plugin indent on syntax on
使用这些行更新您的 .vimrc 文件,Vim 将自动加载 Go 文件所需的语法设置。
以上是为什么安装 go.vim 后 Go 语法高亮在 Vim 中不起作用?的详细内容。更多信息请关注PHP中文网其他相关文章!