From: zeertzjq Date: Sun, 14 Jun 2026 15:05:50 +0000 (+0000) Subject: editorconfig: don't change spaces to tabs in git commit message X-Git-Tag: v9.2.0643~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47bb4bed4aa04424b5bdc5feb0bd05b5093886a1;p=thirdparty%2Fvim.git editorconfig: don't change spaces to tabs in git commit message The text after "Problem:" and "Solution:" are aligned using spaces. closes: #20519 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt --- diff --git a/.editorconfig b/.editorconfig index 1f45e91acc..e281653843 100644 --- a/.editorconfig +++ b/.editorconfig @@ -37,10 +37,13 @@ trim_trailing_whitespace = false trim_trailing_whitespace = false # -# Some custom files do not use tabs +# Some custom files and git commit message do not use tabs # [src/sign.c] indent_style = space [src/sound.c] indent_style = space + +[.git/COMMIT_EDITMSG] +indent_style = space