Sublime Forum

How to see functions' parameters

#1

I use Lua and one thing I miss a lot is the possibility to see the arguments required by a function when I’m typing this function.
For example:

function test(arg1, arg2, arg3)
end

x = function( -- here ST should show "arg1, arg2, arg3...

Is there any way to have this?

0 Likes

#2

I’d suggest taking a look at the LSP plugin.

0 Likes