Jython.props 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. # Defines the syntax highlighting for Jython
  2. #
  3. # Author: FracPete (fracpete at waikato dot ac dot nz)
  4. # Version: $Revision: 5293 $
  5. ########
  6. # Font #
  7. ########
  8. # the font name
  9. FontName=monospaced
  10. # the font size
  11. FontSize=12
  12. #############################################
  13. # Colors (R,G,B format can be used as well) #
  14. #############################################
  15. # the font color
  16. ForegroundColor=black
  17. # the background color
  18. BackgroundColor=white
  19. # the color for keywords
  20. KeywordColor=blue
  21. # the color for comments
  22. CommentColor=gray
  23. # the color for strings
  24. StringColor=red
  25. ##########
  26. # Syntax #
  27. ##########
  28. # whether the syntax highlighting etc is on or not (true|false)
  29. Syntax=true
  30. # the number of spaces to use for indentation instead of TAB
  31. Indentation=4
  32. # the number of characters that a single tab represents
  33. Tabs=4
  34. # whether to use blanks instead of tabs (true|false)
  35. UseBlanks=true
  36. # word delimiters
  37. Delimiters=;:{}()[]+-/%<=>!&|^~*
  38. # delimiter for quoted strings/characters
  39. QuoteDelimiters="'
  40. # the character to escape quotes
  41. QuoteEscape=\\
  42. # whether multi-line comments are enabled (true|false)
  43. MultiLineComment=true
  44. # the start delimiter of a multi-line comment
  45. MultiLineCommentStart="""
  46. # the end delimiter of a multi-line comment
  47. MultiLineCommentEnd="""
  48. # the start delimiter of a single-line comment
  49. SingleLineCommentStart=#
  50. # whether to add matching block end (true|false)
  51. AddMatchingBlockEnd=false
  52. # the start of a block (e.g., "opening bracket")
  53. BlockStart=
  54. # the end of a block (e.g., "closing bracket")
  55. BlockEnd=
  56. # whether the keywords are case-sensitive (true|false)
  57. CaseSensitive=true
  58. # the keywords
  59. Keywords=\
  60. and,\
  61. assert,\
  62. break,\
  63. class,\
  64. continue,\
  65. def,\
  66. del,\
  67. elif,\
  68. else,\
  69. except,\
  70. exec,\
  71. finally,\
  72. for,\
  73. from,\
  74. global,\
  75. if,\
  76. import,\
  77. in,\
  78. is,\
  79. lambda,\
  80. not,\
  81. or,\
  82. pass,\
  83. print,\
  84. raise,\
  85. return,\
  86. try,\
  87. while,\