Mercurial > vim
annotate runtime/compiler/onsgmls.vim @ 13483:f7ef5d579758 v8.0.1615
patch 8.0.1615: term_dumpload() does not use the right colors
commit https://github.com/vim/vim/commit/52acb110ac025b57dad5f5ec6004abbe4726a718
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 18 19:20:22 2018 +0100
patch 8.0.1615: term_dumpload() does not use the right colors
Problem: term_dumpload() does not use the right colors.
Solution: Initialize colors when not using create_vterm().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 18 Mar 2018 19:30:06 +0100 |
parents | 3fc0f57ecb91 |
children | 2704c4e3e20a |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
2 " Compiler: onsgmls | |
3 " Maintainer: Robert Rowsome <rowsome@wam.umd.edu> | |
4 " Last Change: 2004 Mar 27 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "onsgmls" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo-=C | |
17 | |
18 CompilerSet makeprg=onsgmls\ -s\ % | |
19 | |
20 CompilerSet errorformat=onsgmls:%f:%l:%c:%t:%m, | |
21 \onsgmls:%f:%l:%c:%m | |
22 | |
23 let &cpo = s:cpo_save | |
24 unlet s:cpo_save |