annotate runtime/syntax/bsdl.vim @ 33176:8ac10cee18f3
v9.0.1868
patch 9.0.1868: test_crash still fails for circle ci
Commit: https://github.com/vim/vim/commit/59adcb4c203371258c72e76011da93eac8540317
Author: Christian Brabandt <cb@256bit.org>
Date: Mon Sep 4 22:42:55 2023 +0200
patch 9.0.1868: test_crash still fails for circle ci
Problem: test_crash still fails for circle ci
Solution: give even more time to complete
Signed-off-by: Christian Brabandt <cb@256bit.org>
author |
Christian Brabandt <cb@256bit.org> |
date |
Mon, 04 Sep 2023 22:45:07 +0200 |
parents |
bceeded72898 |
children |
|
rev |
line source |
19721
|
1 " Vim syntax file
|
|
2 " Language: Boundary Scan Description Language (BSDL)
|
|
3 " Maintainer: Daniel Kho <daniel.kho@logik.haus>
|
|
4 " Last Changed: 2020 Mar 19 by Daniel Kho
|
|
5
|
|
6 " quit when a syntax file was already loaded
|
|
7 if exists("b:current_syntax")
|
|
8 finish
|
|
9 endif
|
|
10
|
|
11 " Read in VHDL syntax files
|
|
12 runtime! syntax/vhdl.vim
|
|
13 unlet b:current_syntax
|
|
14
|
|
15 let b:current_syntax = "bsdl"
|
|
16
|
|
17 " vim: ts=8
|