Skip to content

Commit d4f72d2

Browse files
committed
fix: fence problems
1 parent 7492886 commit d4f72d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/nvim-tree/explorer/sorters.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function M.merge_sort(t, comparator)
9898
if b_index == -1 or a_index == nil then
9999
b_index = 9999999999
100100
end
101-
return a_index < b_index
101+
return a_index <= b_index
102102
end
103103

104104
split_merge(t, 1, #t, mini_comparator) -- sort by user order

0 commit comments

Comments
 (0)