mirror of
https://github.com/neovim/neovim.git
synced 2026-01-17 10:38:57 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
18 lines
387 B
VimL
18 lines
387 B
VimL
" Vim syntax file
|
|
" Language: Boundary Scan Description Language (BSDL)
|
|
" Maintainer: Daniel Kho <daniel.kho@logik.haus> (invalid)
|
|
" 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
|