Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから私はこのコマンドを実行します:
vi -c 'startinsert' ~/j_exec.php
これによりviが起動し、viが開いた瞬間にすぐに挿入モードになります
現在、j_exec.php は常に最初に含まれているため、 「startinsert」を実行した直後に<?phpカーソルが行の 2 行下から開始されるようにカーソルを下に移動するようにしたい<?php
<?php
このコマンドを変更するにはどうすればよいですか?
vimを追加すること+Nで、開始時に移動する行番号を指定できます。
vim
+N
vi +3 -c 'startinsert' ~/j_exec.php