Skip to content

Commit 7d76fc1

Browse files
committed
Fixed formatting of repeat ... until on one line (pkulchenko#324).
1 parent 7b75c6e commit 7d76fc1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

spec/lua.lua

+2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ return {
103103
if (term == 'if' or term == 'elseif') and not str:match("%f[%w_]then%f[^%w_]")
104104
or (term == 'for') and not str:match("%f[%w_]do%f[^%w_]")
105105
or (term == 'while') and not str:match("%f[%w_]do%f[^%w_]")
106+
-- or `repeat ... until` are on the same line
107+
or (term == 'repeat') and str:match("%f[%w_]until%f[^%w_]")
106108
-- if this is a function definition, then don't increment the level
107109
or func == 1 then
108110
terminc = 0

0 commit comments

Comments
 (0)