When declaring variables in a comma-separated fashion, only the first variable in the list is detected by intellisense, while the rest are not.
Repro:
- Declare any number of variables in a comma-separated list. Whether or not they are initialized with any value makes no difference.
local a, b, c, d
- Try to type
a
. It will show up with intellisense. However, typingb
,c
, ord
will not be detected by intellisense.
This is a long-standing bug (I don’t remember it not being there), but was just reminded of it by @TheNickmaster21’s tweet.
Example:
(Quick open-source plug: made this gif with my ToGIF thingy)