Debian 9 VIM 使用鼠标右键复制
1. 编辑 vim 的默认配置文件
vim /usr/share/vim/vim80/defaults.vim
*安装vim:
apt-get install vim
2. 转至第 70 行,找到:
if has('mouse')
set mouse=a
endif
3. 将 set mouse=a
改为:set mouse=c
4. 输入 :wq!
保存即可生效。
https://my.oschina.net/shootercn/blog/1821640
https://blog.csdn.net/sinat_29891353/article/details/78103695