1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-14 13:32:37 +03:00

highlight floating point numbers with exponent

Correct highlihgting for `0.38e-18` like numbers
This commit is contained in:
Andrey Orst 2019-03-13 17:01:17 +03:00 committed by GitHub
parent 47be98f1fc
commit e5558aee63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,7 +164,7 @@ evaluate-commands %sh{
}
# c specific
add-highlighter shared/c/code/numbers regex %{\b-?(0x[0-9a-fA-F]+|\d+)([uU][lL]{0,2}|[lL]{1,2}[uU]?|[fFdDiI])?|'((\\.)?|[^'\\])'} 0:value
add-highlighter shared/c/code/numbers regex %{\b-?(0x[0-9a-fA-F]+|\d+)([uU][lL]{0,2}|[lL]{1,2}[uU]?|[fFdDiI]|([eE][-+]?\d+))?|'((\\.)?|[^'\\])'} 0:value
evaluate-commands %sh{
# Grammar
keywords='asm break case continue default do else for goto if return