annotate runtime/compiler/neato.vim @ 9806:108b62925cb0
v7.4.2178
commit https://github.com/vim/vim/commit/3a938383396d4ab352bbb4d806938302debdae2c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Aug 7 16:36:40 2016 +0200
patch 7.4.2178
Problem: No test for reading from stdin.
Solution: Add a test.
author |
Christian Brabandt <cb@256bit.org> |
date |
Sun, 07 Aug 2016 16:45:05 +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.$*\"
|