Hello,
> How can I search my files in textmate for:
> <spaces...>USE<space>
> Where <spaces...> is any number of spaces and <space> is just one space.
Use a regular expression, something like \s+USE\s would do it. Make sure to tick the box saying "Regular Expression" in the find dialog (or hit cmd-alt-r to toggle it.)