I mean, like a Refactoring in Delphi 2007.
Select any word, after then want to Rename that. for example:
ID : Byte;
I wanna change ID to Caller_ID. and in all project. It can be in 3 Unit. I want to know wich unit, wich line, wich condition. Maybe I wrote locale variable in procedure and I dont want to change it, so I want to delete it from "Will change list"
I wanna see Will change list similar
Unit_1.pas
102 ID := 1;
355 if Start_ID = 11 Then begin
Unit_2.pas
95 if ID=12then begin
255 ID := 99;
......
if its be in treeview, first node caption Unit name, chiled note caption line number and condition. So I can understand what will be change.
"355 if Start_ID = 11 Then begin" if I didnt see this line, I cannot know whats changed. If I'm not remove this lines from "Will change list" its change to "if Start_Caller_ID = 11 Then begin" and this is wrong.
Sorry for my pure english, I hope I could more clear my idea