annotate runtime/syntax/bsdl.vim @ 31635:5c1b7a87466e
v9.0.1150
patch 9.0.1150: :interface is not implemented yet
Commit: https://github.com/vim/vim/commit/554d0313022c3977c71f7dcbc5c841ef43d988a6
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 5 19:59:18 2023 +0000
patch 9.0.1150: :interface is not implemented yet
Problem: :interface is not implemented yet.
Solution: Implement the basics of :interface.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 05 Jan 2023 21:00:06 +0100 |
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
|