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 将始终包含<?php在开头,所以我想要它,以便它也将光标向下移动,以便光标将<?php在执行“startinsert”后立即在该行下方开始 2 行
<?php
我该如何修改这个命令呢?
vim您可以通过添加来提供启动时要转到的行号+N,例如
vim
+N
vi +3 -c 'startinsert' ~/j_exec.php