Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Use --parse-only by default with rustc. #1114

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion syntax_checkers/rust/rustc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let s:save_cpo = &cpo
set cpo&vim

function! SyntaxCheckers_rust_rustc_GetLocList() dict
let makeprg = self.makeprgBuild({ 'args': '--no-trans' })
let makeprg = self.makeprgBuild({ 'args': '--parse-only' })

let errorformat =
\ '%E%f:%l:%c: %\d%#:%\d%# %.%\{-}error:%.%\{-} %m,' .
Expand Down