Any way to use wildcards (or even regex) to define routines to ignore?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Any way to use wildcards (or even regex) to define routines to ignore?
I'd like to ignore all routines in a particular namespace and sometimes all routines in a particular class. Also, I have a situation where I want to ignore all files in a particular subtree (several hundred files).
For the last, I ended up doing
du - a | grep cpp > /tmp/foo
and then running that file through a regex editor to massage it into a list of filenames with their complete paths.
Surely there should be a way to write things like
namespace::*
to ignore all routines in a namespace
or
::foo::*
to ignore all methods in the class foo
or
**/foo/bar/*.cpp (.git ignore style 🙂
to ignore all C++ files whose full filepath ends with /foo/bar
I couldn't find anything like this in the documentation about Ignore Files and Routines but it seems like a rather obvious piece of workflow
(Edit: The Filter mechanism does seem to have this kind of ability so perhaps it could just be extended to the Ignore files/routines)
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I think that instead of Ignore you should consider Areas functionality (check AQTime's help for more details about Areas). If I got you right, Areas should better match what you'd like to do.
/Alex [Community Champion]
____
[Community Champions] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Champions]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Champion] signature is assigned on quarterly basis and is used with permission by SmartBear Software.
https://community.smartbear.com/t5/Community-Champions/About-the-Community-Champions-Program/gpm-p/252662
================================
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I may recommend you to create a new feature request (https://community.smartbear.com/t5/AQtime-Feature-Requests/idb-p/AQtime_Feature_Requests/tab/most-re...) and reference this thread.
/Alex [Community Champion]
____
[Community Champions] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Champions]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Champion] signature is assigned on quarterly basis and is used with permission by SmartBear Software.
https://community.smartbear.com/t5/Community-Champions/About-the-Community-Champions-Program/gpm-p/252662
================================
