[apologies if you get this twice - we had some mail forwarding issues
here]
Unfortunately this won't work: if you use spaces for the alignment of
columns but tabs for indentation, the alignment will be off once you
change the tabwidth. If you want alignment, it's either spaces
everywhere, tabs everywhere (and the matching tabwidth setting in your
editor), or tabs for indentation and spaces afterwards, but no
alignment in this last case.
But in the meantime you can trivially reformat all source to your
preference in your clone:
gofmt -tabwidth=4 -w $GOROOT
to get to your setting, and
gofmt -w $GOROOT to get back.
- gri