prism-q.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Prism.languages.q = {
  2. 'string': /"(?:\\.|[^"\\\r\n])*"/,
  3. 'comment': [
  4. // From http://code.kx.com/wiki/Reference/Slash:
  5. // When / is following a space (or a right parenthesis, bracket, or brace), it is ignored with the rest of the line.
  6. {
  7. pattern: /([\t )\]}])\/.*/,
  8. lookbehind: true,
  9. greedy: true
  10. },
  11. // From http://code.kx.com/wiki/Reference/Slash:
  12. // A line which has / as its first character and contains at least one other non-whitespace character is a whole-line comment and is ignored entirely.
  13. // A / on a line by itself begins a multiline comment which is terminated by the next \ on a line by itself.
  14. // If a / is not matched by a \, the multiline comment is unterminated and continues to end of file.
  15. // The / and \ must be the first char on the line, but may be followed by any amount of whitespace.
  16. {
  17. pattern: /(^|\r?\n|\r)\/[\t ]*(?:(?:\r?\n|\r)(?:.*(?:\r?\n|\r(?!\n)))*?(?:\\(?=[\t ]*(?:\r?\n|\r))|$)|\S.*)/,
  18. lookbehind: true,
  19. greedy: true
  20. },
  21. // From http://code.kx.com/wiki/Reference/Slash:
  22. // A \ on a line by itself with no preceding matching / will comment to end of file.
  23. {
  24. pattern: /^\\[\t ]*(?:\r?\n|\r)[\s\S]+/m,
  25. greedy: true
  26. },
  27. {
  28. pattern: /^#!.+/m,
  29. greedy: true
  30. }
  31. ],
  32. 'symbol': /`(?::\S+|[\w.]*)/,
  33. 'datetime': {
  34. pattern: /0N[mdzuvt]|0W[dtz]|\d{4}\.\d\d(?:m|\.\d\d(?:T(?:\d\d(?::\d\d(?::\d\d(?:[.:]\d\d\d)?)?)?)?)?[dz]?)|\d\d:\d\d(?::\d\d(?:[.:]\d\d\d)?)?[uvt]?/,
  35. alias: 'number'
  36. },
  37. // The negative look-ahead prevents bad highlighting
  38. // of verbs 0: and 1:
  39. 'number': /\b(?![01]:)(?:0N[hje]?|0W[hj]?|0[wn]|0x[\da-fA-F]+|\d+(?:\.\d*)?(?:e[+-]?\d+)?[hjfeb]?)/,
  40. 'keyword': /\\\w+\b|\b(?:abs|acos|aj0?|all|and|any|asc|asin|asof|atan|attr|avgs?|binr?|by|ceiling|cols|cor|cos|count|cov|cross|csv|cut|delete|deltas|desc|dev|differ|distinct|div|do|dsave|ej|enlist|eval|except|exec|exit|exp|fby|fills|first|fkeys|flip|floor|from|get|getenv|group|gtime|hclose|hcount|hdel|hopen|hsym|iasc|identity|idesc|if|ij|in|insert|inter|inv|keys?|last|like|list|ljf?|load|log|lower|lsq|ltime|ltrim|mavg|maxs?|mcount|md5|mdev|med|meta|mins?|mmax|mmin|mmu|mod|msum|neg|next|not|null|or|over|parse|peach|pj|plist|prds?|prev|prior|rand|rank|ratios|raze|read0|read1|reciprocal|reval|reverse|rload|rotate|rsave|rtrim|save|scan|scov|sdev|select|set|setenv|show|signum|sin|sqrt|ssr?|string|sublist|sums?|sv|svar|system|tables|tan|til|trim|txf|type|uj|ungroup|union|update|upper|upsert|value|var|views?|vs|wavg|where|while|within|wj1?|wsum|ww|xasc|xbar|xcols?|xdesc|xexp|xgroup|xkey|xlog|xprev|xrank)\b/,
  41. 'adverb': {
  42. pattern: /['\/\\]:?|\beach\b/,
  43. alias: 'function'
  44. },
  45. 'verb': {
  46. pattern: /(?:\B\.\B|\b[01]:|<[=>]?|>=?|[:+\-*%,!?~=|$&#@^]):?|\b_\b:?/,
  47. alias: 'operator'
  48. },
  49. 'punctuation': /[(){}\[\];.]/
  50. };