summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2021-09-26 12:13:38 +0800
committerruki <[email protected]>2021-09-26 12:13:38 +0800
commit4f3589dcc26944b642fbb92965c254362a5dc162 (patch)
treefaa9bedde010dc2ea957010515bb0add705a02fe
parentd18679202f372ac5528543827b8409fefd401cfd (diff)
improve show list
-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