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编辑器编程吗
如何关闭窗口,保存打开页面的内容。// 我使用 Esc wq: 但它一直打开窗口
ESC + :wq
删除所选内容
如何在 VI 中选择内容?要删除一行,请按dd。要删除 2 行,请按2dd... 以此类推
dd
2dd
去直线// Esq /。任何其他方式
ESC + :120
以上组合将带您到第 5 行。120. 或运行以下命令:
vi +120 file_name
在同一窗口中打开新文件而不关闭旧文件
ESC + :split new_file_name
很抱歉这篇文章的格式。