Horacio Sanson

Results 110 comments of Horacio Sanson

Difficult for me to help... I do not use clangd nor do C++ development.

Merlin error handlers use a function `merlin#ErrorLocList()` that is not part of ALE. This function is part of `ocaml/merlin` vim plugin: - https://github.com/ocaml/merlin/blob/master/vim/merlin/autoload/merlin.vim#L495 The error you see happens there so...

Are you using latest ALE? this was already reported in #3605 and fixed in #3606. Problem is that some diagnostic errors returned by terraform do not have "detail" key: ```...

Difficult to help here. I use terraform daily for work and cannot reproduce such issue in my setup. You can try to debug the issue by adding output messages (e.g....

Looking latest ALE code it seems we already get the completion_trigger_characters advertised by the LSP server: https://github.com/dense-analysis/ale/blob/master/autoload/ale/lsp.vim#L238 Not 100% sure but maybe this can be already closed?

This is a very simple example of adding a new linter. It is easy to see what needs to be added: - https://github.com/dense-analysis/ale/pull/3950/files In specific: - Instead of hardcoding the...

There no trace of cocvetur or anything similar to it in ALE source. I do not think this has anything to do with ALE.

Does golangci-lint linter output has information about the severity of each issue? If anyone can provide such output would help to dynamically set the `type` according to the output. The...

Without much knowledge of how rustc/cargo work all I can recommend is that those special entries are filtered out (skipped) by the handler. Such entries are useless anyways for ALE/Vim.

ALERename is only supported by language servers (LSP) and clang-format is a fixer so it won't work. On the other hand clangd is a language server and it seems to...