KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vedit.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. /*************************************************************************************
  3. * vedit.php
  4. * --------
  5. * Author: Pauli Lindgren (pauli0212@yahoo.com)
  6. * Copyright: (c) 2009 Pauli Lindgren (http://koti.mbnet.fi/pkl/)
  7. * Release Version: 1.0.8.11
  8. * Date Started: 2009/12/16
  9. *
  10. * Vedit macro language language file for GeSHi.
  11. *
  12. * CHANGES
  13. * -------
  14. * 2009/12/16 (1.0.8.11)
  15. * - First Release
  16. *
  17. * TODO (updated 2009/12/16)
  18. * -------------------------
  19. * - Add keyword groups 2, 3 and 4.
  20. *
  21. *
  22. *************************************************************************************
  23. *
  24. * This file is part of GeSHi.
  25. *
  26. * GeSHi is free software; you can redistribute it and/or modify
  27. * it under the terms of the GNU General Public License as published by
  28. * the Free Software Foundation; either version 2 of the License, or
  29. * (at your option) any later version.
  30. *
  31. * GeSHi is distributed in the hope that it will be useful,
  32. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  33. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  34. * GNU General Public License for more details.
  35. *
  36. * You should have received a copy of the GNU General Public License
  37. * along with GeSHi; if not, write to the Free Software
  38. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  39. *
  40. ************************************************************************************/
  41. $language_data = array(
  42. 'LANG_NAME' => 'Vedit macro language',
  43. 'COMMENT_SINGLE' => array(1 => '//'),
  44. 'COMMENT_MULTI' => array(),
  45. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  46. 'QUOTEMARKS' => array('"', '\''),
  47. 'ESCAPE_CHAR' => '',
  48. 'KEYWORDS' => array(
  49. 1 => array(
  50. 'break', 'breakout', 'break_out', 'continue', 'do', 'else', 'for',
  51. 'goto', 'if', 'repeat', 'return', 'while'
  52. )
  53. ),
  54. 'SYMBOLS' => array(
  55. 1 => array(
  56. '(', ')', '{', '}', '[', ']', '+', '-', '*', '/', '%',
  57. '=', '<', '>', '!', '^', '&', '|', '?', ':', ';', ','
  58. )
  59. ),
  60. 'CASE_SENSITIVE' => array(
  61. GESHI_COMMENTS => false,
  62. 1 => false
  63. ),
  64. 'STYLES' => array(
  65. 'KEYWORDS' => array(
  66. 1 => 'color: #b1b100;'
  67. ),
  68. 'COMMENTS' => array(
  69. 1 => 'color: #666666; font-style: italic;',
  70. 'MULTI' => 'color: #666666; font-style: italic;'
  71. ),
  72. 'ESCAPE_CHAR' => array(
  73. 0 => 'color: #000099; font-weight: bold;'
  74. ),
  75. 'BRACKETS' => array(
  76. 0 => 'color: #009900;'
  77. ),
  78. 'STRINGS' => array(
  79. 0 => 'color: #0000ff;'
  80. ),
  81. 'NUMBERS' => array(
  82. 0 => 'color: #cc66cc;',
  83. ),
  84. 'METHODS' => array(
  85. 0 => 'color: #004000;'
  86. ),
  87. 'SYMBOLS' => array(
  88. 1 => 'color: #339933;'
  89. ),
  90. 'REGEXPS' => array(),
  91. 'SCRIPT' => array()
  92. ),
  93. 'URLS' => array(1 => ''),
  94. 'OOLANG' => false,
  95. 'OBJECT_SPLITTERS' => array(),
  96. 'REGEXPS' => array(),
  97. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  98. 'SCRIPT_DELIMITERS' => array(),
  99. 'HIGHLIGHT_STRICT_BLOCK' => array()
  100. );
  101. ?>