Is there a way to find all empty files (with vscode) in a project? I try to open all my .scss files, and already installed 'search - open all results', however even with regEx I wasn't able to find them all because some of them are empty.
Also I just discoverd, that this extension only opens the first 10 matches (regardless if in the same file or not) - so a more handy solution would be preferable.
(?!\n|.|\r|\Z)
(..not tested..) – Needham(?<!\s)(^$)(?!\n)
if by empty you mean one line with nothing on it. And not even onenewline
. – Witchy