Steven Arcangeli

Results 451 comments of Steven Arcangeli

There are two reasons why a formatter may fail. 1 is that it's not installed, 2 is that it errored during execution. Our approach for 1 has been to detect...

As part of #491 I've added a default behavior of notifying the user once-per-filetype if you attempt to format but none of the configured formatters are available. Would that address...

There's no notification when the formatter fails? That's very strange, can you file a bug report with a repro? It should produce a notification that says `Formatter failed. See :ConformInfo...

I think the current notification system is good for most people. I certainly don't want to _prevent_ you from customizing the way error handling is done, but I don't think...

This is a tricky edge case that is not well documented, so apologies for that. As you have discovered, when you pass in a string for the command it is...

Hmm...I think I saw something in neovim nightly about supporting adding multiple highlight groups to a text section via extmarks, and it merges them. We could maybe leverage this and...

In 2270fa1 I refactored `trim_whitespace` and `trim_newlines` to use the lua function format instead of awk. Would those serve as sufficient examples?

There is an `OilActionsPost` User autocmd that might serve your purpose. Right now when you delete files with Oil, we don't delete the buffers (if those files are open). I've...

According [to the docs](https://biomejs.dev/guides/configure-biome/) it looks like the formatter, linter, and import sorter are all enabled by default. The default conform `biome` formatter calls `biome format`. If you want to...

Can you not just use the built-in `biome-check` formatter? It runs `biome check` which, from my understanding, will organize the imports ```lua formatters_by_ft = { lua = { "stylua" },...