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

后端 未结 3 1050
难免孤独
难免孤独 2020-12-23 19:13

I know it is possible to have vim open a file at particular line number using this syntax:

vim +500 filename

However, I would like it to op

相关标签:
3条回答
  • 2020-12-23 19:56

    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

    0 讨论(0)
  • 2020-12-23 20:02

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

    0 讨论(0)
  • 2020-12-23 20:04

    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'
    
    0 讨论(0)
提交回复
热议问题