Gruntfuggly / todo-tree

Use ripgrep to find TODO tags and display the results in a tree view
Other
1.43k stars 139 forks source link

Configuration options in the tree filter. #750

Open paj80paj opened 1 year ago

paj80paj commented 1 year ago

When I click on the filter icon it allows me to search for text within the Todo simply by entering the search string in. Is it possible to search for todo's which don't contain specific strings? Thanks in advance for your help in this.

Gruntfuggly commented 1 year ago

It's a regular expression, so you could try something like ^((?!fish).)*$ to filter out todos that contain "fish".

paj80paj commented 1 year ago

Thanks very much.