标签:end mouse 内容 xterm share amp 配置文件 def 保存
修改配置文件,找到如下配置文件/usr/share/vim/vim/defaults.vim
在82行找到如下内容:
80 if has(‘mouse‘)
81 if &term =~ ‘xterm‘
82 set mouse=a
83 else
84 set mouse=nvi
85 endif
86 endif
修改为
80 if has(‘mouse‘)
81 if &term =~ ‘xterm‘
82 set mouse-=a // 修改此行 增加“-”
83 else
84 set mouse=nvi
85 endif
86 endif
保存退出
标签:end mouse 内容 xterm share amp 配置文件 def 保存
原文地址:https://blog.51cto.com/1inux/2542781