- 进入docker容器
- cd /usr/share/vim/
- cd vim81
- vi defaults.vim
- 找到
if has('mouse') set mouse=a endif
修改为:
if has('mouse') set mouse-=a endif
docker容器内vim编辑器无法鼠标右键粘贴
最新推荐文章于 2024-09-04 10:13:39 发布
if has('mouse')
set mouse=a
endif
修改为:
if has('mouse')
set mouse-=a
endif