Nerijus

Results 19 comments of Nerijus

Just add it to your Query class: ```python class Query(graphene.ObjectType): node = relay.Node.Field() all_employees = SQLAlchemyConnectionField(Employee) employee = relay.Node.Field(Employee) ```

I tried editor.suggest.insertMode = replace and there is one difference. When the word exactly matches the suggestion, vscode does not change it. So behavior is not consistent after all. Sometimes...

The proposed patch resolves the issue.

Finally, I think this vscode behavior is not intentional. This is probably a bug. Otherwise, I can't understand the logic of why replace works like insert. Their own documentation says...

> Can you try the patch again? It broke jsonls, i've updated it. Everything works as expected.

I don't know which branch you are talking about. As for nvim-cmp, it behaves similarly, but not quite the same (there are differences depending on auto-import as I mentioned). Regarding...

I have two machines. One at home - Linux, another at work - Windows (using powershell). Neovim configurations are the same. And I have a similar issue, but only on...

Instead of standard print() you must use result object for that. E. g. ```python import lldb def __lldb_init_module(debugger, internal_dict): debugger.HandleCommand('command script add -f lldb.print_hello hello') def print_hello(debugger, command, result, internal_dict):...

You can send results to quickfix (with ctrl+q by default) and do whatever you want.