Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: Dylan |
| 3 | " Authors: Justus Pendleton <justus@acm.org> |
| 4 | " Brent A. Fulgham <bfulgham@debian.org> |
| 5 | " Last Change: Fri Sep 29 13:45:55 PDT 2000 |
| 6 | " |
| 7 | " This syntax file is based on the Haskell, Perl, Scheme, and C |
| 8 | " syntax files. |
| 9 | |
| 10 | " Part 1: Syntax definition |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 11 | " quit when a syntax file was already loaded |
| 12 | if exists("b:current_syntax") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 13 | finish |
| 14 | endif |
| 15 | |
| 16 | syn case ignore |
| 17 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 18 | setlocal lisp |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 19 | |
| 20 | " Highlight special characters (those that have backslashes) differently |
| 21 | syn match dylanSpecial display contained "\\\(x\x\+\|\o\{1,3}\|.\|$\)" |
| 22 | |
| 23 | " Keywords |
| 24 | syn keyword dylanBlock afterwards begin block cleanup end |
| 25 | syn keyword dylanClassMods abstract concrete primary inherited virtual |
| 26 | syn keyword dylanException exception handler signal |
| 27 | syn keyword dylanParamDefs method class function library macro interface |
| 28 | syn keyword dylanSimpleDefs constant variable generic primary |
| 29 | syn keyword dylanOther above below from by in instance local slot subclass then to |
| 30 | syn keyword dylanConditional if when select case else elseif unless finally otherwise then |
| 31 | syn keyword dylanRepeat begin for until while from to |
| 32 | syn keyword dylanStatement define let |
| 33 | syn keyword dylanImport use import export exclude rename create |
| 34 | syn keyword dylanMiscMods open sealed domain singleton sideways inline functional |
| 35 | |
| 36 | " Matching rules for special forms |
| 37 | syn match dylanOperator "\s[-!%&\*\+/=\?@\\^|~:]\+[-#!>%&:\*\+/=\?@\\^|~]*" |
| 38 | syn match dylanOperator "\(\<[A-Z][a-zA-Z0-9_']*\.\)\=:[-!#$%&\*\+./=\?@\\^|~:]*" |
| 39 | " Numbers |
| 40 | syn match dylanNumber "\<[0-9]\+\>\|\<0[xX][0-9a-fA-F]\+\>\|\<0[oO][0-7]\+\>" |
| 41 | syn match dylanNumber "\<[0-9]\+\.[0-9]\+\([eE][-+]\=[0-9]\+\)\=\>" |
| 42 | " Booleans |
| 43 | syn match dylanBoolean "#t\|#f" |
| 44 | " Comments |
| 45 | syn match dylanComment "//.*" |
| 46 | syn region dylanComment start="/\*" end="\*/" |
| 47 | " Strings |
| 48 | syn region dylanString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=dySpecial |
| 49 | syn match dylanCharacter "'[^\\]'" |
| 50 | " Constants, classes, and variables |
| 51 | syn match dylanConstant "$\<[a-zA-Z0-9\-]\+\>" |
| 52 | syn match dylanClass "<\<[a-zA-Z0-9\-]\+\>>" |
| 53 | syn match dylanVariable "\*\<[a-zA-Z0-9\-]\+\>\*" |
| 54 | " Preconditions |
| 55 | syn region dylanPrecondit start="^\s*#\s*\(if\>\|else\>\|endif\>\)" skip="\\$" end="$" |
| 56 | |
| 57 | " These appear at the top of files (usually). I like to highlight the whole line |
| 58 | " so that the definition stands out. They should probably really be keywords, but they |
| 59 | " don't generally appear in the middle of a line of code. |
| 60 | syn region dylanHeader start="^[Mm]odule:" end="^$" |
| 61 | |
| 62 | " Define the default highlighting. |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 63 | " Only when an item doesn't have highlighting yet |
| 64 | command -nargs=+ HiLink hi def link <args> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 65 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 66 | HiLink dylanBlock PreProc |
| 67 | HiLink dylanBoolean Boolean |
| 68 | HiLink dylanCharacter Character |
| 69 | HiLink dylanClass Structure |
| 70 | HiLink dylanClassMods StorageClass |
| 71 | HiLink dylanComment Comment |
| 72 | HiLink dylanConditional Conditional |
| 73 | HiLink dylanConstant Constant |
| 74 | HiLink dylanException Exception |
| 75 | HiLink dylanHeader Macro |
| 76 | HiLink dylanImport Include |
| 77 | HiLink dylanLabel Label |
| 78 | HiLink dylanMiscMods StorageClass |
| 79 | HiLink dylanNumber Number |
| 80 | HiLink dylanOther Keyword |
| 81 | HiLink dylanOperator Operator |
| 82 | HiLink dylanParamDefs Keyword |
| 83 | HiLink dylanPrecondit PreCondit |
| 84 | HiLink dylanRepeat Repeat |
| 85 | HiLink dylanSimpleDefs Keyword |
| 86 | HiLink dylanStatement Macro |
| 87 | HiLink dylanString String |
| 88 | HiLink dylanVariable Identifier |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 89 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 90 | delcommand HiLink |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 91 | |
| 92 | let b:current_syntax = "dylan" |
| 93 | |
| 94 | " vim:ts=8 |