In the example below, the first select statement using .T1 displays the code insight picklist correctly.
In the second select statement after typing the T2. the code insight picklist is not displayed correctly.
Example:
SELECT * FROM TABLE1 T1 WHERE T1.COLUMN1
SELECT * FROM TABLE2 T2 WHERE T2.
The parser is used to identify statement pieces now (new as of 12.5) and the editor contents are two incomplete statements.
Revised Example:
SELECT * FROM TABLE1 T1 WHERE T1.COLUMN1;
SELECT * FROM TABLE2 T2 WHERE T2.