Clément Buchart

Results 8 comments of Clément Buchart

Thanks for looking into this. Can confirm the serde feature for uuid is OK now For the diesel one, I don't know if that's actionable but one could get the...

Hello @folke, Has your stance changed since https://github.com/folke/trouble.nvim/issues/35#issuecomment-844943749 ? I too would like this feature, but if you don't feel that it is in the scope of the plugin, that's...

Yes I'm not sure either that's why I'm seeking more information so that I can decide on what to do in my config :) Thank you for this PR.

If anyone is interested I implemented this for https://github.com/akinsho/flutter-tools.nvim which is the neovim cousin of this project It involves listening to the `dart.serviceExtensionAdded` dap event and maintaining a local map...

This should be working with the dap-based runner introduced in https://github.com/akinsho/flutter-tools.nvim/pull/108

Hello, Yes, sorry for the misunderstanding : Indeed it works via the helm CLI only if `helm dep update` is run prior. And I can also confirm that committing the...

Hello, I have the same issue with the following autocmd : ``` vim.api.nvim_create_autocmd("VimResized", { desc = "Resize split.", group = vim.api.nvim_create_augroup("Focus.nvim", { clear = true }), pattern = "*", callback...

Here is my current workaround, to be applied here : https://github.com/kobylynskyi/graphql-java-codegen/blob/f488214ac4ffcf8cd7e44f79f6a02695482ae644/src/main/java/com/kobylynskyi/graphql/codegen/mapper/AnnotationsMapper.java#L125 ``` // 6. Add annotations for resolver arguments if (!Utils.isEmpty(mappingContext.getResolverArgumentAnnotations()) && (mappingContext.getOperationsName().contains(parentTypeName) || (def instanceof InputValueDefinition) && !mappingContext.getDocument().getInputDefinitions().stream().map(o ->...