Sublime Forum

Display Class/Function Arguments

#1

I know a full fledged autocomplete/intellisense for coding is over the top and not plausible. But a nice feature (that IDLE actually has) is when I’m typing a function or class that I have declared, or a builtin, or an imported module a little window pops up next to the caret and lists the accepted arguments for it.

[code]
def x(int):

#then when I call it, Sublime could remind me what argument I should pass to it[/code]

if there is already a way to do this than I apologize for wasting time, or if this is too large a feature to request then please tell me.

0 Likes

#2

This should be possible because when you use Goto symbols (command or ctrl + r), it lists the functions with their parameters…

0 Likes

#3

Thanks, Ctrl+r works fine actually for a substitute

0 Likes