Is it possible for Emacs to provide a short list of possible function arguments whenever you are about to call a function?
For example, if I type out this:
Foo(
I would like to see something like
Foo(int x)
Foo(std::string x)
Foo(int x, int y, int z = 5)
pop out under my Foo(
Currently I am using Emacs for C++ work, but would like to know about such features for other languages like the Lisps, Python, etc., as well. Also, I am not sure what this kind of feature is called, so I would appreciate it if you could tell me that too.