annotate runtime/compiler/README.txt @ 18086:9d6832a5426f
v8.1.2038
patch 8.1.2038: has('vimscript-4') is always 0
Commit: https://github.com/vim/vim/commit/af9143833865a2d8311e57313023271720442f90
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 15 17:49:10 2019 +0200
patch 8.1.2038: has('vimscript-4') is always 0
Problem: has('vimscript-4') is always 0.
Solution: Add "vimscript-4" to the feature table. (Naruhiko Nishino,
closes #4941)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 15 Sep 2019 18:00:03 +0200 |
parents |
3fc0f57ecb91 |
children |
4027cefc2aab |
rev |
line source |
7
|
1 This directory contains Vim scripts to be used with a specific compiler.
|
|
2 They are used with the ":compiler" command.
|
|
3
|
|
4 These scripts usually set options, for example 'errorformat'.
|
|
5 See ":help write-compiler-plugin".
|
|
6
|
|
7 If you want to write your own compiler plugin, have a look at the other files
|
|
8 for how to do it, the format is simple.
|
|
9
|
|
10 If you think a compiler plugin you have written is useful for others, please
|
|
11 send it to Bram@vim.org.
|