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
| if exists("b:current_syntax") | |
| finish | |
| endif | |
| syntax region dtsComment start="/\*" end="\*/" | |
| syntax match dtsReference "&[[:alpha:][:digit:]_]\+" | |
| syntax region dtsBinaryProperty start="\[" end="\]" | |
| syntax match dtsStringProperty "\".*\"" | |
| syntax match dtsKeyword "/.*/" | |
| syntax match dtsLabel "^[[:space:]]*[[:alpha:][:digit:]_]\+:" |
NewerOlder