We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0dd561 commit fb8ebf1Copy full SHA for fb8ebf1
runtime/compiler/rustc.vim
@@ -2,6 +2,7 @@
2
" Compiler: Rust Compiler
3
" Maintainer: Chris Morgan <[email protected]>
4
" Latest Revision: 2023-09-11
5
+" 2025 Nov 15 by Vim project: remove test for Vim patch 7.4.191
6
" For bugs, patches and license go to https://github.com/rust-lang/rust.vim
7
8
if exists("current_compiler")
@@ -17,11 +18,7 @@ set cpo&vim
17
18
if get(g:, 'rustc_makeprg_no_percent', 0)
19
CompilerSet makeprg=rustc
20
else
- if has('patch-7.4.191')
21
- CompilerSet makeprg=rustc\ \%:S
22
- else
23
- CompilerSet makeprg=rustc\ \"%\"
24
- endif
+ CompilerSet makeprg=rustc\ \%:S
25
endif
26
27
" New errorformat (after nightly 2016/08/10)
0 commit comments