Remove pointless arithmetic

This commit is contained in:
Matthew Schauer
2022-02-02 21:04:21 -08:00
parent 70ddcccbca
commit 2370d4d2ac
2 changed files with 2 additions and 2 deletions

View File

@@ -196,7 +196,7 @@ function M.get_lines(flattened_outline_items)
end
local string_prefix = table_to_str(final_prefix)
local hl_start = #string_prefix + 1
local hl_start = #string_prefix
local hl_end = #string_prefix + #value.icon
table.insert(lines, string_prefix .. value.icon .. " " ..
value.name)