DDT-IDE / DDT

DDT is an Eclipse-based IDE for the D programming language:
http://ddt-ide.github.io/
101 stars 16 forks source link

Please, add marking of occurrences of selected identifier #137

Open klosworks opened 8 years ago

klosworks commented 8 years ago

For example, when I have the following code

import std.stdio; void main() { int someNumber = 42; writeln("Answer: ", someNumber); }

If I select (double click) "someNumber" in line 4, I would like the other occurrence of "someNumber", in line 5, to be marked visually. CDT does this, in particular it darkens the text background of the other occurrences. The CDT option is configurable in 2 places:

bruno-medeiros commented 8 years ago

I'd like to implement this as well as it is very often requested. I'm not sure when I'll have time tho, since it's not very simple to do...

klosworks commented 8 years ago

I'm very glad its on your TODO list! I look forward to it.