|
Revision 427, 1.0 kB
(checked in by SnakE, 4 years ago)
|
SciLexer?: D lexer for Scintilla
|
| Line | |
|---|
| 1 |
D syntax highlight for Scintilla |
|---|
| 2 |
Copyright 2008 Sergey "SnakE" Gromov |
|---|
| 3 |
|
|---|
| 4 |
Distributed under the Boost Software License, Version 1.0. (See |
|---|
| 5 |
accompanying file LICENSE_1_0.txt or copy at |
|---|
| 6 |
http://www.boost.org/LICENSE_1_0.txt) |
|---|
| 7 |
|
|---|
| 8 |
Feature list: |
|---|
| 9 |
|
|---|
| 10 |
* Recognizes all kinds of D numbers, including hex floats. |
|---|
| 11 |
* Can recognize errors in many numeric literals. |
|---|
| 12 |
* Supports all types of D2 strings, including hex strings, delimited |
|---|
| 13 |
strings with nesting delimiters, and heredoc strings. |
|---|
| 14 |
* Recognizes escape sequences in strings, character literals and as |
|---|
| 15 |
stand-alone escape strings. |
|---|
| 16 |
* Recognizes errors in strings like unsupported or incomplete escape |
|---|
| 17 |
sequences, invalid chars in hex strings, bad chars in heredoc string |
|---|
| 18 |
delimiters, or trailing chars after the end of a delimited string. |
|---|
| 19 |
* Supports EOL, stream and nesting comments. |
|---|
| 20 |
* Recognizes DDOC comments. |
|---|
| 21 |
* Recognizes DDOC section names and macros. |
|---|
| 22 |
* Recognizes macros lacking a closing bracket. |
|---|
| 23 |
* Supports code folding. |
|---|