summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/plugins/show/showlist.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/show/showlist.lua b/xmake/plugins/show/showlist.lua
index 66090fc48..923228e42 100644
--- a/xmake/plugins/show/showlist.lua
+++ b/xmake/plugins/show/showlist.lua
@@ -28,7 +28,7 @@ function main(values)
local row = {}
for _, value in ipairs(values) do
table.insert(row, value)
- if #row > 5 then
+ if #row > 2 then
table.insert(tbl, row)
row = {}
end