diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 21:26:36 -0400 |
|---|---|---|
| committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 21:31:28 -0400 |
| commit | c287e734f10e074c70276fa74e8a938466018f4b (patch) | |
| tree | 50e7ae1c4da146a1c92d5c8dd3207766abdab8fe /runtime/syntax/bsdl.vim | |
| parent | e7f6c520141c104960790d9bb2e52260ba959b76 (diff) | |
| download | rneovim-c287e734f10e074c70276fa74e8a938466018f4b.tar.gz rneovim-c287e734f10e074c70276fa74e8a938466018f4b.tar.bz2 rneovim-c287e734f10e074c70276fa74e8a938466018f4b.zip | |
vim-patch:ff78155aa175
Update runtime files
https://github.com/vim/vim/commit/ff78155aa1755aced96a3b343e81939c94aac721
Omit menu_info().
Diffstat (limited to 'runtime/syntax/bsdl.vim')
| -rw-r--r-- | runtime/syntax/bsdl.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/runtime/syntax/bsdl.vim b/runtime/syntax/bsdl.vim new file mode 100644 index 0000000000..75c69558e5 --- /dev/null +++ b/runtime/syntax/bsdl.vim @@ -0,0 +1,17 @@ +" Vim syntax file +" Language: Boundary Scan Description Language (BSDL) +" Maintainer: Daniel Kho <daniel.kho@logik.haus> +" Last Changed: 2020 Mar 19 by Daniel Kho + +" quit when a syntax file was already loaded +if exists("b:current_syntax") + finish +endif + +" Read in VHDL syntax files +runtime! syntax/vhdl.vim +unlet b:current_syntax + +let b:current_syntax = "bsdl" + +" vim: ts=8 |