码迷,mamicode.com
首页 > 系统相关 > 详细

vim下很好的右键复制方法

时间:2016-07-03 23:11:54      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:

1)先按shift ,然后鼠标选中即可复制;(shift按下时为非vim环境)

2)好方法:

"Enable and disable mouse use
noremap <f1> :call ToggleMouse() <CR>
function! ToggleMouse()
if &mouse == a
set mouse=
set nonumber
echo "Mouse usage disabled"
else
set mouse=a
set number
echo "Mouse usage enabled"
endif
endfunction

;;;

f1 切换环境;

vim下很好的右键复制方法

标签:

原文地址:http://www.cnblogs.com/Ph-one/p/5639019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!