Skip to content

Commit ce40df7

Browse files
committed
fix: restore completion order
1 parent 551cea6 commit ce40df7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/core/completion/completion.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2357,8 +2357,8 @@ end
23572357
local function tryCompletions(state, position, triggerCharacter, results)
23582358
if getComment(state, position) then
23592359
trySymbolReference(state, position, results)
2360-
tryComment(state, position, results)
23612360
tryLuaDoc(state, position, results)
2361+
tryComment(state, position, results)
23622362
return
23632363
end
23642364
if postfix(state, position, results) then

0 commit comments

Comments
 (0)