ファイルを開く
コマンドラインから開く。
$ vim path/to/file
現在のバッファでファイルを開く。
:e path/to/file
パスの補完
Ctrl
+ D
:パスにマッチするファイルの一覧を表示する。
Tab
:次の候補を表示する。
参考:
Vim でファイルを開く方法 基本編 | daisuzu’s notes
コマンドラインから行番号を指定して開く
$ vim +123 path/to/file -c 'normal zt'
参考:
Open File And Go To Specific Function or Line Number | nixCraft
open file and goto line number using <filename>:<line nbr>: – Unix & Linux Stack Exchange
How can I open vim with a particular line number at the top? – Stack Overflow