Chinaunix首页 | 论坛 | 博客
  • 博客访问: 208395
  • 博文数量: 42
  • 博客积分: 2510
  • 博客等级: 少校
  • 技术积分: 451
  • 用 户 组: 普通用户
  • 注册时间: 2008-05-12 21:04
文章分类

全部博文(42)

文章存档

2011年(1)

2010年(2)

2009年(22)

2008年(17)

我的朋友

分类: LINUX

2009-02-26 21:47:31

发现vim中,鼠标右健无法复制. 在配置文件(./vimrc)中发现,有这样一段话:
 44 " In many terminal emulators the mouse works just fine, thus enable it.
 45 if has('mouse')
 46   set mouse=a
 47 endif

这里不得不说到vi的三种模式:命令模式,插入模式,可视模式.鼠标可以启动于各种模式中:
The mouse can be enabled for different modes:
                n       Normal mode
                v       Visual mode
                i       Insert mode
                c       Command-line mode
                h       all previous modes when editing a help file
                a       all previous modes
                r       for |hit-enter| and |more-prompt| prompt
Normally you would enable the mouse in all four modes with:
                :set mouse=a
When the mouse is not enabled, the GUI will still use the mouse for
modeless selection.  This doesn't move the text cursor.

所以配置文件中的set mouse=a启动了所有模式,这样就屏蔽了鼠标右健功能.解决方法是把模式设置
为空值    :set mouse=

阅读(1126) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2011-07-11 10:01:29

首先,你的vim可能还需要安装一些相关的软件,如果你的系统是fedora,那么你可以通过yum install vim* 来安装一些vim相关软件和依赖程序。然后你的vim中的字符串就很有可能可以copy到其它地方了