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.
我有一个大文本文件(+100k 长行),我一直在使用 vim 进行编辑,我想删除给定范围内的行,即执行删除行 500 到 50000 之类的操作是否有任何命令可以执行此操作?
几乎每个编辑命令都可以在表单中指定范围
:<from>,<to><CMD>
所以你想要的可能是:
:500,50000d
在你的 vim 会话中使用它: