Sublime Forum

C Function Parameter Hints

#1

Is there any plugin for C that generates hints for function arguments? i.e.shows the parameter list while you are typing in the arguments for the function call.

0 Likes

#2

I know that EasyClangComplete can do that using autocomplete. But it might not work out of the box. Since autocompleteing functions outside of your current translation unit would require information about your compilation flags, you’ll need to generate a compilation database (refer to the plugin’s README for more information).

Maybe there are other packages that do what you ask, but I am not familiar with them.

1 Like

#3

ECC does this when the package settings have been updated to point to the file locations correctly. The example documentation in the ECC settings file is pretty helpful to get this right.

0 Likes