Hi all:
How Can I highlight a line when a text has changed?
In the example below, I made changes in lines 2, 5 and 7,
How can i identify the lines that had text changed?
Is there a highlight option? Like active line coloring?
Thanks
Tony
How Can I highlight a line when a text has changed?
In the example below, I made changes in lines 2, 5 and 7,
How can i identify the lines that had text changed?
Is there a highlight option? Like active line coloring?
Code: Select all
1 10 FILLER PIC X(10) VALUE 'FUND '.
2 10 FILLER PIC X(15) VALUE 'NEXT-PAYOUT'. changed1
3 10 FILLER PIC X(15) VALUE 'PRODUCT'.
4 10 FILLER PIC X(11) VALUE 'CLIENT '.
5 10 FILLER PIC X(25) VALUE 'CLIENT NAME'. changed2
6 10 FILLER PIC X(04) VALUE SPACE.
7 10 FILLER PIC X(09) VALUE 'LANGUAGE'. changed3
Tony