Intellisense for CTE's

My co-worker just reminded me of something I've been wanting for a long time: It would be amazing if someone can figure out how to get Data Point intellisense (auto complete column names when typing) to work for common table expressions (CTE's). For example if I write the following:

WITH MYCTE AS ( SELECT STUFF, THINGS, WIDGETS FROM TABLE)

SELECT  MYCTE.
FROM MYCTE

It would be great if the auto complete would list MYCTE columns.

Thanks!

This might be a configuration option somewhere? This works for me already.
Note, I had to use legitimate tables and columns in the CTE for it to work.

Oracle:
image

DB2 for iSeries (ODBC):
image