From af387e6873e88c30f8dacbae9567c8b28f09213f Mon Sep 17 00:00:00 2001 From: spindlebink <63519521+spindlebink@users.noreply.github.com> Date: Thu, 12 May 2022 08:23:38 -0500 Subject: [PATCH] Default to tabs instead of spaces for Odin files (#2464) --- languages.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages.toml b/languages.toml index bedde5a2..8c0f4048 100644 --- a/languages.toml +++ b/languages.toml @@ -1337,7 +1337,7 @@ scope = "source.odin" file-types = ["odin"] roots = [] comment-token = "//" -indent = { tab-width = 4, unit = " " } +indent = { tab-width = 4, unit = "\t" } [[grammar]] name = "odin"