Well, in order to support compile-time type reflection, which you'd need for @Delegate, closures, and about half the features we cook up, you need access to the local concept of the filer - the thing that you can ask questions like:
This code mentions "List" - um, what's that referring to, and what methods does this 'List' thingie have?
In javac, we pretty much already have access. In eclipse, it's slightly more complicated as we hook at an earlier level, but we need to go here anyway. Once we code in access to the filer within lombok, then using it to find a properties file that is in the source and/or classpath should be a trivial exercise. Until then, though...
--Reinier Zwitserloot