We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
repeat ... until
1 parent 7b75c6e commit 7d76fc1Copy full SHA for 7d76fc1
spec/lua.lua
@@ -103,6 +103,8 @@ return {
103
if (term == 'if' or term == 'elseif') and not str:match("%f[%w_]then%f[^%w_]")
104
or (term == 'for') and not str:match("%f[%w_]do%f[^%w_]")
105
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_]")
108
-- if this is a function definition, then don't increment the level
109
or func == 1 then
110
terminc = 0
0 commit comments