很多用戶發(fā)現(xiàn)裝了 debian 9 以后,vim沒有辦法使用鼠標(biāo)直接選擇并復(fù)制,很是不方便,其實也是有解決的辦法的,這里小編為大家?guī)鞤ebian 9 VIM 使用鼠標(biāo)右鍵復(fù)制的方法供大家參考。
Debian 9 VIM 使用鼠標(biāo)右鍵復(fù)制方法 Debian 9怎么使用右鍵復(fù)制
裝了 debian 9 以后,vim沒有辦法使用鼠標(biāo)直接選擇并復(fù)制,后來發(fā)現(xiàn)是默認(rèn)的配置問題。于是需要按照以下方式解決:
解決方法
1、 編輯 vim 的默認(rèn)配置文件
vim /usr/share/vim/vim80/defaults.vim
2、 轉(zhuǎn)至第 70 行,找到:
if has('mouse')
set mouse=a
endif
3.、將 set mouse=a 改為:set mouse-=a
4.、輸入 :wq! 保存即可生效。