在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中文網其他相關文章!