redcar 0.8.1 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. data/CHANGES +41 -1
  2. data/README.md +1 -1
  3. data/Rakefile +5 -6
  4. data/lib/plugin_manager/lib/plugin_manager.rb +1 -2
  5. data/lib/redcar.rb +19 -14
  6. data/lib/redcar/installer.rb +21 -17
  7. data/lib/redcar/runner.rb +10 -7
  8. data/lib/redcar/usage.rb +1 -0
  9. data/lib/redcar_quick_start.rb +8 -12
  10. data/lib/regex_replace.rb +3 -3
  11. data/plugins/application/features/step_definitions/menu_steps.rb +10 -0
  12. data/plugins/application/features/step_definitions/speedbar_steps.rb +8 -2
  13. data/plugins/application/features/step_definitions/tree_steps.rb +48 -6
  14. data/plugins/application/features/step_definitions/window_steps.rb +9 -4
  15. data/plugins/application/features/support/env.rb +20 -1
  16. data/plugins/application/features/support/fake_event.rb +14 -0
  17. data/plugins/application/lib/application.rb +29 -12
  18. data/plugins/application/lib/application/dialogs/filter_list_dialog.rb +19 -0
  19. data/plugins/application/lib/application/speedbar.rb +23 -17
  20. data/plugins/application/lib/application/tab.rb +20 -15
  21. data/plugins/application/lib/application/treebook.rb +10 -7
  22. data/plugins/application/lib/application/window.rb +1 -1
  23. data/plugins/application/plugin.rb +1 -1
  24. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +4 -4
  25. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +15 -4
  26. data/plugins/application_swt/lib/application_swt/icon.rb +3 -5
  27. data/plugins/application_swt/lib/application_swt/notebook/tab_drag_and_drop_listener.rb +4 -4
  28. data/plugins/application_swt/lib/application_swt/notebook/tab_transfer.rb +5 -5
  29. data/plugins/application_swt/lib/application_swt/speedbar.rb +34 -120
  30. data/plugins/application_swt/lib/application_swt/speedbar/button_item.rb +20 -0
  31. data/plugins/application_swt/lib/application_swt/speedbar/combo_item.rb +38 -0
  32. data/plugins/application_swt/lib/application_swt/speedbar/label_item.rb +15 -0
  33. data/plugins/application_swt/lib/application_swt/speedbar/slider_item.rb +32 -0
  34. data/plugins/application_swt/lib/application_swt/speedbar/text_box_item.rb +36 -0
  35. data/plugins/application_swt/lib/application_swt/speedbar/toggle_item.rb +29 -0
  36. data/plugins/application_swt/lib/application_swt/tab.rb +1 -3
  37. data/plugins/application_swt/lib/application_swt/toolbar.rb +19 -20
  38. data/plugins/application_swt/lib/application_swt/treebook.rb +24 -9
  39. data/plugins/application_swt/lib/application_swt/window.rb +110 -98
  40. data/plugins/application_swt/lib/swt/vtab_folder.rb +77 -32
  41. data/plugins/application_swt/lib/swt/vtab_item.rb +9 -0
  42. data/plugins/application_swt/lib/swt/vtab_label.rb +63 -23
  43. data/plugins/application_swt/plugin.rb +1 -1
  44. data/plugins/clipboard-viewer/lib/clipboard_viewer/clipboard_bar.rb +2 -2
  45. data/plugins/comment/features/line_comment.feature +116 -4
  46. data/plugins/comment/lib/comment.rb +18 -16
  47. data/plugins/connection_manager/lib/connection_manager/commands.rb +1 -1
  48. data/plugins/connection_manager/lib/connection_manager/private_key_store.rb +5 -3
  49. data/plugins/declarations/lib/declarations.rb +1 -1
  50. data/plugins/declarations/lib/declarations/parser.rb +68 -20
  51. data/plugins/document_search/features/replace.feature +18 -0
  52. data/plugins/document_search/lib/document_search.rb +37 -54
  53. data/plugins/document_search/lib/document_search/replace_all_command.rb +27 -0
  54. data/plugins/document_search/lib/document_search/replace_command.rb +38 -0
  55. data/plugins/document_search/lib/document_search/replace_next_command.rb +27 -0
  56. data/plugins/document_search/lib/document_search/search_and_replace.rb +17 -24
  57. data/plugins/edit_view/features/step_definitions/editing_steps.rb +4 -4
  58. data/plugins/edit_view/features/step_definitions/tab_steps.rb +9 -0
  59. data/plugins/edit_view/features/step_definitions/window_steps.rb +0 -12
  60. data/plugins/edit_view/lib/edit_view/document.rb +2 -0
  61. data/plugins/edit_view/lib/edit_view/document/command.rb +8 -8
  62. data/plugins/edit_view/lib/edit_view/edit_tab.rb +21 -7
  63. data/plugins/edit_view/lib/edit_view/select_font_dialog.rb +6 -0
  64. data/plugins/edit_view/lib/edit_view/select_theme_dialog.rb +6 -0
  65. data/plugins/edit_view_swt/lib/edit_view_swt.rb +92 -43
  66. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +17 -4
  67. data/plugins/find-in-project/lib/find_in_project.rb +1 -4
  68. data/plugins/find-in-project/lib/find_in_project/commands.rb +0 -14
  69. data/plugins/find-in-project/lib/find_in_project/controllers.rb +12 -0
  70. data/plugins/find-in-project/lib/find_in_project/views/index.html.erb +5 -0
  71. data/plugins/groovy/features/fixtures/test.groovy +0 -0
  72. data/plugins/groovy/features/step_definitions/groovy_steps.rb +27 -0
  73. data/plugins/groovy/features/support/env.rb +27 -0
  74. data/plugins/groovy/features/syntax_check_groovy.feature +72 -0
  75. data/plugins/groovy/lib/syntax_check/groovy.rb +76 -0
  76. data/plugins/groovy/plugin.rb +7 -0
  77. data/plugins/help/lib/help.rb +28 -4
  78. data/plugins/help/lib/help/help_tab.rb +11 -0
  79. data/plugins/help/lib/help/view_controller.rb +25 -0
  80. data/plugins/help/plugin.rb +2 -1
  81. data/plugins/{view_shortcuts → help}/views/default.css +0 -0
  82. data/plugins/{view_shortcuts → help}/views/index.html.erb +1 -1
  83. data/plugins/{view_shortcuts → help}/views/redcar_small_icon.png +0 -0
  84. data/plugins/html_view/features/browser_bar.feature +47 -0
  85. data/plugins/html_view/features/fixtures/other.html +1 -0
  86. data/plugins/html_view/features/fixtures/sample.html +1 -0
  87. data/plugins/html_view/features/step_definitions/html_view_steps.rb +45 -5
  88. data/plugins/html_view/features/support/env.rb +26 -0
  89. data/plugins/html_view/features/web_preview.feature +21 -0
  90. data/plugins/html_view/lib/html_controller.rb +5 -5
  91. data/plugins/html_view/lib/html_view.rb +62 -10
  92. data/plugins/{web_bookmarks/lib/web_bookmarks → html_view/lib/html_view}/browser_bar.rb +32 -20
  93. data/plugins/html_view/lib/html_view/commands.rb +64 -0
  94. data/plugins/{web_bookmarks/lib/web_bookmarks/view_controller.rb → html_view/lib/html_view/default_controller.rb} +7 -6
  95. data/plugins/html_view/lib/html_view/html_tab.rb +17 -6
  96. data/plugins/html_view/plugin.rb +3 -3
  97. data/plugins/{web_bookmarks → html_view}/views/index.html.erb +0 -0
  98. data/plugins/javascript/features/fixtures/test.js +0 -0
  99. data/plugins/javascript/features/support/env.rb +4 -0
  100. data/plugins/javascript/features/syntax_check_javascript.feature +27 -0
  101. data/plugins/javascript/lib/syntax_check/javascript.rb +52 -0
  102. data/plugins/javascript/plugin.rb +7 -0
  103. data/plugins/javascript/vendor/jslint.js +539 -0
  104. data/plugins/macros/lib/macros/commands.rb +3 -3
  105. data/plugins/open_default_app/lib/open_default_app.rb +29 -3
  106. data/plugins/open_default_app/plugin.rb +1 -1
  107. data/plugins/outline_view/features/outline_view.feature +79 -0
  108. data/plugins/outline_view/features/step_definitions/outline_steps.rb +45 -0
  109. data/plugins/outline_view/lib/outline_view.rb +1 -1
  110. data/plugins/outline_view/spec/fixtures/some_project/javascript.js +10 -0
  111. data/plugins/outline_view/spec/fixtures/some_project/nothing_to_see.rb +0 -0
  112. data/plugins/outline_view/spec/fixtures/some_project/one_lonely_class.rb +2 -0
  113. data/plugins/outline_view/spec/fixtures/some_project/similar_names.rb +18 -0
  114. data/plugins/outline_view/spec/fixtures/some_project/something_fancy.rb +736 -0
  115. data/plugins/outline_view/spec/fixtures/some_project/trailing_space.rb +5 -0
  116. data/plugins/outline_view_swt/lib/outline_view_swt.rb +17 -19
  117. data/plugins/pair_highlighter/lib/pair_highlighter/document_controller.rb +1 -4
  118. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +12 -3
  119. data/plugins/project/features/close_directory_tree.feature +27 -0
  120. data/plugins/project/features/highlight_focussed_tab.feature +45 -1
  121. data/plugins/project/features/open_and_save_files.feature +33 -0
  122. data/plugins/project/features/open_directory_tree.feature +37 -11
  123. data/plugins/project/features/step_definitions/directory_steps.rb +1 -1
  124. data/plugins/project/features/step_definitions/drb_steps.rb +40 -0
  125. data/plugins/project/features/support/env.rb +17 -0
  126. data/plugins/project/lib/project.rb +12 -2
  127. data/plugins/project/lib/project/commands.rb +101 -99
  128. data/plugins/project/lib/project/drb_service.rb +55 -65
  129. data/plugins/project/lib/project/manager.rb +29 -4
  130. data/plugins/project/lib/project/project_tree_controller.rb +24 -0
  131. data/plugins/project/lib/project/support/trash.rb +1 -0
  132. data/plugins/redcar/redcar.rb +100 -37
  133. data/plugins/redcar_debug/lib/redcar_debug.rb +3 -3
  134. data/plugins/repl/features/step_definitions/repl_steps.rb +3 -0
  135. data/plugins/repl/lib/repl.rb +4 -11
  136. data/plugins/repl/lib/repl/repl_tab.rb +26 -0
  137. data/plugins/ruby/features/fixtures/test.rb +0 -0
  138. data/plugins/ruby/features/support/env.rb +4 -0
  139. data/plugins/ruby/features/syntax_check_ruby.feature +25 -0
  140. data/plugins/runnables/features/command_tree.feature +28 -0
  141. data/plugins/runnables/lib/runnables.rb +1 -0
  142. data/plugins/runnables/lib/runnables/commands.rb +4 -4
  143. data/plugins/runnables/lib/runnables/output_processor.rb +5 -5
  144. data/plugins/runnables/lib/runnables/tree_mirror/tree_controller.rb +2 -7
  145. data/plugins/runnables/lib/runnables/tree_mirror/tree_mirror.rb +13 -8
  146. data/plugins/scm_git/lib/scm_git/change.rb +5 -5
  147. data/plugins/strip_trailing_spaces/features/fixtures/test.txt +3 -0
  148. data/plugins/strip_trailing_spaces/features/strip_trailing_spaces.feature +34 -0
  149. data/plugins/strip_trailing_spaces/lib/strip_trailing_spaces.rb +3 -38
  150. data/plugins/swt/lib/swt.rb +5 -13
  151. data/plugins/swt/lib/swt/full_swt.rb +15 -13
  152. data/plugins/syntax_check/features/step_definitions/syntax_check_steps.rb +7 -0
  153. data/plugins/syntax_check/lib/syntax_check.rb +21 -3
  154. data/plugins/syntax_check/lib/syntax_check/error.rb +4 -3
  155. data/plugins/task_manager/lib/task_manager.rb +1 -1
  156. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Preferences/Autocompletions.tmPreferences +345 -0
  157. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Preferences/Symbol List Target.tmPreferences +22 -0
  158. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Snippets/Doc Banner.tmSnippet +20 -0
  159. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Syntaxes/Ant.tmLanguage +247 -0
  160. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/info.plist +55 -0
  161. data/plugins/textmate/vendor/redcar-bundles/Bundles/RedcarRepl.tmbundle/Syntaxes/GroovyRepl.plist +40 -0
  162. data/plugins/textmate/vendor/redcar-bundles/Bundles/RedcarRepl.tmbundle/info.plist +1 -1
  163. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +0 -1
  164. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Sass.tmbundle/Syntaxes/Ruby Sass.tmLanguage +626 -0
  165. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Sass.tmbundle/info.plist +16 -0
  166. data/plugins/todo_list/features/support/env.rb +8 -0
  167. data/plugins/todo_list/features/todo_list.feature +26 -0
  168. data/plugins/todo_list/lib/todo_list.rb +1 -0
  169. data/plugins/todo_list/lib/todo_list/file_parser.rb +23 -19
  170. data/plugins/todo_list/lib/todo_list/todo_controller.rb +60 -100
  171. data/plugins/todo_list/spec/fixtures/project/FIXME.file +3 -0
  172. data/plugins/todo_list/spec/fixtures/project/NOTE.ignored.file +1 -0
  173. data/plugins/todo_list/spec/fixtures/project/OPTIMIZE_colon.file +1 -0
  174. data/plugins/todo_list/spec/fixtures/project/XXX.ignored +1 -0
  175. data/plugins/todo_list/spec/fixtures/project/ignored_directory/TODO.file +2 -0
  176. data/plugins/todo_list/spec/fixtures/settings.rb +11 -0
  177. data/plugins/todo_list/spec/spec_helper.rb +6 -0
  178. data/plugins/todo_list/spec/todo_list/file_parser_spec.rb +35 -0
  179. data/plugins/tree/lib/tree.rb +1 -0
  180. data/plugins/tree/lib/tree/command.rb +5 -0
  181. data/plugins/web_bookmarks/features/bookmark.feature +37 -0
  182. data/plugins/web_bookmarks/features/fixtures/other.html +1 -0
  183. data/plugins/web_bookmarks/features/fixtures/sample.html +1 -0
  184. data/plugins/web_bookmarks/features/step_definitions/web_steps.rb +4 -0
  185. data/plugins/web_bookmarks/features/support/env.rb +26 -0
  186. data/plugins/web_bookmarks/lib/web_bookmarks.rb +0 -10
  187. data/plugins/web_bookmarks/lib/web_bookmarks/bookmark.rb +10 -1
  188. data/plugins/web_bookmarks/lib/web_bookmarks/commands.rb +1 -47
  189. data/plugins/web_bookmarks/lib/web_bookmarks/tree.rb +21 -14
  190. data/{plugins/application → share}/icons/close.png +0 -0
  191. data/{plugins/application → share}/icons/darwin-file.png +0 -0
  192. data/{plugins/application → share}/icons/darwin-folder.png +0 -0
  193. data/share/icons/open-source-flipped.png +0 -0
  194. data/{plugins/application/icons/redcar_icon_beta_dev.png → share/icons/redcar-icon-beta-dev.png} +0 -0
  195. data/{plugins/application/icons/redcar_icon_beta.png → share/icons/redcar-icon-beta.png} +0 -0
  196. data/{plugins/application → share}/icons/redcar-splash.png +0 -0
  197. metadata +90 -30
  198. data/lib/redcar/jvm_options_probe.rb +0 -33
  199. data/plugins/document_search/lib/document_search/replace.rb +0 -113
  200. data/plugins/document_search/lib/document_search/search.rb +0 -45
  201. data/plugins/outline_view_swt/lib/icons/alias.png +0 -0
  202. data/plugins/outline_view_swt/lib/icons/assignment.png +0 -0
  203. data/plugins/outline_view_swt/lib/icons/attribute.png +0 -0
  204. data/plugins/outline_view_swt/lib/icons/class.png +0 -0
  205. data/plugins/outline_view_swt/lib/icons/interface.png +0 -0
  206. data/plugins/outline_view_swt/lib/icons/method.png +0 -0
  207. data/plugins/strip_trailing_spaces/CHANGELOG +0 -12
  208. data/plugins/strip_trailing_spaces/README.md +0 -32
  209. data/plugins/view_shortcuts/lib/view_shortcuts.rb +0 -52
  210. data/plugins/view_shortcuts/plugin.rb +0 -11
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>name</key>
6
+ <string>Symbol List: Target</string>
7
+ <key>scope</key>
8
+ <string>meta.tag.target.xml.ant</string>
9
+ <key>settings</key>
10
+ <dict>
11
+ <key>showInSymbolList</key>
12
+ <integer>1</integer>
13
+ <key>symbolTransformation</key>
14
+ <string>
15
+ s/.*name="(\w+)".*/$1/g; # Keep target name only.
16
+ s/^/target: /; # Add target prefix.
17
+ </string>
18
+ </dict>
19
+ <key>uuid</key>
20
+ <string>6078A7B7-1947-4A1A-9669-F9448479FA65</string>
21
+ </dict>
22
+ </plist>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>content</key>
6
+ <string>&lt;!-- =================================
7
+ target: $1
8
+ ================================= --&gt;</string>
9
+ <key>keyEquivalent</key>
10
+ <string>^B</string>
11
+ <key>name</key>
12
+ <string>Insert Comment Banner</string>
13
+ <key>scope</key>
14
+ <string>text.xml.ant</string>
15
+ <key>tabTrigger</key>
16
+ <string>ban</string>
17
+ <key>uuid</key>
18
+ <string>000AF780-6688-4684-95DF-DE3498B48274</string>
19
+ </dict>
20
+ </plist>
@@ -0,0 +1,247 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>fileTypes</key>
6
+ <array>
7
+ <string>ant.xml</string>
8
+ <string>build.xml</string>
9
+ </array>
10
+ <key>firstLineMatch</key>
11
+ <string>&lt;\!--ant--&gt;</string>
12
+ <key>foldingStartMarker</key>
13
+ <string>^\s*(&lt;[^!?%/](?!.+?(/&gt;|&lt;/.+?&gt;))|&lt;[!%]--(?!.+?--%?&gt;)|&lt;%[!]?(?!.+?%&gt;))</string>
14
+ <key>foldingStopMarker</key>
15
+ <string>^\s*(&lt;/[^&gt;]+&gt;|[/%]&gt;|--&gt;)\s*$</string>
16
+ <key>keyEquivalent</key>
17
+ <string>^~A</string>
18
+ <key>name</key>
19
+ <string>Ant</string>
20
+ <key>patterns</key>
21
+ <array>
22
+ <dict>
23
+ <key>begin</key>
24
+ <string>&lt;[!%]--</string>
25
+ <key>captures</key>
26
+ <dict>
27
+ <key>0</key>
28
+ <dict>
29
+ <key>name</key>
30
+ <string>punctuation.definition.comment.xml.ant</string>
31
+ </dict>
32
+ </dict>
33
+ <key>end</key>
34
+ <string>--%?&gt;</string>
35
+ <key>name</key>
36
+ <string>comment.block.xml.ant</string>
37
+ </dict>
38
+ <dict>
39
+ <key>begin</key>
40
+ <string>(&lt;target)</string>
41
+ <key>captures</key>
42
+ <dict>
43
+ <key>1</key>
44
+ <dict>
45
+ <key>name</key>
46
+ <string>entity.name.tag.target.xml.ant</string>
47
+ </dict>
48
+ </dict>
49
+ <key>end</key>
50
+ <string>(/?&gt;)</string>
51
+ <key>name</key>
52
+ <string>meta.tag.target.xml.ant</string>
53
+ <key>patterns</key>
54
+ <array>
55
+ <dict>
56
+ <key>include</key>
57
+ <string>#tagStuff</string>
58
+ </dict>
59
+ </array>
60
+ </dict>
61
+ <dict>
62
+ <key>begin</key>
63
+ <string>(&lt;/?)(?:([-_a-zA-Z0-9]+)((:)))?([-_a-zA-Z0-9:]+)</string>
64
+ <key>captures</key>
65
+ <dict>
66
+ <key>1</key>
67
+ <dict>
68
+ <key>name</key>
69
+ <string>punctuation.definition.tag.xml.ant</string>
70
+ </dict>
71
+ <key>2</key>
72
+ <dict>
73
+ <key>name</key>
74
+ <string>entity.name.tag.namespace.xml.ant</string>
75
+ </dict>
76
+ <key>3</key>
77
+ <dict>
78
+ <key>name</key>
79
+ <string>entity.name.tag.xml.ant</string>
80
+ </dict>
81
+ <key>4</key>
82
+ <dict>
83
+ <key>name</key>
84
+ <string>punctuation.separator.namespace.xml.ant</string>
85
+ </dict>
86
+ <key>5</key>
87
+ <dict>
88
+ <key>name</key>
89
+ <string>entity.name.tag.localname.xml.ant</string>
90
+ </dict>
91
+ </dict>
92
+ <key>end</key>
93
+ <string>(/?&gt;)</string>
94
+ <key>name</key>
95
+ <string>meta.tag.xml.ant</string>
96
+ <key>patterns</key>
97
+ <array>
98
+ <dict>
99
+ <key>include</key>
100
+ <string>#tagStuff</string>
101
+ </dict>
102
+ </array>
103
+ </dict>
104
+ <dict>
105
+ <key>include</key>
106
+ <string>text.xml</string>
107
+ </dict>
108
+ </array>
109
+ <key>repository</key>
110
+ <dict>
111
+ <key>doublequotedString</key>
112
+ <dict>
113
+ <key>begin</key>
114
+ <string>"</string>
115
+ <key>beginCaptures</key>
116
+ <dict>
117
+ <key>0</key>
118
+ <dict>
119
+ <key>name</key>
120
+ <string>punctuation.definition.string.begin.xml.ant</string>
121
+ </dict>
122
+ </dict>
123
+ <key>end</key>
124
+ <string>"</string>
125
+ <key>endCaptures</key>
126
+ <dict>
127
+ <key>0</key>
128
+ <dict>
129
+ <key>name</key>
130
+ <string>punctuation.definition.string.end.xml.ant</string>
131
+ </dict>
132
+ </dict>
133
+ <key>name</key>
134
+ <string>string.quoted.double.xml.ant</string>
135
+ <key>patterns</key>
136
+ <array>
137
+ <dict>
138
+ <key>include</key>
139
+ <string>#javaProperties</string>
140
+ </dict>
141
+ </array>
142
+ </dict>
143
+ <key>javaProperties</key>
144
+ <dict>
145
+ <key>begin</key>
146
+ <string>\${</string>
147
+ <key>beginCaptures</key>
148
+ <dict>
149
+ <key>0</key>
150
+ <dict>
151
+ <key>name</key>
152
+ <string>punctuation.definition.java-prop.begin.ant</string>
153
+ </dict>
154
+ </dict>
155
+ <key>end</key>
156
+ <string>}</string>
157
+ <key>endCaptures</key>
158
+ <dict>
159
+ <key>0</key>
160
+ <dict>
161
+ <key>name</key>
162
+ <string>punctuation.definition.java-prop.end.ant</string>
163
+ </dict>
164
+ </dict>
165
+ <key>name</key>
166
+ <string>source.java-props.embedded.ant</string>
167
+ </dict>
168
+ <key>singlequotedString</key>
169
+ <dict>
170
+ <key>begin</key>
171
+ <string>'</string>
172
+ <key>beginCaptures</key>
173
+ <dict>
174
+ <key>0</key>
175
+ <dict>
176
+ <key>name</key>
177
+ <string>punctuation.definition.string.begin.xml.ant</string>
178
+ </dict>
179
+ </dict>
180
+ <key>end</key>
181
+ <string>'</string>
182
+ <key>endCaptures</key>
183
+ <dict>
184
+ <key>0</key>
185
+ <dict>
186
+ <key>name</key>
187
+ <string>punctuation.definition.string.end.xml.ant</string>
188
+ </dict>
189
+ </dict>
190
+ <key>name</key>
191
+ <string>string.quoted.single.ant</string>
192
+ <key>patterns</key>
193
+ <array>
194
+ <dict>
195
+ <key>include</key>
196
+ <string>#javaProperties</string>
197
+ </dict>
198
+ </array>
199
+ </dict>
200
+ <key>tagStuff</key>
201
+ <dict>
202
+ <key>patterns</key>
203
+ <array>
204
+ <dict>
205
+ <key>captures</key>
206
+ <dict>
207
+ <key>1</key>
208
+ <dict>
209
+ <key>name</key>
210
+ <string>entity.other.attribute-name.namespace.xml.ant</string>
211
+ </dict>
212
+ <key>2</key>
213
+ <dict>
214
+ <key>name</key>
215
+ <string>entity.other.attribute-name.xml.ant</string>
216
+ </dict>
217
+ <key>3</key>
218
+ <dict>
219
+ <key>name</key>
220
+ <string>punctuation.separator.namespace.xml.ant</string>
221
+ </dict>
222
+ <key>4</key>
223
+ <dict>
224
+ <key>name</key>
225
+ <string>entity.other.attribute-name.localname.xml.ant</string>
226
+ </dict>
227
+ </dict>
228
+ <key>match</key>
229
+ <string> (?:([-_a-zA-Z0-9]+)((:)))?([_a-zA-Z-]+)=</string>
230
+ </dict>
231
+ <dict>
232
+ <key>include</key>
233
+ <string>#doublequotedString</string>
234
+ </dict>
235
+ <dict>
236
+ <key>include</key>
237
+ <string>#singlequotedString</string>
238
+ </dict>
239
+ </array>
240
+ </dict>
241
+ </dict>
242
+ <key>scopeName</key>
243
+ <string>text.xml.ant</string>
244
+ <key>uuid</key>
245
+ <string>E1B78601-E584-4A7F-B011-A61710BFE035</string>
246
+ </dict>
247
+ </plist>
@@ -0,0 +1,55 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>contactEmailRot13</key>
6
+ <string>ohaqyrf@uryirpgbe.bet</string>
7
+ <key>contactName</key>
8
+ <string>Simon Gregory</string>
9
+ <key>description</key>
10
+ <string>&lt;a href="http://ant.apache.org/"&gt;Ant&lt;/a&gt; is a Java-based build tool.</string>
11
+ <key>mainMenu</key>
12
+ <dict>
13
+ <key>items</key>
14
+ <array>
15
+ <string>7B5E4852-8B66-461F-A32A-A820625256A5</string>
16
+ <string>C7888301-C304-4EF2-A15F-5681A7D6D13C</string>
17
+ <string>05BC9A24-B64E-42D6-8177-326518E65EE0</string>
18
+ <string>------------------------------------</string>
19
+ <string>4BCBC20D-A418-412D-AD95-1CBB62AF1760</string>
20
+ <string>080190AE-FCEF-47BF-86E2-6CC48C8B3E8B</string>
21
+ <string>------------------------------------</string>
22
+ <string>B34D55F6-17C3-4698-973F-FDE059BEB675</string>
23
+ <string>DADF5411-0178-43B9-A4E1-4FAADA22DF16</string>
24
+ <string>464D4A8B-64A9-4C9E-BC94-65DBD5D16117</string>
25
+ <string>------------------------------------</string>
26
+ <string>9BF3D042-E77C-4E89-9E8C-18A81AE3923B</string>
27
+ <string>62CAE21C-2269-489F-B5AB-3E652AE6E51F</string>
28
+ </array>
29
+ <key>submenus</key>
30
+ <dict/>
31
+ </dict>
32
+ <key>name</key>
33
+ <string>Ant</string>
34
+ <key>ordering</key>
35
+ <array>
36
+ <string>E1B78601-E584-4A7F-B011-A61710BFE035</string>
37
+ <string>4BCBC20D-A418-412D-AD95-1CBB62AF1760</string>
38
+ <string>C7888301-C304-4EF2-A15F-5681A7D6D13C</string>
39
+ <string>05BC9A24-B64E-42D6-8177-326518E65EE0</string>
40
+ <string>D8BB623D-E04A-4194-8D29-086F5F6B73A8</string>
41
+ <string>AE288C48-081B-4615-A8B6-03041B92652B</string>
42
+ <string>000AF780-6688-4684-95DF-DE3498B48274</string>
43
+ <string>464D4A8B-64A9-4C9E-BC94-65DBD5D16117</string>
44
+ <string>B34D55F6-17C3-4698-973F-FDE059BEB675</string>
45
+ <string>9BF3D042-E77C-4E89-9E8C-18A81AE3923B</string>
46
+ <string>DADF5411-0178-43B9-A4E1-4FAADA22DF16</string>
47
+ <string>7B5E4852-8B66-461F-A32A-A820625256A5</string>
48
+ <string>6078A7B7-1947-4A1A-9669-F9448479FA65</string>
49
+ <string>080190AE-FCEF-47BF-86E2-6CC48C8B3E8B</string>
50
+ <string>62CAE21C-2269-489F-B5AB-3E652AE6E51F</string>
51
+ </array>
52
+ <key>uuid</key>
53
+ <string>2BF448A1-9742-4137-80D2-C7AD8D7A0064</string>
54
+ </dict>
55
+ </plist>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>fileTypes</key>
6
+ <array>
7
+ <string>(internal)</string>
8
+ </array>
9
+ <key>name</key>
10
+ <string>Groovy REPL</string>
11
+ <key>scopeName</key>
12
+ <string>repl.groovy</string>
13
+ <key>patterns</key>
14
+ <array>
15
+ <dict>
16
+ <key>begin</key>
17
+ <string>^groovy></string>
18
+ <key>beginCaptures</key>
19
+ <dict>
20
+ <key>1</key>
21
+ <dict>
22
+ <key>name</key>
23
+ <string>keyword.control.repl</string>
24
+ </dict>
25
+ </dict>
26
+ <key>end</key>
27
+ <string>^(=&gt;|x&gt;)</string>
28
+ <key>name</key>
29
+ <string>repl.entry source.groovy</string>
30
+ <key>patterns</key>
31
+ <array>
32
+ <dict>
33
+ <key>include</key>
34
+ <string>source.groovy</string>
35
+ </dict>
36
+ </array>
37
+ </dict>
38
+ </array>
39
+ </dict>
40
+ </plist>
@@ -5,7 +5,7 @@
5
5
  <key>contactName</key>
