Chinaunix首页 | 论坛 | 博客
  • 博客访问: 492005
  • 博文数量: 174
  • 博客积分: 2502
  • 博客等级: 少校
  • 技术积分: 1923
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-28 09:47
文章分类

全部博文(174)

文章存档

2011年(8)

2010年(16)

2009年(68)

2008年(82)

我的朋友

分类: LINUX

2011-07-17 11:29:32

ubuntu下vim打开之前的一个文件时,光标总是在第一行起始处,而不是上次文件关闭时的光标所在行。

经搜索是与 /etc/vim/vimrc 文件中的如下三行被注释掉有关,将注释去掉即可解决此问题。

" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
  au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif

参考文档:
http://www.dutor.net/index.php/2010/04/vim-recover-cursor/
阅读(1039) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~