How can I delete multiple lines in vi?

后端 未结 11 1155
天命终不由人
天命终不由人 2021-01-29 20:53

I have tried to follow the following:

How to delete selected text in VI editor

but

5dd

gives

E492: Not a

11条回答
  •  时光取名叫无心
    2021-01-29 21:17

    If you want to delete a range AFTER a specific line trigger you can use something like this

    :g/^TMPDIR/ :.,+11d
    

    That deletes 11 lines (inclusive) after every encounter of ^TMPDIR.

提交回复
热议问题