File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1010* ` FIX ` [ #1131 ] ( https://github.com/sumneko/lua-language-server/issues/1131 )
1111* ` FIX ` [ #1134 ] ( https://github.com/sumneko/lua-language-server/issues/1134 )
1212* ` FIX ` [ #1141 ] ( https://github.com/sumneko/lua-language-server/issues/1141 )
13+ * ` FIX ` [ #1144 ] ( https://github.com/sumneko/lua-language-server/issues/1144 )
1314
1415## 3.2.3
1516` 2022-5-16 `
Original file line number Diff line number Diff line change @@ -66,7 +66,8 @@ local care = {
6666 [' repeat' ] = function (source , text , results )
6767 local start = source .start
6868 local finish = source .keyword [# source .keyword ]
69- if text :sub (finish - # ' until' + 1 , finish ) ~= ' until' then
69+ -- must end with 'until'
70+ if # source .keyword ~= 4 then
7071 return
7172 end
7273 local folding = {
You can’t perform that action at this time.
0 commit comments