How can I open vim with a particular line number at the top?

末鹿安然 提交于 2019-11-30 04:40:59

You could issue zt after opening the file, so something like: vim +500 filename -c 'normal zt'.

As an alternative (because I ended up here searching for it), if you want to have the syntax vim <filename>:<linenumber>, eg vim test.rb:45, you can use vim-fetch with Vundle:

Plugin 'kopischke/vim-fetch'

This should do it:

vim +'500|norm! zt' filename

Or you could just start the habit of using zt (top), zz (center), and zb (bottom); In my case, it is so automatic, I wouldn't really require the extra invocation argument

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!