debian使用vi中经常出现m
apt install vim
vim不能用鼠标粘贴
vim /etc/vim/vimrc
在末尾加入以下内容:
bash
let skip_defaults_vim = 1
if has('mouse')
set mouse-=a
endif
保存文件即可
apt install vim
vim /etc/vim/vimrc
在末尾加入以下内容:
let skip_defaults_vim = 1
if has('mouse')
set mouse-=a
endif
保存文件即可