Is there a setting to display the required arguments of a function when typing as Visual Studio, Matlab, etc. does?
Asked
Active
Viewed 362 times
1
1 Answers
1
The closest thing to what you're describing are function templates, there is a tutorial on how to use them here.
You first have to write the name of the function, for example Plot, and then you hit cmd+shift+k on OS X and ctrl+shift+k on Windows, you'll get this:

Once you have typed the mandatory arguments, you can hit cmd+k on OS X or ctrl+k on Windows to get a list of any options you supply:

If you're having trouble making function templates work with user defined function, you should read this.
Plot[x,{x,1,10},then Ctrl+K – Charlotte Hadley May 04 '13 at 21:02Plot[x,{x,1,10},and press Ctrl+K(nor if I add in Shift to the key combination). Ditto for Cmd+K. – murray May 04 '13 at 22:39Hyperlink["paclet:tutorial/UsingTheInputAssistant"], I found it by accident. – Charlotte Hadley May 04 '13 at 23:25K(on Mac). Don't know why I wasn't earlier. – murray May 05 '13 at 15:11