I was reading in the docs and i saw that there is not any (easy, without loop) way to delete a wildcard text from a @window.

(i know /aline has -n to prevent adding duplicate lines, but this one would be useful for other cases too)

The suggestion is:

/dline [-w] @window <text>

-w = will detect and delete all the matching wildcard text lines from the @window

Example:

Code
/window @test
/aline @window test1
/aline @window test2
/aline @window test3
/aline @window test1
/dline -w @window *test1*


Code
@window:

test2
test3


- Thanks laugh smile !