From 0c42e0e8b1e24c2f6e2336ca955a1a5f8d3e0c5b Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 6 Jan 2019 20:15:19 -0500 Subject: [PATCH] editorconfig: set default tab width to 8 (#9467) Vim patches may include tabs in Vimscript test files. editorconfig uses "indent_size" for tabs if "tab_width" is unset so the user sees 2-width tabs. --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index b117784d13..bb6a1423ef 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,6 +3,7 @@ root = true [*] indent_style = space indent_size = 2 +tab_width = 8 end_of_line = lf insert_final_newline = true charset = utf-8