I am trying to compare two assembly files where one was written all caps and the other in lowercase. Many lines are identical up to case and whitespace.
I tried the following, while two buffers in diff mode:
:set diffopt+=icase
:set diffopt+=iwhite
:diffupdate
The whitespace thing seems to work well, but the ignore case does not do its work. For example, in the following two lines:
I0=R0; // ADDRESS OF INPUT ARRAY
i0 = r0; // address of input array
[the first line begins with 12 spaces, the second with a single tab]
Why? What can I do?
UPDATE: just noticed that in these two lines all differences were ignored OK:
// MULTIPLY R1 BY 4 TO FETCH DATA OF WORD LENGTH
// multiply r1 by 4 to fetch data of word length