Vim打开文件并跳转到指定行位置

vim支持3种方法跳转到指定行位置:

1、vim filename +n行号(打开文件后,直接跳转到文件的第n行,强烈推荐这种)

2、ngg/nG (跳转到文件第n行,无需回车)

3、:n (跳转到文件第n行,需要回车)