Picture this scenario: I have a massive CSS file with over 40,000 lines, like the one found at https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.css
I need to sift through this file and specifically search for class definitions that include the term "hidden" in their name. Regular text searches won't cut it because "hidden" might also be part of the class definition itself. Is there a tool out there that can interpret the CSS file and allow me to semantically search within it, distinguishing between instances of "hidden" in class names versus class definitions?
If you have any suggestions or tips on how to accomplish this, please share! Thank you!
Update: I currently use Visual Studio Code, so if there's an extension available that fits the bill, that would be fantastic. Alternatively, I'm open to using a separate tool as well.