您好,登錄后才能下訂單哦!
這篇“Debian中vim的Bug怎么解決”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“Debian中vim的Bug怎么解決”文章吧。
我一直在想,為什么我服務(wù)器上 vim 為什么在鼠標(biāo)方面表現(xiàn)得如此愚蠢:不能像平時(shí)那樣跳轉(zhuǎn)、復(fù)制、粘貼。盡管在 /etc/vim/vimrc.local 中已經(jīng)設(shè)置了。
set mouse=
最后我終于知道為什么了,多謝 bug #864074 并且修復(fù)了它。原因是,當(dāng)沒(méi)有 ~/.vimrc 的時(shí)候,vim 在 vimrc.local 之后加載 defaults.vim,從而覆蓋了幾個(gè)設(shè)置。
在 /etc/vim/vimrc 中有一個(gè)注釋(雖然我沒(méi)有看到)解釋了這一點(diǎn):
" Vim will load $VIMRUNTIME/defaults.vim if the user does not have a vimrc. " This happens after /etc/vim/vimrc(.local) are loaded, so it will override" any settings in these files. " If you don't want that to happen, uncomment the below line to prevent " defaults.vim from being loaded. " let g:skip_defaults_vim = 1
我同意這是在正常安裝 vim 后設(shè)置 vim 的好方法,但 Debian 包可以做得更好。在錯(cuò)誤報(bào)告中清楚地說(shuō)明了這個(gè)問(wèn)題:如果沒(méi)有 ~/.vimrc,/etc/vim/vimrc.local 中的設(shè)置被覆蓋。這在Debian中是違反直覺(jué)的 – 而且我也不知道其他包中是否采用類似的方法。
由于 defaults.vim 中的設(shè)置非常合理,所以我希望使用它,但只修改了一些我不同意的項(xiàng)目,比如鼠標(biāo)。最后,我在 /etc/vim/vimrc.local 中做了以下操作:
if filereadable("/usr/share/vim/vim80/defaults.vim") source /usr/share/vim/vim80/defaults.vim endif" now set the line that the defaults file is not reloaded afterwards! let g:skip_defaults_vim = 1 " turn of mouseset mouse=" other override settings go here
以上就是關(guān)于“Debian中vim的Bug怎么解決”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。