Ignore whitespace in Visual Studio Code git diff v

2020-05-30 07:20发布

问题:

Is it possible to ignore white-space when viewing code differences of a file (generated by GIT) in Visual Studio Code? That will be really helpful in checking for actual code additions/deletions before committing.

回答1:

I believe OP is asking to ignore all whitespaces (including between words) not just trailing whitespaces.
Unfortunately, it's still not implemented and you can track the process status here: https://github.com/Microsoft/vscode/issues/43026



回答2:

Is a new feature now. Add on your setting.json:

"diffEditor.ignoreTrimWhitespace": true,