Ignore whitespace in Visual Studio Code git diff view

前端 未结 2 1544
误落风尘
误落风尘 2021-02-03 17:06

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 ad

2条回答
  •  醉话见心
    2021-02-03 17:55

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

    "diffEditor.ignoreTrimWhitespace": true,
    

提交回复
热议问题