Debian10中,使用apt安装的vim默认无法使用鼠标进行复制粘贴,很不方便。因此,今天介绍一下如何在Debian10中恢复鼠标复制粘贴的功能。
只需要添加一个文件/etc/vim/vimrc.local。
source $VIMRUNTIME/defaults.vim
let skip_defaults_vim = 1
if has('mouse')
set mouse=r
endif
Debian10中,使用apt安装的vim默认无法使用鼠标进行复制粘贴,很不方便。因此,今天介绍一下如何在Debian10中恢复鼠标复制粘贴的功能。
只需要添加一个文件/etc/vim/vimrc.local。
source $VIMRUNTIME/defaults.vim
let skip_defaults_vim = 1
if has('mouse')
set mouse=r
endif