Matthew Brush

Results 196 comments of Matthew Brush

Out of curiosity, does it support function pointers? ``` c g_signal_connect(obj, "sig", G_CALLBACK(some_function), NULL); GCallback cb = &some_function; sigc::mem_fun(*this, &TheClass::some_function); ```

That stuff isn't bindable since it's not public (ie. GeanyBuildCmdEntries, GeanyBuildGroup, GeanyBuildSource, etc.) and also there's no way to retrieve any non-current build command's info. If I had to guess,...

Ah, ok. We could add them to GeanyPy, I probably just skipped it since I was looking at the API docs when making the bindings and it appeared useless at...

Does it leave any suspicious output in the debug messages (Help->Debug Messages) ? Also, would it be possible to try it with latest Geany 1.24, and/or without any other plugins...

I can't seem to reproduce.

@b4n added the `--with-geany-libdir` option to the build system for this. To get a non-standard prefix working here I had to use `PKG_CONFIG_PATH` to make it able to find the...

@elextr I don't think GeanyPy has a `--with-geany-libdir` argument to configure, it's controlled by the pkg-config file you find it (ex. by setting `PKG_CONFIG_PATH=/geany/prefix/lib/pkgconfig`). @olymk2 It almost sounds like you're...

Sorry I didn't see this issue for some reason, must've missed it in my email. I'll try to investigate a bit soon to see if it's a bug but it...

@elextr do you mind testing #22 to see if it fixes your issue?