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

后端 未结 3 1049
难免孤独
难免孤独 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 20:02

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

提交回复
热议问题