Is it possible for Emacs to provide a short list of possible function arguments whenever you intend to call a function?
For example, if I print 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(
I am currently using Emacs to work in C ++, but would like to know about such functions for other languages ββlike Lisps, Python, etc. Also, I'm not sure what is called this function, so I would appreciate it if you told me that too.
source share