From: XrXr@... Date: 2019-08-19T18:46:35+00:00 Subject: [ruby-core:94438] [Ruby master Misc#16112] Reduce the possibility of "expand tabs" commit occurrences Issue #16112 has been updated by alanwu (Alan Wu). File Screen Shot 2019-08-19 at 2.43.06 PM.png added I would love it if (1) can happen. Editors like Sublime Text, VSCode and Atom cannot distinguish between indent size and tab size, so they have trouble handling the current style. I use Sublime and have to set my indentation size to 8 to get it to render tabs correctly. Consequently, I have to indent manually by pressing space four times. There are plugins that somewhat improve the situation, but I wasn't able to find anything that provides a first class experience. Imagine greeting someone opening Ruby's source for the first time with a sub-par editing experience. It's certainly not very welcoming. Mostly a minor annoyance, to be sure, and perhaps C programmers don't use these editors. However, it's something worth considering. ---------------------------------------- Misc #16112: Reduce the possibility of "expand tabs" commit occurrences https://bugs.ruby-lang.org/issues/16112#change-80863 * Author: k0kubun (Takashi Kokubun) * Status: Open * Priority: Normal * Assignee: ---------------------------------------- ## Problem * While we agreed to use only spaces for indentation of C code in [Bug #14246], we sometimes hit "expand tabs" commit when we just edit a part of existing lines with hard tab indentation. * "expand tabs" commit bothers people when we need to perform a revert or a backport. * However, because [Bug #14246] aimed to eventually make indentations consistent, we do not want to just drop "expand tabs". * One of the motivations to solve [Bug #14246] is that having hard tabs makes preprocessed MJIT header ugly and it makes debugging on GCC hard. As MJIT may introduce C-code inlining for sources outside vm.c in the future, we want to fix the issue in almost all C sources which can be run on runtime. ## Possible Solutions There would be some options to approach the problem. I'd like to hear opinions about these options. 1. Expand all tabs at once for all files managed by auto-style. * In [Bug #14246], this was clearly objected for the reason "Indents should become consistent over time". * In my understanding, not folliwng "Indents should become consistent over time" would be problematic mainly for polluting "git blame" and conflicts on backport. * For the first point, we can use `-w` option of `git blame` to ignore that. * For backport, it's a trade-off with many "expand tabs" commits. We need opinions about this from @usa and @nagachika . * Also reverting a commit before the commit expanding all tabs would be bothering, for a short while. 2. Skip expand tabs for existing lines when indentation is not changed, and expand tabs only in newly-added lines. * If editors are configured properly, "expand tabs" would not happen for new patches in this approach. * Even in this approach, at least we will not go to the opposite direction of eventually achieving [Bug #14246]. So it seems acceptable. 3. Prepare a local pre-commit hook to perform "expand tabs", and let people who do not want "expand tabs" use it. 4. Make pull request CI fail when there's diff to be expanded, and let people who do not want "expand tabs" commit things from pull requests. ---Files-------------------------------- Screen Shot 2019-08-19 at 2.43.06 PM.png (48.8 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: