slynch8 / 10x

10x IDE/Editor
191 stars 35 forks source link

Missing function parameters completion for function pointers #2807

Open arno-lunarg opened 2 months ago

arno-lunarg commented 2 months ago

Hello,

It would be nice to have parameters completion when calling a function through a function pointer, like so:

void Foo() {
    typedef void (*MyFunctionPtr)(int a, float b);
    MyFunctionPtr my_function_ptr;
    // my_function_ptr( // <= No function parameters completion
}