-
-
Save thermistor/a2fe8d3c86fff3685062903b5e34b845 to your computer and use it in GitHub Desktop.
source-highlight's language definition file for YAML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---/usr/share/source-highlight/lang.map.old | |
+++/usr/share/source-highlight/lang.map | |
@@ -169,3 +169,5 @@ | |
groovy = groovy.lang | |
json = json.lang | |
feature = feature.lang | |
+yaml = yaml.lang | |
+yml = yaml.lang |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# source-highlight's language definition file for YAML | |
include "script_comment.lang" | |
include "number.lang" | |
keyword = "true|false|null" | |
section start '^---' | |
(symbol,name,symbol) = `(^[[:blank:]-]*)([[:alnum:]_-]+)(:)` | |
symbol = '^[[:blank:]]*-' | |
# TODO: | |
# - heredoc | |
# - alias indicators | |
string delim "\"" "\"" escape "\\" | |
string delim "'" "'" escape "\\" | |
# vim: ft=conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment