This is neat. Are there any plans to add more of these QoL features?
Iād really like the ability to add documentation to custom functions that then shows up like the built-in documentation.
Absolute W changes here especially the document symbol renaming
How do you get that? It does not work for me
Resume
is not resuming my gameplay tests while I have this circled setting ticked and I get an error. Is this a bug?
I donāt remember activating this feature, so I was surprised when I was unable to resume out of errors recently (it was randomly ticked on.)
Is there any way to rename matching text and not just document symbols?
Isnāt that what Find All / Replace All does (Cmd / Ctrl + Shift + F)?
It should be Cmd / Ctrl + F12 or Right Click + Go To Declaration ā if it doesnāt work, Lua might not know the type of the object.
For example, trying the feature on FindFirstChildWhichIsA
will not work for the first example but it will on the second:
local function onTouched(player)
local character = player.Character
if (character == nil) then return end
local humanoid = character:FindFirstChildWhichIsA("Humanoid")
-- etc.
end
local function onTouched(player : Player)
local character : Model? = player.Character
if (character == nil) then return end
local humanoid = character:FindFirstChildWhichIsA("Humanoid")
-- etc.
end
We learn things new everyday I guess. I thought CTRL + SHIFT + F only would find all, but apparently thereās an arrow to replace all.
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.