annotate runtime/compiler/erlang.vim @ 14710:b9a4e49a3f7c
v8.1.0367
patch 8.1.0367: getchar(1) no longer processes pending messages
commit https://github.com/vim/vim/commit/84d9390480548c8d711dd772cb162a91d0bb3c30
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 11 20:10:20 2018 +0200
patch 8.1.0367: getchar(1) no longer processes pending messages
Problem: getchar(1) no longer processes pending messages. (Yasuhiro
Matsumoto)
Solution: Call parse_queued_messages().
author |
Christian Brabandt <cb@256bit.org> |
date |
Tue, 11 Sep 2018 20:15:07 +0200 |
parents |
8dcf3ea92b63 |
children |
2704c4e3e20a |
rev |
line source |
3281
|
1 " Vim compiler file
|
3371
|
2 " Compiler: Erlang
|
|
3 " Maintainer: Dmitry Vasiliev <dima at hlabs dot org>
|
|
4 " Last Change: 2012-02-13
|
3281
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "erlang"
|
|
10
|
3371
|
11 CompilerSet makeprg=erlc\ -Wall\ %
|
|
12
|
|
13 CompilerSet errorformat=%f:%l:\ %m
|