language-vhdl
language-vhdl copied to clipboard
VHDL language support in Atom
Like "end loop;" the "end block;" statement is valid. This is highlighted as a syntax error but correct according to the VHDL standard.
I just want to make you aware that I am working on an open source VHDL parser + language server https://github.com/kraigher/rust_hdl/ it already has enough parsing completeness to parse the...
Hi! There are some things from vhdl20028 that would be interesting to add, such as the comment block. ```{vhdl} /* Block comment. */ ```
this should fix #12

I have added more snippets to cover the most used syntax of vhdl
First of all thanks for the package, I've been using it for awhile and it's great! I was wondering if it would be possible to add some "smart" copy-pasting options....
See pic. After architecture block ends, inside begin block. See line 201 on screenshot where `mux_2to1_4b` isn't highlighted. 
'\\' must not be interpreted as an escape character inside a string in VHDL. E.g. when defining: variable s : string := "test\\"; The second " is not recognized as...
Hi, We have some coding standards which say (for example) constants have a postfix of _C. I want to highlight those as well. I got it working with adding: ```...