Skip to content

Commit 2933cb5

Browse files
authored
fix: removes mystery argument to vim.json.encode (#140)
1 parent 39142aa commit 2933cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/colorizer/utils.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ end
235235
--- Returns sha256 hash of lua table
236236
---@param tbl table: Table to be hashed
237237
function M.hash_table(tbl)
238-
local json_string = vim.json.encode(tbl, { sort_keys = true })
238+
local json_string = vim.json.encode(tbl)
239239
return vim.fn.sha256(json_string)
240240
end
241241

0 commit comments

Comments
 (0)