Kali 2020 Xshell VIM无法粘贴问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kali 2020 Xshell VIM无法粘贴问题相关的知识,希望对你有一定的参考价值。
修改配置文件,找到如下配置文件
/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
保存退出
以上是关于Kali 2020 Xshell VIM无法粘贴问题的主要内容,如果未能解决你的问题,请参考以下文章
Kali2022.01 配置sshd 服务并使用xshell 连接
Kali2022.01 配置sshd 服务并使用xshell 连接