you can also search for partial expressions like so 'if:*?===b' will match on any if statement that contains a condition matching '?===b' where '?' is a wildcard
This is very nice. I wonder if this could not be used as a base to build a code refactoring tool too! Refactoring is often just find and replace with a complex find expression.
What is this? I read: "Using a special syntax like CSS" and then saw: "if:<10%%(..." I gotta admit, it looks like it's just JavaScript, but harder to read. How does it make finding code easier?
Like, I can see "if:a===b" as an example, but what if you don't know the variable names? Like "if:<ident>===b" or something?