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!