-
Notifications
You must be signed in to change notification settings - Fork 52
Improve error output - multiline errors #11
Comments
Thank you for reporting this issue and appreciate your patience. We've notified the core team for an update on this issue. We're looking for a response within the next 30 days or the issue may be closed. |
I made a couple of changes to my local setup to make this a bit nicer... In
Only change here is from %E to %A so you don't see "error" in each line (annoying imo) Then I changed the command to execute flow, appending a pipe into
And
|
I have a proof of concept hack that uses JSON to construct error messages so that the error messages in the quickfix list don't span multiple lines. See https://github.com/danihodovic/vim-flow/tree/fix-error-format or specifically danihodovic@0d6870e. |
Why not exposing Current output format is indeed very bad to read. We might even be able to take advantage of great work already done out there such as |
@danihodovic approach of using |
has there been any progress on this? This issue is still open so are any core members working on it? |
The error output is really hard to read. Specifically, errors usually span 3 lines, and vim-flow currently identifies the 3rd line as another error, when it is extra information about the current error.
Could we indent that 3rd line and not have it appear as another error?
I would also suggest remove the
||
between lines.For a great example to follow, see this typescript plugin: https://github.com/leafgarland/typescript-vim
The text was updated successfully, but these errors were encountered: