The vimode error ``` cmd-runner.c:706:15: warning: Dereferencing 'kpl' after it is deallocated / released [deallocuse] g_free(ctx->kpl->data); ``` is a false positive though. It happens for line
https://github.com/geany/geany-plugins/blob/7cb4499878e3a88f1bf5c67b3eae03c6...
but this line is only executed when `ctx->kpl != NULL` and in the code above `ctx->kpl` is always set to NULL when `ctx->kpl` is deallocated. So there's no way this line could be executed on a deallocated `ctx->kpl`.