diff options
author | spindlebink | 2022-05-12 13:23:38 +0000 |
---|---|---|
committer | GitHub | 2022-05-12 13:23:38 +0000 |
commit | af387e6873e88c30f8dacbae9567c8b28f09213f (patch) | |
tree | cac5cdb948524175f7e234e1062eb3526bef31eb | |
parent | 7b287f636f72766356aadb95ba2f32636e0601d3 (diff) |
Default to tabs instead of spaces for Odin files (#2464)
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
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" |