annotate runtime/compiler/neato.vim @ 28333:04310f81143d
v8.2.4692
patch 8.2.4692: no test for what 8.2.4691 fixes
Commit: https://github.com/vim/vim/commit/0f68e6c07aaf62c034a242f183b93c1bb44e7f93
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Apr 5 13:17:01 2022 +0100
patch 8.2.4692: no test for what 8.2.4691 fixes
Problem: No test for what 8.2.4691 fixes.
Solution: Add a test. Use a more generic sotlution. (closes https://github.com/vim/vim/issues/10090)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 05 Apr 2022 14:30:03 +0200 |
parents |
3fc0f57ecb91 |
children |
80a9b43d299b |
rev |
line source |
7
|
1 " Vim compiler file
|
|
2 " Compiler: ATT neato
|
|
3 " Maintainer: Marcos Macedo <bar4ka@bol.com.br>
|
|
4 " Last Change: 2004 May 16
|
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "neato"
|
|
10
|
|
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
12 command -nargs=* CompilerSet setlocal <args>
|
|
13 endif
|
|
14
|
|
15 CompilerSet makeprg=neato\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
|