diff options
author | Andrew Lazarus <nerdrew@gmail.com> | 2019-06-04 21:54:26 -0700 |
---|---|---|
committer | Andrew Lazarus <nerdrew@gmail.com> | 2019-06-04 22:20:57 -0700 |
commit | e7317e05ea3e18d39feb4620a93c8ceec25d8a43 (patch) | |
tree | 2578dc2c06a53b16a74d237915a9ab116822628e /autoload | |
parent | 381fff0e4c0c7c5057ed0d114169fac3a419ff85 (diff) | |
download | ale-e7317e05ea3e18d39feb4620a93c8ceec25d8a43.zip |
show rendered cargo error in detail
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/handlers/rust.vim | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/autoload/ale/handlers/rust.vim b/autoload/ale/handlers/rust.vim index dda6466e..a7fac464 100644 --- a/autoload/ale/handlers/rust.vim +++ b/autoload/ale/handlers/rust.vim @@ -56,14 +56,20 @@ function! ale#handlers#rust#HandleRustErrors(buffer, lines) abort endif if !empty(l:span) - call add(l:output, { + let l:output_line = { \ 'lnum': l:span.line_start, \ 'end_lnum': l:span.line_end, \ 'col': l:span.column_start, \ 'end_col': l:span.column_end-1, \ 'text': empty(l:span.label) ? l:error.message : printf('%s: %s', l:error.message, l:span.label), \ 'type': toupper(l:error.level[0]), - \}) + \} + + if has_key(l:error, 'rendered') && !empty(l:error.rendered) + let l:output_line.detail = l:error.rendered + endif + + call add(l:output, l:output_line) endif endfor endfor |