[Linux] vim jumps to the specified n line

1. Purpose

When the code reports an error, vim directly needs to find a certain line by itself, which is too troublesome.

2. Solve 

vim +n filename

#eg:

vim +233 /usr/local/lib/python3.6/dist-packages/keras/engine/saving.py

 

reference

1.vim jump to the specified line

 

Guess you like

Origin blog.csdn.net/qq_35975447/article/details/114021482