Devis Lucato
Devis Lucato
In any case, thanks for the pointers, if I make some progress in this direction I will post an update. For now, given time constraints, I'm switching to a different...
@dalbarracin yes that should work. Referencing to any class inside each DLL with force .NET to load all assemblies, then GetAssemblies will return the full list. Something like this: ```csharp...
I was having the same issue and it turned out to be the firewall and the need to use `--local-host` param. After opening all ports from 6000 to 65535 and...
Hope to see this feature in soon, it would save from opening a huge amount of ports in the firewall
Having to install Postgres on every system is quite bad... :-( `psycopg2` dependency should be optional, e.g. only for installations using Postgresql, something like ``` [tool.poetry.group.postgres.dependencies] psycopg2 = "^2.9.5" ```...
Thanks! that works 👍
> Please try to run the following Bash script `_clean-meld-settings.sh` to cleanup your some settings of Meld. > > ```shell > #!/bin/bash > > cd ${HOME} > rm -rf ./.local/share/meld...
Using 3.19.0 and Meld stopped working again. Repeating the steps above fixed the issue one more time, but apparently there's a bug leading to the broken state at some point
@matiazo without disclosing private info, could you provide the technical changes you would make? we can try adding support for more scenarios
right, that's in line with current work in progress: ``` add KernelConfig.AddCompletionBackend(IBackendConfig) ``` spot on. Currently the list is hardcoded, we're removing that and simply work with interfaces 👍 ```...