Context menu doesn't list module functions?

Hey, and thanks for reading in advance.

I’ve got a central Core module with pertinent functions for a fighting game I’m making.
When I parse the table IN the module itself to see all of its available functions, the context menu shows them to me without issue:
image

But if I require this same module from another script and attempt to list the same functions, nothing shows up:
image

Is there a formatting issue resulting in this? A line limitation, perhaps? Any help or advice is appreciated.

EDIT: This is not normal behavior - I can view the module elements just fine from an external script in other projects I’m making, which leads me to believe there’s some kind of formatting error in the Core module.

I have encountered this issue as well. It seems that you can only get the context menu if the entire path is in one line. For example, you probably would need to change the lines to this:

local Core = require(game.ServerStorage.Modules.Core)
local StateList = require(game.ReplicatedStorage.Modules.StateList)

Of course, I don’t like the fact that I need to rewrite the whole path for every single module I require, so I just give up getting the context menu. It would certainly be helpful if Roblox allow multi-line path to still be able to call up the context menu.