📌  相关文章
📜  删除以可视代码开头的所有行 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:03.577000             🧑  作者: Mango

代码示例1
If you want to delete the entire line make your regex find the entire line and include the linefeed as well. Something like:

^.*(word1|word2|word3).*\n
Then ALT-Enter will select all lines that match and Delete will eliminate them including the lines they occupied.