Ohhh, please note that wordcounter_hidden_files only hides those specific file statistics from your view - their word counts will still be included in the character-specific and overall totals.
To exclude unused labels entirely, you'd want to look at script_ignore_path instead. Unlike wordcounter_hidden_files, this one makes sure the words won't be counted at all. (Otherwise, they work exactly the same when it comes to file name matching.)
- Specifically, you'd want to put your unused script parts in a separate file, let's say "wip_route.rpy"
- You can then set script_ignore_path = ["wip_route.rpy"]
- Or script_ignore_path = ["wip"]
- Depending on your preferences, you can either name specific files or broadly exclude all files mentioning a certain keyword
Likewise, I have no idea if this would fully resolve your problem, but maybe simply adding ".rpyc" to script_ignore_path would do the trick for the second issue? I've personally never run into this issue, so I'm unfortunately not sure how to validate it.