首頁 > 後端開發 > Golang > 主體

為什麼安裝 go.vim 後 Go 語法高亮在 Vim 中不起作用?

Susan Sarandon
發布: 2024-11-12 19:29:02
原創
699 人瀏覽過

Why isn't Go syntax highlighting working in Vim after installing go.vim?

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板