Add option to only render boundary whitespace #2266
leggsimon posted onGitHub
I really like the new rendering of whitespace in PRs (I always have it enabled in my text editor) however personally I think it’d be nice to be able to choose to only render “boundary” whitespace instead of all of it.
VSCode’s definition of “boundary” whitespace is “Whitespace characters except for single spaces between words”.
Small example (ignore the squiggly): <img width="189" alt="Screen Shot 2019-07-23 at 13 37 09" src="https://user-images.githubusercontent.com/11544418/61712778-ff12fe80-ad4e-11e9-9f9e-703c131419ba.png" alt="Code screenshot showing `, async () => { `">
Here it’s not rendering the space character between the comma and the async
keyword, but then there’s two spaces between async
and the opening bracket so they get rendered and then finally any trailing whitespace gets rendered.
I can’t recall whether any features allow for different options rather than just on/off which might be a blocker to this potentially. My thought being that the options become Off
, Boundary
, & All