6
6
  <string>Daniel Lucraft</string>
7
7
  <key>description</key>
8
- <string>Syntax highlighting for the Ruby REPL.</string>
8
+ <string>Syntax highlighting for the Redcar REPLs.</string>
9
9
  <key>uuid</key>
10
10
  <string>900934B5-CE02-48CD-AEDD-105675DE37DB</string>
11
11
  </dict>
@@ -5,7 +5,6 @@
5
5
  <key>fileTypes</key>
6
6
  <array>
7
7
  <string>haml</string>
8
- <string>sass</string>
9
8
  </array>
10
9
  <key>foldingStartMarker</key>
11
10
  <string>^\s*([-%#\:\.\w\=].*)\s$</string>
@@ -0,0 +1,626 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>comment</key>
6
+ <string></string>
7
+ <key>fileTypes</key>
8
+ <array>
9
+ <string>sass</string>
10
+ </array>
11
+ <key>foldingStartMarker</key>
12
+ <string>^\s*([-%#\:\.\w\=].*)\s$</string>
13
+ <key>foldingStopMarker</key>
14
+ <string>^\s*$</string>
15
+ <key>name</key>
16
+ <string>Ruby Sass</string>
17
+ <key>patterns</key>
18
+ <array>
19
+ <dict>
20
+ <key>begin</key>
21
+ <string>^(\!)([a-zA-Z0-9_-]+)\s*(=)</string>
22
+ <key>beginCaptures</key>
23
+ <dict>
24
+ <key>1</key>
25
+ <dict>
26
+ <key>name</key>
27
+ <string>punctuation.definition.entity.sass</string>
28
+ </dict>
29
+ <key>2</key>
30
+ <dict>
31
+ <key>name</key>
32
+ <string>variable.other.sass</string>
33
+ </dict>
34
+ <key>3</key>
35
+ <dict>
36
+ <key>name</key>
37
+ <string>punctuation.definition.entity.sass</string>
38
+ </dict>
39
+ </dict>
40
+ <key>end</key>
41
+ <string>(;)?$</string>
42
+ <key>endCaptures</key>
43
+ <dict>
44
+ <key>1</key>
45
+ <dict>
46
+ <key>name</key>
47
+ <string>invalid.illegal.punctuation.sass</string>
48
+ </dict>
49
+ </dict>
50
+ <key>name</key>
51
+ <string>meta.variable-declaration.sass</string>
52
+ <key>patterns</key>
53
+ <array>
54
+ <dict>
55
+ <key>include</key>
56
+ <string>#property-value</string>
57
+ </dict>
58
+ </array>
59
+ </dict>
60
+ <dict>
61
+ <key>begin</key>
62
+ <string>(?=[.*#a-zA-Z][:.*#a-zA-Z]*)</string>
63
+ <key>end</key>
64
+ <string>(;)?$</string>
65
+ <key>endCaptures</key>
66
+ <dict>
67
+ <key>1</key>
68
+ <dict>
69
+ <key>name</key>
70
+ <string>invalid.illegal.punctuation.sass</string>
71
+ </dict>
72
+ </dict>
73
+ <key>name</key>
74
+ <string>meta.selector.sass</string>
75
+ <key>patterns</key>
76
+ <array>
77
+ <dict>
78
+ <key>include</key>
79
+ <string>#comment-block</string>
80
+ </dict>
81
+ <dict>
82
+ <key>match</key>
83
+ <string>\b(a|abbr|acronym|address|area|b|base|big|blockquote|body|br|button|caption|cite|code|col|colgroup|dd|del|dfn|div|dl|dt|em|fieldset|form|frame|frameset|(h[1-6])|head|hr|html|i|iframe|img|input|ins|kbd|label|legend|li|link|map|meta|noframes|noscript|object|ol|optgroup|option|p|param|pre|q|samp|script|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|title|tr|tt|ul|var)\b</string>
84
+ <key>name</key>
85
+ <string>entity.name.tag.sass</string>
86
+ </dict>
87
+ <dict>
88
+ <key>captures</key>
89
+ <dict>
90
+ <key>1</key>
91
+ <dict>
92
+ <key>name</key>
93
+ <string>punctuation.definition.entity.css</string>
94
+ </dict>
95
+ </dict>
96
+ <key>match</key>
97
+ <string>(\.)[a-zA-Z0-9_-]+</string>
98
+ <key>name</key>
99
+ <string>entity.other.attribute-name.class.sass</string>
100
+ </dict>
101
+ <dict>
102
+ <key>captures</key>
103
+ <dict>
104
+ <key>1</key>
105
+ <dict>
106
+ <key>name</key>
107
+ <string>punctuation.definition.entity.sass</string>
108
+ </dict>
109
+ </dict>
110
+ <key>match</key>
111
+ <string>(#)[a-zA-Z][a-zA-Z0-9_-]*</string>
112
+ <key>name</key>
113
+ <string>entity.other.attribute-name.id.sass</string>
114
+ </dict>
115
+ <dict>
116
+ <key>match</key>
117
+ <string>\*</string>
118
+ <key>name</key>
119
+ <string>entity.name.tag.wildcard.sass</string>
120
+ </dict>
121
+ <dict>
122
+ <key>captures</key>
123
+ <dict>
124
+ <key>1</key>
125
+ <dict>
126
+ <key>name</key>
127
+ <string>punctuation.definition.entity.sass</string>
128
+ </dict>
129
+ </dict>
130
+ <key>match</key>
131
+ <string>(:+)\b(after|before|first-child|first-letter|first-line|selection)\b</string>
132
+ <key>name</key>
133
+ <string>entity.other.attribute-name.pseudo-element.sass</string>
134
+ </dict>
135
+ <dict>
136
+ <key>captures</key>
137
+ <dict>
138
+ <key>1</key>
139
+ <dict>
140
+ <key>name</key>
141
+ <string>punctuation.definition.entity.sass</string>
142
+ </dict>
143
+ </dict>
144
+ <key>match</key>
145
+ <string>(:)\b(active|hover|link|visited|focus)\b</string>
146
+ <key>name</key>
147
+ <string>entity.other.attribute-name.pseudo-class.sass</string>
148
+ </dict>
149
+ <dict>
150
+ <key>captures</key>
151
+ <dict>
152
+ <key>1</key>
153
+ <dict>
154
+ <key>name</key>
155
+ <string>punctuation.definition.entity.sass</string>
156
+ </dict>
157
+ <key>2</key>
158
+ <dict>
159
+ <key>name</key>
160
+ <string>entity.other.attribute-name.attribute.sass</string>
161
+ </dict>
162
+ <key>3</key>
163
+ <dict>
164
+ <key>name</key>
165
+ <string>punctuation.separator.operator.sass</string>
166
+ </dict>
167
+ <key>4</key>
168
+ <dict>
169
+ <key>name</key>
170
+ <string>string.unquoted.attribute-value.sass</string>
171
+ </dict>
172
+ <key>5</key>
173
+ <dict>
174
+ <key>name</key>
175
+ <string>string.quoted.double.attribute-value.sass</string>
176
+ </dict>
177
+ <key>6</key>
178
+ <dict>
179
+ <key>name</key>
180
+ <string>punctuation.definition.string.begin.sass</string>
181
+ </dict>
182
+ <key>7</key>
183
+ <dict>
184
+ <key>name</key>
185
+ <string>punctuation.definition.string.end.sass</string>
186
+ </dict>
187
+ </dict>
188
+ <key>match</key>
189
+ <string>(?i)(\[)\s*(-?[_a-z\\[[:^ascii:]]][_a-z0-9\-\\[[:^ascii:]]]*)(?:\s*([~|^$*]?=)\s*(?:(-?[_a-z\\[[:^ascii:]]][_a-z0-9\-\\[[:^ascii:]]]*)|((?&gt;(['"])(?:[^\\]|\\.)*?(\6)))))?\s*(\])</string>
190
+ <key>name</key>
191
+ <string>meta.attribute-selector.sass</string>
192
+ </dict>
193
+ </array>
194
+ </dict>
195
+ <dict>
196
+ <key>include</key>
197
+ <string>#comment-block</string>
198
+ </dict>
199
+ <dict>
200
+ <key>begin</key>
201
+ <string>^\s*((@)import\b)</string>
202
+ <key>beginCaptures</key>
203
+ <dict>
204
+ <key>1</key>
205
+ <dict>
206
+ <key>name</key>
207
+ <string>keyword.control.at-rule.import.sass</string>
208
+ </dict>
209
+ <key>2</key>
210
+ <dict>
211
+ <key>name</key>
212
+ <string>punctuation.definition.keyword.sass</string>
213
+ </dict>
214
+ </dict>
215
+ <key>end</key>
216
+ <string>(;)?$</string>
217
+ <key>endCaptures</key>
218
+ <dict>
219
+ <key>1</key>
220
+ <dict>
221
+ <key>name</key>
222
+ <string>invalid.illegal.punctuation.sass</string>
223
+ </dict>
224
+ </dict>
225
+ <key>name</key>
226
+ <string>meta.at-rule.import.sass</string>
227
+ <key>patterns</key>
228
+ <array>
229
+ <dict>
230
+ <key>include</key>
231
+ <string>#string-double</string>
232
+ </dict>
233
+ <dict>
234
+ <key>begin</key>
235
+ <string>(url)\s*(\()\s*</string>
236
+ <key>beginCaptures</key>
237
+ <dict>
238
+ <key>1</key>
239
+ <dict>
240
+ <key>name</key>
241
+ <string>support.function.url.sass</string>
242
+ </dict>
243
+ <key>2</key>
244
+ <dict>
245
+ <key>name</key>
246
+ <string>punctuation.section.function.sass</string>
247
+ </dict>
248
+ </dict>
249
+ <key>end</key>
250
+ <string>\s*(\))\s*</string>
251
+ <key>endCaptures</key>
252
+ <dict>
253
+ <key>1</key>
254
+ <dict>
255
+ <key>name</key>
256
+ <string>punctuation.section.function.sass</string>
257
+ </dict>
258
+ </dict>
259
+ <key>patterns</key>
260
+ <array>
261
+ <dict>
262
+ <key>match</key>
263
+ <string>[^'") \t]+</string>
264
+ <key>name</key>
265
+ <string>variable.parameter.url.sass</string>
266
+ </dict>
267
+ <dict>
268
+ <key>include</key>
269
+ <string>#string-single</string>
270
+ </dict>
271
+ <dict>
272
+ <key>include</key>
273
+ <string>#string-double</string>
274
+ </dict>
275
+ </array>
276
+ </dict>
277
+ <dict>
278
+ <key>match</key>
279
+ <string>([^"'\n;]+)</string>
280
+ <key>name</key>
281
+ <string>variable.parameter.url.sass</string>
282
+ </dict>
283
+ </array>
284
+ </dict>
285
+ <dict>
286
+ <key>begin</key>
287
+ <string>^\s*((@)media)\s+(((all|aural|braille|embossed|handheld|print|projection|screen|tty|tv)\s*,?\s*)+)\s*{</string>
288
+ <key>captures</key>
289
+ <dict>
290
+ <key>1</key>
291
+ <dict>
292
+ <key>name</key>
293
+ <string>keyword.control.at-rule.media.sass</string>
294
+ </dict>
295
+ <key>2</key>
296
+ <dict>
297
+ <key>name</key>
298
+ <string>punctuation.definition.keyword.sass</string>
299
+ </dict>
300
+ <key>3</key>
301
+ <dict>
302
+ <key>name</key>
303
+ <string>support.constant.media.sass</string>
304
+ </dict>
305
+ </dict>
306
+ <key>end</key>
307
+ <string>\s*((?=;|\}))</string>
308
+ <key>name</key>
309
+ <string>meta.at-rule.media.sass</string>
310
+ <key>patterns</key>
311
+ <array>
312
+ <dict>
313
+ <key>include</key>
314
+ <string>$self</string>
315
+ </dict>
316
+ </array>
317
+ </dict>
318
+ <dict>
319
+ <key>begin</key>
320
+ <string>(?&lt;![-a-z])(:)(?=[-a-z])</string>
321
+ <key>beginCaptures</key>
322
+ <dict>
323
+ <key>1</key>
324
+ <dict>
325
+ <key>name</key>
326
+ <string>punctuation.definition.entity.css</string>
327
+ </dict>
328
+ </dict>
329
+ <key>end</key>
330
+ <string>(;)?$</string>
331
+ <key>endCaptures</key>
332
+ <dict>
333
+ <key>1</key>
334
+ <dict>
335
+ <key>name</key>
336
+ <string>invalid.illegal.punctuation.sass</string>
337
+ </dict>
338
+ </dict>
339
+ <key>name</key>
340
+ <string>meta.property-name.sass</string>
341
+ <key>patterns</key>
342
+ <array>
343
+ <dict>
344
+ <key>match</key>
345
+ <string>\b(align|azimuth|background-attachment|background-color|background-image|background-position|background-repeat|background|border-bottom-color|border-bottom-style|border-bottom-width|border-bottom|border-collapse|border-color|border-left-color|border-left-style|border-left-width|border-left|border-right-color|border-right-style|border-right-width|border-right|border-spacing|border-style|border-top-color|border-top-style|border-top-width|border-top|border-width|border|bottom|caption-side|clear|clip|color|content|counter-increment|counter-reset|cue-after|cue-before|cue|cursor|decoration|direction|display|elevation|empty-cells|family|float|font-family|font-size-adjust|font-size|font-stretch|font-style|font-variant|font-weight|font|height|image|indent|left|letter-spacing|line-height|list-style-image|list-style-position|list-style-type|list-style|margin-bottom|margin-left|margin-right|margin-top|marker-offset|margin|marks|max-height|max-width|min-height|min-width|-moz-border-radius|opacity|orphans|outline-color|outline-style|outline-width|outline|overflow(-[xy])?|padding-bottom|padding-left|padding-right|padding-top|padding|page-break-after|page-break-before|page-break-inside|page|pause-after|pause-before|pause|pitch-range|pitch|play-during|position|quotes|repeat|richness|right|shadow|size|speak-header|speak-numeral|speak-punctuation|speech-rate|speak|stress|style|table-layout|text|text-align|text-decoration|text-indent|text-shadow|text-transform|top|transform|unicode-bidi|vertical-align|visibility|voice-family|volume|weight|white-space|widows|width|word-spacing|z-index)\b</string>
346
+ <key>name</key>
347
+ <string>support.type.property-name.sass</string>
348
+ </dict>
349
+ <dict>
350
+ <key>include</key>
351
+ <string>#property-value</string>
352
+ </dict>
353
+ </array>
354
+ </dict>
355
+ </array>
356
+ <key>repository</key>
357
+ <dict>
358
+ <key>comment-block</key>
359
+ <dict>
360
+ <key>begin</key>
361
+ <string>( *)(/\*|//)</string>
362
+ <key>captures</key>
363
+ <dict>
364
+ <key>0</key>
365
+ <dict>
366
+ <key>name</key>
367
+ <string>punctuation.definition.comment.sass</string>
368
+ </dict>
369
+ </dict>
370
+ <key>end</key>
371
+ <string>^(?=\1[^ ])</string>
372
+ <key>name</key>
373
+ <string>comment.block.sass</string>
374
+ </dict>
375
+ <key>property-value</key>
376
+ <dict>
377
+ <key>begin</key>
378
+ <string>(:)?\s+</string>
379
+ <key>beginCaptures</key>
380
+ <dict>
381
+ <key>1</key>
382
+ <dict>
383
+ <key>name</key>
384
+ <string>invalid.illegal.punctuation.sass</string>
385
+ </dict>
386
+ </dict>
387
+ <key>end</key>
388
+ <string>(;)?$</string>
389
+ <key>endCaptures</key>
390
+ <dict>
391
+ <key>1</key>
392
+ <dict>
393
+ <key>name</key>
394
+ <string>invalid.illegal.punctuation.sass</string>
395
+ </dict>
396
+ </dict>
397
+ <key>name</key>
398
+ <string>meta.property-value.sass</string>
399
+ <key>patterns</key>
400
+ <array>
401
+ <dict>
402
+ <key>match</key>
403
+ <string>([-=+*/])</string>
404
+ <key>name</key>
405
+ <string>punctuation.definition.entity.css</string>
406
+ </dict>
407
+ <dict>
408
+ <key>captures</key>
409
+ <dict>
410
+ <key>1</key>
411
+ <dict>
412
+ <key>name</key>
413
+ <string>punctuation.definition.entity.css</string>
414
+ </dict>
415
+ <key>2</key>
416
+ <dict>
417
+ <key>name</key>
418
+ <string>variable.other.sass</string>
419
+ </dict>
420
+ </dict>
421
+ <key>match</key>
422
+ <string>(\!)([a-zA-Z0-9_-]+)</string>
423
+ <key>name</key>
424
+ <string>meta.variable-usage.sass</string>
425
+ </dict>
426
+ <dict>
427
+ <key>match</key>
428
+ <string>\b(absolute|all-scroll|always|auto|baseline|below|bidi-override|block|bold|bolder|both|bottom|break-all|break-word|capitalize|center|char|circle|col-resize|collapse|crosshair|dashed|decimal|default|disabled|disc|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ellipsis|fixed|groove|hand|help|hidden|horizontal|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|inactive|inherit|inline-block|inline|inset|inside|inter-ideograph|inter-word|italic|justify|keep-all|left|lighter|line-edge|line-through|line|list-item|loose|lower-alpha|lower-roman|lowercase|lr-tb|ltr|medium|middle|move|n-resize|ne-resize|newspaper|no-drop|no-repeat|nw-resize|none|normal|not-allowed|nowrap|oblique|outset|outside|overline|pointer|progress|relative|repeat-x|repeat-y|repeat|right|ridge|row-resize|rtl|s-resize|scroll|se-resize|separate|small-caps|solid|square|static|strict|super|sw-resize|table-footer-group|table-header-group|tb-rl|text-bottom|text-top|text|thick|thin|top|transparent|underline|upper-alpha|upper-roman|uppercase|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace)\b</string>
429
+ <key>name</key>
430
+ <string>support.constant.property-value.sass</string>
431
+ </dict>
432
+ <dict>
433
+ <key>match</key>
434
+ <string>(\b(?i:arial|century|comic|courier|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace)\b)</string>
435
+ <key>name</key>
436
+ <string>support.constant.font-name.sass</string>
437
+ </dict>
438
+ <dict>
439
+ <key>comment</key>
440
+ <string>http://www.w3schools.com/css/css_colors.asp</string>
441
+ <key>match</key>
442
+ <string>\b(aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|purple|red|silver|teal|white|yellow)\b</string>
443
+ <key>name</key>
444
+ <string>support.constant.color.w3c-standard-color-name.sass</string>
445
+ </dict>
446
+ <dict>
447
+ <key>comment</key>
448
+ <string>These colours are mostly recognised but will not validate. ref: http://www.w3schools.com/css/css_colornames.asp</string>
449
+ <key>match</key>
450
+ <string>\b(seagreen|hotpink|lawngreen|darkgreen|violet|darkred|crimson|green|sandybrown|navy|magenta|darkslategray|steelblue|silver|darkgrey|mistyrose|gray|aliceblue|blueviolet|lightpink|saddlebrown|chocolate|limegreen|lightslategray|yellowgreen|pink|lightskyblue|indigo|lightblue|floralwhite|navajowhite|mediumvioletred|honeydew|aquamarine|blue|olivedrab|palegreen|slategray|lavenderblush|wheat|moccasin|mediumturquoise|mediumspringgreen|lightcoral|mintcream|tomato|lightgrey|black|darkmagenta|dimgray|darkturquoise|midnightblue|plum|indianred|coral|lightcyan|mediumslateblue|darkcyan|darkslateblue|darkkhaki|ivory|azure|khaki|powderblue|darkgoldenrod|orangered|burlywood|turquoise|royalblue|maroon|cornsilk|antiquewhite|yellow|teal|orange|grey|darkslategrey|slateblue|seashell|darkorchid|snow|lightslategrey|cyan|greenyellow|palevioletred|goldenrod|deepskyblue|lightyellow|lightseagreen|sienna|lemonchiffon|darkviolet|paleturquoise|slategrey|skyblue|purple|mediumpurple|cadetblue|fuchsia|chartreuse|darksalmon|lightgoldenrodyellow|white|springgreen|olive|forestgreen|peachpuff|peru|dimgrey|mediumseagreen|thistle|firebrick|darkgray|mediumaquamarine|darkolivegreen|mediumblue|palegoldenrod|blanchedalmond|ghostwhite|gold|gainsboro|darkseagreen|cornflowerblue|lime|lavender|beige|orchid|mediumorchid|whitesmoke|bisque|lightgray|tan|salmon|rosybrown|red|dodgerblue|brown|aqua|oldlace|deeppink|papayawhip|lightsalmon|lightsteelblue|darkorange|darkblue|linen|lightgreen)\b</string>
451
+ <key>name</key>
452
+ <string>invalid.deprecated.color.w3c-non-standard-color-name.sass</string>
453
+ </dict>
454
+ <dict>
455
+ <key>match</key>
456
+ <string>(-|\+)?\s*[0-9]+(\.[0-9]+)?</string>
457
+ <key>name</key>
458
+ <string>constant.numeric.sass</string>
459
+ </dict>
460
+ <dict>
461
+ <key>match</key>
462
+ <string>(?&lt;=[\d])(px|pt|cm|mm|in|em|ex|pc)\b|%</string>
463
+ <key>name</key>
464
+ <string>keyword.other.unit.sass</string>
465
+ </dict>
466
+ <dict>
467
+ <key>captures</key>
468
+ <dict>
469
+ <key>1</key>
470
+ <dict>
471
+ <key>name</key>
472
+ <string>punctuation.definition.constant.sass</string>
473
+ </dict>
474
+ </dict>
475
+ <key>match</key>
476
+ <string>(#)([0-9a-fA-F]{3}|[0-9a-fA-F]{6})\b</string>
477
+ <key>name</key>
478
+ <string>constant.other.color.rgb-value.sass</string>
479
+ </dict>
480
+ <dict>
481
+ <key>include</key>
482
+ <string>#string-double</string>
483
+ </dict>
484
+ <dict>
485
+ <key>include</key>
486
+ <string>#string-single</string>
487
+ </dict>
488
+ <dict>
489
+ <key>begin</key>
490
+ <string>(rgb|url|attr|counter|counters)\s*(\()</string>
491
+ <key>beginCaptures</key>
492
+ <dict>
493
+ <key>1</key>
494
+ <dict>
495
+ <key>name</key>
496
+ <string>support.function.misc.sass</string>
497
+ </dict>
498
+ <key>2</key>
499
+ <dict>
500
+ <key>name</key>
501
+ <string>punctuation.section.function.sass</string>
502
+ </dict>
503
+ </dict>
504
+ <key>end</key>
505
+ <string>(\))</string>
506
+ <key>endCaptures</key>
507
+ <dict>
508
+ <key>1</key>
509
+ <dict>
510
+ <key>name</key>
511
+ <string>punctuation.section.function.sass</string>
512
+ </dict>
513
+ </dict>
514
+ <key>patterns</key>
515
+ <array>
516
+ <dict>
517
+ <key>include</key>
518
+ <string>#string-single</string>
519
+ </dict>
520
+ <dict>
521
+ <key>include</key>
522
+ <string>#string-double</string>
523
+ </dict>
524
+ <dict>
525
+ <key>match</key>
526
+ <string>(\b0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\s*,\s*)(0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\s*,\s*)(0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\b)</string>
527
+ <key>name</key>
528
+ <string>constant.other.color.rgb-value.sass</string>
529
+ </dict>
530
+ <dict>
531
+ <key>match</key>
532
+ <string>\b([0-9]{1,2}|100)\s*%,\s*([0-9]{1,2}|100)\s*%,\s*([0-9]{1,2}|100)\s*%</string>
533
+ <key>name</key>
534
+ <string>constant.other.color.rgb-percentage.sass</string>
535
+ </dict>
536
+ <dict>
537
+ <key>match</key>
538
+ <string>[^'") \t]+</string>
539
+ <key>name</key>
540
+ <string>variable.parameter.misc.sass</string>
541
+ </dict>
542
+ </array>
543
+ </dict>
544
+ <dict>
545
+ <key>match</key>
546
+ <string>\!\s*important</string>
547
+ <key>name</key>
548
+ <string>keyword.other.important.sass</string>
549
+ </dict>
550
+ </array>
551
+ </dict>
552
+ <key>string-double</key>
553
+ <dict>
554
+ <key>begin</key>
555
+ <string>"</string>
556
+ <key>beginCaptures</key>
557
+ <dict>
558
+ <key>0</key>
559
+ <dict>
560
+ <key>name</key>
561
+ <string>punctuation.definition.string.begin.sass</string>
562
+ </dict>
563
+ </dict>
564
+ <key>end</key>
565
+ <string>"</string>
566
+ <key>endCaptures</key>
567
+ <dict>
568
+ <key>0</key>
569
+ <dict>
570
+ <key>name</key>
571
+ <string>punctuation.definition.string.end.sass</string>
572
+ </dict>
573
+ </dict>
574
+ <key>name</key>
575
+ <string>string.quoted.double.sass</string>
576
+ <key>patterns</key>
577
+ <array>
578
+ <dict>
579
+ <key>match</key>
580
+ <string>\\.</string>
581
+ <key>name</key>
582
+ <string>constant.character.escape.sass</string>
583
+ </dict>
584
+ </array>
585
+ </dict>
586
+ <key>string-single</key>
587
+ <dict>
588
+ <key>begin</key>
589
+ <string>'</string>
590
+ <key>beginCaptures</key>
591
+ <dict>
592
+ <key>0</key>
593
+ <dict>
594
+ <key>name</key>
595
+ <string>punctuation.definition.string.begin.sass</string>
596
+ </dict>
597
+ </dict>
598
+ <key>end</key>
599
+ <string>'</string>
600
+ <key>endCaptures</key>
601
+ <dict>
602
+ <key>0</key>
603
+ <dict>
604
+ <key>name</key>
605
+ <string>punctuation.definition.string.end.sass</string>
606
+ </dict>
607
+ </dict>
608
+ <key>name</key>
609
+ <string>string.quoted.single.sass</string>
610
+ <key>patterns</key>
611
+ <array>
612
+ <dict>
613
+ <key>match</key>
614
+ <string>\\.</string>
615
+ <key>name</key>
616
+ <string>constant.character.escape.sass</string>
617
+ </dict>
618
+ </array>
619
+ </dict>
620
+ </dict>
621
+ <key>scopeName</key>
622
+ <string>source.sass</string>
623
+ <key>uuid</key>
624
+ <string>F73505F1-0CD8-4ED1-93AA-B88050B3D8D4</string>
625
+ </dict>
626
+ </plist>