Use configured indent values if detectindent can't detect them

This commit is contained in:
Guldoman
2021-09-07 07:53:03 +02:00
committed by Francesco
parent e99c76f8b8
commit 501be5fdfe
+5
View File
@@ -102,6 +102,11 @@ end
local function update_cache(doc) local function update_cache(doc)
local type, size, score = detect_indent_stat(doc) local type, size, score = detect_indent_stat(doc)
local score_threshold = 4 local score_threshold = 4
if score < score_threshold then
-- use default values
type = config.tab_type
size = config.indent_size
end
cache[doc] = { type = type, size = size, confirmed = (score >= score_threshold) } cache[doc] = { type = type, size = size, confirmed = (score >= score_threshold) }
doc.indent_info = cache[doc] doc.indent_info = cache[doc]
end end