annotate runtime/compiler/erlang.vim @ 17186:278583ff5e44
v8.1.1592
patch 8.1.1592: may start file dialog while exiting
commit https://github.com/vim/vim/commit/5c381eb9e72990e4153045f4911c59b9b2194edd
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jun 25 06:50:31 2019 +0200
patch 8.1.1592: may start file dialog while exiting
Problem: May start file dialog while exiting.
Solution: Ignore the "browse" modifier when exiting. (Ozaki Kiichi,
closes #4582
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 25 Jun 2019 07:00:04 +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
|