2020-04-20 20:15:43 +03:00
|
|
|
## Syntax highlighting for Autoconf.
|
2015-08-29 22:52:03 +03:00
|
|
|
|
2020-09-14 20:37:45 +03:00
|
|
|
## Original author: Benno Schulenberg
|
|
|
|
## License: GPL version 3 or newer
|
|
|
|
|
2018-02-07 13:25:46 +03:00
|
|
|
syntax autoconf "\.(ac|m4)$"
|
2016-05-25 23:13:50 +03:00
|
|
|
comment "#"
|
2015-08-29 22:52:03 +03:00
|
|
|
|
|
|
|
# Keywords:
|
2015-12-23 13:54:40 +03:00
|
|
|
color yellow "\<(if|test|then|elif|else|fi|for|in|do|done)\>"
|
2020-04-21 13:47:08 +03:00
|
|
|
color yellow "=|!=|&&|\|\|"
|
2015-08-29 22:52:03 +03:00
|
|
|
|
|
|
|
# Macros:
|
|
|
|
color cyan "\<[[:upper:]_[:digit:]]+\>"
|
|
|
|
|
|
|
|
# Version numbers:
|
|
|
|
color red "\<[-_.0-9]+\>"
|
|
|
|
|
|
|
|
# Strings:
|
2021-10-26 13:27:15 +03:00
|
|
|
color red ""[^"]*"|'[^']*'"
|
2015-08-29 22:52:03 +03:00
|
|
|
|
|
|
|
# Backticks:
|
|
|
|
color green "`[^`]*`"
|
|
|
|
|
|
|
|
# Error lines:
|
2021-04-27 12:18:41 +03:00
|
|
|
color brightred "^[[:blank:]]*\*\*\*.*"
|
2015-08-29 22:52:03 +03:00
|
|
|
|
|
|
|
# Brackets:
|
|
|
|
color magenta "\[|\]|\(|\)"
|
|
|
|
|
|
|
|
# Comments:
|
2015-12-23 13:54:40 +03:00
|
|
|
color blue "^[[:blank:]]*#.*" "\<dnl.*"
|
|
|
|
|
|
|
|
# Trailing whitespace:
|
|
|
|
color ,green "[[:space:]]+$"
|