pnedev / comparePlus

Compare plugin for Notepad++
GNU General Public License v3.0
961 stars 139 forks source link

[Suggestion] Fully ignore CR/LF #349

Closed mdrmdrmdr closed 1 year ago

mdrmdrmdr commented 1 year ago

Any chance, that comparePlus, compares the following two code blocks, one 3 lines and one 1 line, as equal? They just differ in whitespaces and I cannot find a setting to achieve this.

function(a) {
  return "x";
}

and

function(a) { return "x"; }

pnedev commented 1 year ago

Hello, Unfortunately ComparePlus cannot achieve this as it is working on a line-by-line basis. BR