Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4182510
  • 博文数量: 776
  • 博客积分: 13014
  • 博客等级: 上将
  • 技术积分: 10391
  • 用 户 组: 普通用户
  • 注册时间: 2010-02-22 17:00
文章分类

全部博文(776)

文章存档

2015年(55)

2014年(43)

2013年(147)

2012年(20)

2011年(82)

2010年(429)

分类: LINUX

2011-01-13 19:44:29

之前,为了解决一个语法加亮的问题更改了vimrc,之后,突然发现鼠标可以使用了,点到那里光标就定位到那里,但是,随后发现,ctrl+shift+c不能用了,鼠标右键复制选项也是灰的。
到网上,搜了一下,发现是set mouse=a这句话的问题
这个是用来开启鼠标功能的。a表示所有模式

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=v在可视模式下使用鼠标,然后搞定。

但是,这样,其他模式就无法使用鼠标定位了,有点不爽。莫非鱼和熊掌不能兼得??

又到网上找了下,发现确实这样,不过却另有所获:
无须更改set mouse=a 用鼠标选中,按y键复制,然后点击要粘贴的地方使用鼠标中键粘贴!!!
支持夸文件粘贴,比使用命令方便多了

阅读(11713) | 评论(1) | 转发(1) |
1

上一篇:ctags使用简介

下一篇:vim笔记

给主人留下些什么吧!~~

meilixinqinggmq2014-09-17 11:52:30

不错,找了半天终于解决问题了,用了set mouse