Formatter alias identifier case option

Is there a way to use formatter to set lowercase aliases but keep other identifiers uppercase?
For example:

select mt.COL1
from MY_TABLE mt
where mt.COL2 like '%'
  and mt.COL3 = 1;

instead

select MT.COL1
from MY_TABLE MT
where MT.COL2 like '%'
  and MT.COL3 = 1;

That is not part of the current options, sorry. It looks a useful feature though.

Andre