diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-24 02:40:41 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-24 02:48:01 +0100 |
commit | 83f18d2578288fe71fca409e4f03434346b0d5b7 (patch) | |
tree | 4d32a1e4dbb3f113ac08fc7ef664636d909df004 /lib/lexers/vhdl.tes | |
parent | fec93b9b0cc83dc1102c78c8bf1eacaf8763d9b8 (diff) | |
download | sciteco-83f18d2578288fe71fca409e4f03434346b0d5b7.tar.gz |
added new lexer configs auto-generated by scite2co.lua
* these are still not all languages supported by Scintilla.
scite2co.lua does not do a good job of generating styles when
SciTE's property files use hardcoded colors/fonts.
This commit only includes reasonably good conversion results.
The remaining languages need some additional manual labor.
* Even these lexers are not perfect and should be revised by comparing
them with SciTE's properties.
* So many lexers make the "lexer.auto" macro too slow.
We need some optimization. E.g. the search-command optimization
described in TODO, or an extended EN command for globbing manually
specified file names.
Diffstat (limited to 'lib/lexers/vhdl.tes')
-rw-r--r-- | lib/lexers/vhdl.tes | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/lexers/vhdl.tes b/lib/lexers/vhdl.tes new file mode 100644 index 0000000..1c64082 --- /dev/null +++ b/lib/lexers/vhdl.tes @@ -0,0 +1,42 @@ +! AUTO-GENERATED FROM SCITE PROPERTY SET ! + +@[lexer.test.vhdl]{ [_ + _.[vhd,vhdl]M[lexer.checkname] +]_ } + +@[lexer.set.vhdl]{ + ESSETLEXER,SCLEX_VHDL + 0ESSETKEYWORDS + access after alias all architecture array assert attribute begin block body + buffer bus case component configuration constant disconnect downto else elsif end + entity exit file for function generate generic group guarded if impure in inertial + inout is label library linkage literal loop map new next null of on open others + out package port postponed procedure process pure range record register reject + report return select severity shared signal subtype then to transport type + unaffected units until use variable wait when while with + 1ESSETKEYWORDS + abs and mod nand nor not or rem rol ror sla sll sra srl xnor xor + 2ESSETKEYWORDS + left right low high ascending image value pos val succ pred leftof rightof + base range reverse_range length delayed stable quiet transaction event active + last_event last_active last_value driving driving_value simple_name path_name + instance_name + 3ESSETKEYWORDS + now readline read writeline write endfile resolved to_bit to_bitvector + to_stdulogic to_stdlogicvector to_stdulogicvector to_x01 to_x01z to_UX01 rising_edge + falling_edge is_x shift_left shift_right rotate_left rotate_right resize to_integer + to_unsigned to_signed std_match to_01 + 4ESSETKEYWORDS + std ieee work standard textio std_logic_1164 std_logic_arith std_logic_misc + std_logic_signed std_logic_textio std_logic_unsigned numeric_bit numeric_std math_complex + math_real vital_primitives vital_timing + 5ESSETKEYWORDS + boolean bit character severity_level integer real time delay_length natural + positive string bit_vector file_open_kind file_open_status line text side width + std_ulogic std_ulogic_vector std_logic std_logic_vector X01 X01Z UX01 UX01Z unsigned + signed + :M[color.comment],1M[color.set] + :M[color.number],3M[color.set] + :M[color.string],4M[color.set] + :M[color.keyword],8M[color.set] +} |