Advertisement
Guest User

Untitled

a guest
May 29th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. # Moe editor default properties
  2.  
  3. ##
  4. ## Define the toolbar
  5. ##
  6.  
  7. toolbar = compile undo cut copy paste find close
  8.  
  9. # actions for toolbar commands (only needed when it differs from command name)
  10.  
  11. openAction = open-file
  12. cutAction = cut-to-clipboard
  13. copyAction = copy-to-clipboard
  14. pasteAction = paste-from-clipboard
  15. find-nextAction = find-next
  16.  
  17. ##
  18. ## Define the popup menu
  19. ##
  20.  
  21. popupmenu = fuck-you fuck-you fuck-you
  22.  
  23. ##
  24. ## Define the menus. Each menu gets a key, which is used afterwards to
  25. ## define the menu's details.
  26. ##
  27.  
  28. menubar = class edit tools option
  29.  
  30. # Actions for menus. Each value must be a defined moe action name. Each
  31. # action becomes an item in the menu. Use the minus sign (-) to create
  32. # a separator.
  33.  
  34. class = save reload - page-setup print - close
  35. edit = undo redo - cut-to-clipboard copy-to-clipboard paste-from-clipboard - indent-block deindent-block comment-block uncomment-block autoindent - insert-method add-javadoc
  36. tools = find find-next find-next-backward replace go-to-line - compile toggle-breakpoint - toggle-interface-view
  37. option = key-bindings preferences
  38.  
  39. # Syntax colour definitions
  40. # =========================
  41.  
  42. # Key to values
  43. # -------------
  44.  
  45. # comment Single line comments (//) and standard multi-line comments (/* */)
  46. # javadoc Multi-line javadoc comments (/** */)
  47. # keyword1 Standard Java keywords (e.g. abstract, final, do, if, else, new, catch etc.)
  48. # keyword2 Class creation keywords (package, import, class, interface, extends, implements)
  49. # keyword3 Remaining Java keywords (this, null, super, true, false)
  50. # primitive Java primitives (int, float, double, char)
  51. # string String literals (anything in "quotes")
  52. # label Labels for loops or in switch/case statements
  53. # invalid Unclosed string literals or other detected errors
  54. # other Anything else
  55. # background Editor background colour
  56.  
  57. # Any of the values above that are not defined are given the BlueJ default colours.
  58.  
  59. # Key to colours
  60. # --------------
  61.  
  62. # Each colour should be given a six digit hexadecimal value of the from rrggbb where
  63. # the pairs of digits refer to the red, green and blue values respectively.
  64.  
  65. comment = 75715e
  66. javadoc = 75715e
  67. stand-out = ee00bb
  68. keyword1 = f92672
  69. keyword2 = f92672
  70. keyword3 = 66d9ef
  71. primitive = 66d9ef
  72. string = e6db74
  73. label = 999999
  74.  
  75. invalid = ff3300
  76.  
  77. other = f8f8f2
  78. background = 272822
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement