Skip to content

Commit 3f3c898

Browse files
committed
Add SyntasticInfo if exists to the output of RustInfo
1 parent f1abff0 commit 3f3c898

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

autoload/rust/debugging.vim

+6
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ function! rust#debugging#Info() abort
7171
echo l:output
7272

7373
version
74+
75+
if exists(":SyntasticInfo")
76+
echo "----"
77+
echo "Info from Syntastic:"
78+
execute "SyntasticInfo"
79+
endif
7480
endfunction
7581

7682
function! rust#debugging#InfoToClipboard() abort

0 commit comments

Comments
 (0)