mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/rust.vim/compiler/cargo.vim

52 lines
1.5 KiB
VimL
Raw Normal View History

2016-02-05 02:52:39 -05:00
" Vim compiler file
" Compiler: Cargo Compiler
" Maintainer: Damien Radtke <damienradtke@gmail.com>
" Latest Revision: 2014 Sep 24
" For bugs, patches and license go to https://github.com/rust-lang/rust.vim
2016-02-05 02:52:39 -05:00
if exists('current_compiler')
finish
2016-02-05 02:52:39 -05:00
endif
runtime compiler/rustc.vim
let current_compiler = "cargo"
" vint: -ProhibitAbbreviationOption
let s:save_cpo = &cpo
set cpo&vim
" vint: +ProhibitAbbreviationOption
2016-02-05 02:52:39 -05:00
if exists(':CompilerSet') != 2
command -nargs=* CompilerSet setlocal <args>
2016-02-05 02:52:39 -05:00
endif
if exists('g:cargo_makeprg_params')
execute 'CompilerSet makeprg=cargo\ '.escape(g:cargo_makeprg_params, ' \|"').'\ $*'
2016-02-05 02:52:39 -05:00
else
CompilerSet makeprg=cargo\ $*
2016-02-05 02:52:39 -05:00
endif
augroup RustCargoQuickFixHooks
autocmd!
autocmd QuickFixCmdPre make call cargo#quickfix#CmdPre()
autocmd QuickFixCmdPost make call cargo#quickfix#CmdPost()
augroup END
" Ignore general cargo progress messages
CompilerSet errorformat+=
\%-G%\\s%#Downloading%.%#,
2022-10-15 15:05:32 -04:00
\%-G%\\s%#Checking%.%#,
\%-G%\\s%#Compiling%.%#,
\%-G%\\s%#Finished%.%#,
\%-G%\\s%#error:\ Could\ not\ compile\ %.%#,
\%-G%\\s%#To\ learn\ more\\,%.%#,
2022-10-15 15:05:32 -04:00
\%-G%\\s%#For\ more\ information\ about\ this\ error\\,%.%#,
\%-Gnote:\ Run\ with\ \`RUST_BACKTRACE=%.%#,
\%.%#panicked\ at\ \\'%m\\'\\,\ %f:%l:%c
2016-02-05 02:52:39 -05:00
" vint: -ProhibitAbbreviationOption
let &cpo = s:save_cpo
unlet s:save_cpo
" vint: +ProhibitAbbreviationOption
" vim: set et sw=4 sts=4 ts=8: