Enhancement request: highlight "column-value" pair

Starina

Member³
When writing INSERT queries I'd like PL/SQL Developer to highlight "column-value" pair that is currently under a cursor in a text editor.

Say I have a simple query:

SQL:
insert into TEST_TABLE
  (id, name)
values
  (1, 'John');

So when I place a cursor at "name", both "name" and it's value "John" should be highlighted.
 
Back
Top