comparison runtime/syntax/vhdl.vim @ 3312:b7811ab264bf v7.3.423

updated for version 7.3.423 Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
author Bram Moolenaar <bram@vim.org>
date Sat, 04 Feb 2012 21:59:01 +0100
parents 7bc41231fbc7
children 9cb3a75a20b9
comparison
equal deleted inserted replaced
3311:54d1536a1c8b 3312:b7811ab264bf
1 " Vim syntax file 1 " Vim syntax file
2 " Language: VHDL 2 " Language: VHDL
3 " Maintainer: Czo <Olivier.Sirol@lip6.fr> 3 " Maintainer: Czo <Olivier.Sirol@lip6.fr>
4 " Credits: Stephan Hegel <stephan.hegel@snc.siemens.com.cn> 4 " Credits: Stephan Hegel <stephan.hegel@snc.siemens.com.cn>
5 " Last Changed: 2012 Feb 03 by Thilo Six
5 " $Id: vhdl.vim,v 1.1 2004/06/13 15:34:56 vimboss Exp $ 6 " $Id: vhdl.vim,v 1.1 2004/06/13 15:34:56 vimboss Exp $
6 7
7 " VHSIC Hardware Description Language 8 " VHSIC Hardware Description Language
8 " Very High Scale Integrated Circuit 9 " Very High Scale Integrated Circuit
9 10
12 if version < 600 13 if version < 600
13 syntax clear 14 syntax clear
14 elseif exists("b:current_syntax") 15 elseif exists("b:current_syntax")
15 finish 16 finish
16 endif 17 endif
18
19 let s:cpo_save = &cpo
20 set cpo&vim
17 21
18 " This is not VHDL. I use the C-Preprocessor cpp to generate different binaries 22 " This is not VHDL. I use the C-Preprocessor cpp to generate different binaries
19 " from one VHDL source file. Unfortunately there is no preprocessor for VHDL 23 " from one VHDL source file. Unfortunately there is no preprocessor for VHDL
20 " available. If you don't like this, please remove the following lines. 24 " available. If you don't like this, please remove the following lines.
21 syn match cDefine "^#ifdef[ ]\+[A-Za-z_]\+" 25 syn match cDefine "^#ifdef[ ]\+[A-Za-z_]\+"
179 delcommand HiLink 183 delcommand HiLink
180 endif 184 endif
181 185
182 let b:current_syntax = "vhdl" 186 let b:current_syntax = "vhdl"
183 187
188 let &cpo = s:cpo_save
189 unlet s:cpo_save
184 " vim: ts=8 190 " vim: ts=8