Closed AridAjd closed 4 months ago
When you do function name(), the end is not autcompleted, but when you do local function name() (adding the local before function), it properly autocompletes the end. This problem occurs with Autocomplete end enabled. Here's a video:
function name()
end
local function name()
Autocomplete end
https://youtu.be/cxOV6Rla3s0
Underlying issue is https://github.com/luau-lang/luau/issues/1328
When you do
function name()
, theend
is not autcompleted, but when you dolocal function name()
(adding the local before function), it properly autocompletes theend
. This problem occurs withAutocomplete end
enabled. Here's a video:https://youtu.be/cxOV6Rla3s0
(added link because github doesn't allow vids > 10mb)