From 2c6a9d6e12d49af285b84e52c1a5d988438fb1c5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Tue, 11 Nov 2025 12:44:57 +0100 Subject: [PATCH] vscode: enable indentation detection MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes issues with VSCode forcing whitespaces instead of tabs for indentation. Fixes: df1824aec66c ("vscode: add tab settings") Signed-off-by: Álvaro Fernández Rojas --- .vscode/settings.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f3894c4..5a9d7fa 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,3 @@ { - "editor.tabSize": 8, - "editor.detectIndentation": false + "editor.tabSize": 8 } -- 2.30.2