首頁  >  文章  >  後端開發  >  為什麼安裝 go.vim 後 Go 語法高亮在 Vim 中不起作用?

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

Susan Sarandon
Susan Sarandon原創
2024-11-12 19:29:02754瀏覽

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn