split line on | character

This commit is contained in:
2025-06-13 19:47:53 +02:00
parent 78deea0603
commit fd455ff084
+1
View File
@@ -630,6 +630,7 @@ do -- split line {{{1
local SPLIT_DELIMETERS = { -- single characters only local SPLIT_DELIMETERS = { -- single characters only
[','] = true, [','] = true,
[';'] = true, [';'] = true,
['|'] = true,
} }
local SPLIT_BETWEEN = { -- single characters only local SPLIT_BETWEEN = { -- single characters only
['('] = ')', ['('] = ')',