f1[a_, b_, c_] :=
Module[{},
Print[a];
]
Completion Ctrl-Shift-K doesn't have hint for function arguments.
So I have to copy function arguments nearby:
(%a_, b_, c_%)
f1[]
Is there is a better way to do this? Maybe I am missing something. Thanks in advance.
