From ddcaa8130852a2a4bab91308809b835a5ed2f2c4 Mon Sep 17 00:00:00 2001 From: Matt Armstrong Date: Thu, 3 Nov 2022 14:34:03 -0700 Subject: [PATCH 1/6] Configure clang-format to use tabs * .clang-format (UseTab): Set to "Always", to match the (indent-tabs-mode . t) in .dir-locals.el --- .clang-format | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-format b/.clang-format index ac9f95c88a8..8a8391c2e47 100644 --- a/.clang-format +++ b/.clang-format @@ -21,6 +21,7 @@ MaxEmptyLinesToKeep: 1 PenaltyBreakBeforeFirstCallParameter: 2000 SpaceAfterCStyleCast: true SpaceBeforeParens: Always +UseTab: Always # Local Variables: # mode: yaml -- 2.35.1