redcar 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1684) hide show
  1. data/CHANGES +21 -0
  2. data/README.md +3 -6
  3. data/ROADMAP.md +0 -2
  4. data/Rakefile +7 -12
  5. data/bin/redcar +1 -1
  6. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +13 -1
  7. data/lib/redcar.rb +10 -8
  8. data/lib/redcar/installer.rb +39 -2
  9. data/lib/redcar/runner.rb +2 -1
  10. data/lib/redcar_quick_start.rb +4 -3
  11. data/lib/regex_replace.rb +10 -2
  12. data/plugins/application/lib/application.rb +32 -2
  13. data/plugins/application/lib/application/dialogs/filter_list_dialog.rb +48 -0
  14. data/plugins/application/lib/application/keymap/builder.rb +5 -1
  15. data/plugins/application/lib/application/menu/builder.rb +14 -4
  16. data/plugins/application/lib/application/menu/item.rb +2 -3
  17. data/plugins/application/lib/application/notebook.rb +3 -3
  18. data/plugins/application/lib/application/treebook.rb +0 -5
  19. data/plugins/application/lib/application/window.rb +11 -8
  20. data/plugins/application_swt/lib/application_swt.rb +32 -3
  21. data/plugins/application_swt/lib/application_swt/bring_to_front.rb +50 -0
  22. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +21 -3
  23. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +28 -3
  24. data/plugins/application_swt/lib/application_swt/html_tab.rb +8 -2
  25. data/plugins/application_swt/lib/application_swt/menu.rb +30 -7
  26. data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +6 -0
  27. data/plugins/application_swt/lib/application_swt/window.rb +40 -28
  28. data/plugins/application_swt/spec/application_swt/menu/binding_translator_spec.rb +17 -0
  29. data/plugins/auto_completer/lib/auto_completer.rb +3 -2
  30. data/plugins/auto_indenter/lib/auto_indenter.rb +2 -3
  31. data/plugins/auto_pairer/features/auto_pairer.feature +87 -0
  32. data/plugins/auto_pairer/features/step_definitions/auto_pairer_steps.rb +0 -0
  33. data/plugins/auto_pairer/features/support/env.rb +2 -0
  34. data/plugins/auto_pairer/lib/auto_pairer.rb +11 -0
  35. data/plugins/auto_pairer/lib/auto_pairer/document_controller.rb +152 -0
  36. data/plugins/auto_pairer/lib/auto_pairer/pairs_for_scope.rb +61 -0
  37. data/plugins/auto_pairer/plugin.rb +9 -0
  38. data/plugins/core/lib/core.rb +2 -0
  39. data/plugins/core/lib/core/observable.rb +0 -11
  40. data/plugins/core/lib/core/persistent_cache.rb +45 -0
  41. data/plugins/core/lib/core/plugin/storage.rb +17 -2
  42. data/plugins/core/spec/core/observable_spec.rb +0 -13
  43. data/plugins/core/spec/core/persistent_cache_spec.rb +100 -0
  44. data/plugins/core/spec/core/storage_spec.rb +42 -4
  45. data/plugins/edit_view/features/step_definitions/editing_steps.rb +26 -5
  46. data/plugins/edit_view/features/step_definitions/tab_steps.rb +7 -4
  47. data/plugins/edit_view/lib/edit_view.rb +10 -1
  48. data/plugins/edit_view/lib/edit_view/actions/esc.rb +15 -0
  49. data/plugins/edit_view/lib/edit_view/actions/tab.rb +4 -0
  50. data/plugins/edit_view/lib/edit_view/document.rb +78 -21
  51. data/plugins/edit_view/lib/edit_view/document/controller.rb +9 -5
  52. data/plugins/edit_view_swt/lib/edit_view_swt.rb +4 -0
  53. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +41 -0
  54. data/plugins/edit_view_swt/vendor/java-mateview.rb +7 -0
  55. data/plugins/html_view/lib/html_view.rb +1 -1
  56. data/plugins/project/lib/project.rb +54 -24
  57. data/plugins/project/lib/project/drb_service.rb +11 -16
  58. data/plugins/project/lib/project/find_file_dialog.rb +49 -94
  59. data/plugins/project/lib/project/recent_directories.rb +41 -0
  60. data/plugins/redcar/redcar.rb +62 -34
  61. data/plugins/snippets/features/snippet_indenting.feature +87 -0
  62. data/plugins/snippets/features/snippets.feature +371 -0
  63. data/plugins/snippets/features/step_definitions/snippet_steps.rb +16 -0
  64. data/plugins/snippets/features/support/env.rb +2 -0
  65. data/plugins/snippets/lib/snippets.rb +112 -0
  66. data/plugins/snippets/lib/snippets/document_controller.rb +579 -0
  67. data/plugins/snippets/lib/snippets/explorer.rb +48 -0
  68. data/plugins/snippets/lib/snippets/tab_handler.rb +84 -0
  69. data/plugins/snippets/plugin.rb +9 -0
  70. data/plugins/textmate/lib/textmate.rb +110 -0
  71. data/plugins/textmate/lib/textmate/bundle.rb +96 -0
  72. data/plugins/textmate/lib/textmate/environment.rb +74 -0
  73. data/plugins/textmate/lib/textmate/plist.rb +80 -0
  74. data/plugins/textmate/lib/textmate/preference.rb +117 -0
  75. data/plugins/textmate/lib/textmate/snippet.rb +43 -0
  76. data/plugins/textmate/plugin.rb +8 -0
  77. data/plugins/tree_view_swt/lib/tree_view_swt.rb +10 -1
  78. data/textmate/Bundles/Apache.tmbundle/Preferences/Comments.tmPreferences +24 -0
  79. data/textmate/Bundles/Apache.tmbundle/Preferences/Completions.plist +404 -0
  80. data/textmate/Bundles/Apache.tmbundle/Preferences/Completions___Modules.tmPreferences +95 -0
  81. data/textmate/Bundles/Apache.tmbundle/Preferences/Completions___Modules_Identifiers.tmPreferences +80 -0
  82. data/textmate/Bundles/Apache.tmbundle/Preferences/Default_Tag_Inside_Virtual_Host.tmPreferences +24 -0
  83. data/textmate/Bundles/Apache.tmbundle/Preferences/Miscellaneous.plist +31 -0
  84. data/textmate/Bundles/Apache.tmbundle/Preferences/Symbols___Directory.tmPreferences +19 -0
  85. data/textmate/Bundles/Apache.tmbundle/Preferences/Symbols___Location.tmPreferences +19 -0
  86. data/textmate/Bundles/Apache.tmbundle/Preferences/Symbols___VHost_Directory.tmPreferences +19 -0
  87. data/textmate/Bundles/Apache.tmbundle/Preferences/Symbols___VHost_Location.tmPreferences +19 -0
  88. data/textmate/Bundles/Apache.tmbundle/Preferences/Symbols___Virtual_Host.plist +19 -0
  89. data/textmate/Bundles/Apache.tmbundle/Snippets/AllowOverride___allow__.tmSnippet +16 -0
  90. data/textmate/Bundles/Apache.tmbundle/Snippets/Directory.tmSnippet +19 -0
  91. data/textmate/Bundles/Apache.tmbundle/Snippets/Options___opt__.tmSnippet +16 -0
  92. data/textmate/Bundles/Apache.tmbundle/Snippets/VirtualHost___vhost__.plist +22 -0
  93. data/textmate/Bundles/Blogging.tmbundle/Snippets/Comments___comments__.plist +16 -0
  94. data/textmate/Bundles/Blogging.tmbundle/Snippets/Cut___cut__.tmSnippet +17 -0
  95. data/textmate/Bundles/Blogging.tmbundle/Snippets/Date___date__.plist +16 -0
  96. data/textmate/Bundles/Blogging.tmbundle/Snippets/Keywords___keyw__.plist +16 -0
  97. data/textmate/Bundles/Blogging.tmbundle/Snippets/Ping___ping__.plist +17 -0
  98. data/textmate/Bundles/Blogging.tmbundle/Snippets/Pings___pings__.plist +16 -0
  99. data/textmate/Bundles/Blogging.tmbundle/Snippets/Tags___tags__.plist +16 -0
  100. data/textmate/Bundles/Blogging.tmbundle/Snippets/Title___title__.plist +16 -0
  101. data/textmate/Bundles/Bundle Development.tmbundle/Preferences/Symbol_List.tmPreferences +21 -0
  102. data/textmate/Bundles/Bundle Development.tmbundle/Preferences/Symbol_List___Repository_Separator__.tmPreferences +21 -0
  103. data/textmate/Bundles/Bundle Development.tmbundle/Preferences/Symbol_List___Repository_item_scopes__.tmPreferences +21 -0
  104. data/textmate/Bundles/Bundle Development.tmbundle/Preferences/Symbol_List___Repository_items__.tmPreferences +21 -0
  105. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Begin_Captures.tmSnippet +18 -0
  106. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Captures.tmSnippet +18 -0
  107. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Comment.tmSnippet +16 -0
  108. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Content_Name.tmSnippet +16 -0
  109. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Disable.tmSnippet +16 -0
  110. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/ENV____TM___________.tmSnippet +16 -0
  111. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/End_Captures.tmSnippet +18 -0
  112. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Grammar____Single_Quotes.tmSnippet +16 -0
  113. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Include.tmSnippet +16 -0
  114. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Match.tmSnippet +18 -0
  115. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Name.tmSnippet +16 -0
  116. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Patterns.tmSnippet +18 -0
  117. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Patterns___Repository__.tmSnippet +20 -0
  118. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Repository.tmSnippet +20 -0
  119. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Require___Support__lib__________.tmSnippet +16 -0
  120. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Rule___Begin____End__.tmSnippet +19 -0
  121. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Rule___Repository__.tmSnippet +20 -0
  122. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Rule________Begin____End___Inside_Rule__.tmSnippet +17 -0
  123. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Rule________Match___Inside_Rule__.tmSnippet +16 -0
  124. data/textmate/Bundles/Bundle Development.tmbundle/Snippets/Rule________Match___Repository__.tmSnippet +19 -0
  125. data/textmate/Bundles/C Sharp.tmbundle/Preferences/Miscellaneous___NAnt_Build_File__.tmPreferences +59 -0
  126. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Case.tmSnippet +19 -0
  127. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Class.tmSnippet +22 -0
  128. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Default.tmSnippet +19 -0
  129. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Delegate.tmSnippet +21 -0
  130. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Do_While.tmSnippet +20 -0
  131. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Else.tmSnippet +19 -0
  132. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Else_If.tmSnippet +20 -0
  133. data/textmate/Bundles/C Sharp.tmbundle/Snippets/For.tmSnippet +19 -0
  134. data/textmate/Bundles/C Sharp.tmbundle/Snippets/ForEach.tmSnippet +19 -0
  135. data/textmate/Bundles/C Sharp.tmbundle/Snippets/If.tmSnippet +19 -0
  136. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Interface.tmSnippet +22 -0
  137. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Main_Method.tmSnippet +24 -0
  138. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Namespace.tmSnippet +20 -0
  139. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Private_Method.tmSnippet +22 -0
  140. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Property_RO.tmSnippet +23 -0
  141. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Property_RW.tmSnippet +27 -0
  142. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Public_Method.tmSnippet +22 -0
  143. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Singleton_Class.tmSnippet +39 -0
  144. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Struct.tmSnippet +22 -0
  145. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Switch.tmSnippet +21 -0
  146. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Try_Catch_Finally.tmSnippet +27 -0
  147. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Using.tmSnippet +16 -0
  148. data/textmate/Bundles/C Sharp.tmbundle/Snippets/While.tmSnippet +19 -0
  149. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Wrap_Selection_In_Try_Catch.tmSnippet +23 -0
  150. data/textmate/Bundles/C Sharp.tmbundle/Snippets/Writeline.tmSnippet +17 -0
  151. data/textmate/Bundles/C++ Qt.tmbundle/Preferences/Qt_C_____Completitions.tmPreferences +161 -0
  152. data/textmate/Bundles/C++ Qt.tmbundle/Preferences/Qt_C_____Indentation_Rules.tmPreferences +19 -0
  153. data/textmate/Bundles/C++ Qt.tmbundle/Preferences/qmake_Comments.tmPreferences +24 -0
  154. data/textmate/Bundles/C++ Qt.tmbundle/Preferences/qmake_Completitions.tmPreferences +44 -0
  155. data/textmate/Bundles/C++ Qt.tmbundle/Preferences/qmake_Typing_Pairs.tmPreferences +22 -0
  156. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/Block_Comment.tmSnippet +18 -0
  157. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/Block_Comment_Newline.tmSnippet +17 -0
  158. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/QTimer____singleShot_______.tmSnippet +16 -0
  159. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/Q_PROPERTY.tmSnippet +16 -0
  160. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/connect.tmSnippet +16 -0
  161. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/disconnect.tmSnippet +16 -0
  162. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/foreach.tmSnippet +19 -0
  163. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/main___qmain__.tmSnippet +23 -0
  164. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/qSort_______.tmSnippet +16 -0
  165. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/qWarning___warn__.tmSnippet +16 -0
  166. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/qmake_Project_template_stub.tmSnippet +36 -0
  167. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/toLatin1_____data_______latin__.tmSnippet +16 -0
  168. data/textmate/Bundles/C++ Qt.tmbundle/Snippets/toUtf8_____data____.tmSnippet +16 -0
  169. data/textmate/Bundles/C.tmbundle/Preferences/Comments___C______.tmPreferences +42 -0
  170. data/textmate/Bundles/C.tmbundle/Preferences/Disable_Spell_Checking.plist +17 -0
  171. data/textmate/Bundles/C.tmbundle/Preferences/Include_Completion.plist +19 -0
  172. data/textmate/Bundles/C.tmbundle/Preferences/Include_Completion___System__.tmPreferences +89 -0
  173. data/textmate/Bundles/C.tmbundle/Preferences/Include_typing_pairs.plist +37 -0
  174. data/textmate/Bundles/C.tmbundle/Preferences/Indentation_Rules.plist +38 -0
  175. data/textmate/Bundles/C.tmbundle/Preferences/Indentation_Rules___Comments__.tmPreferences +23 -0
  176. data/textmate/Bundles/C.tmbundle/Preferences/Symbol_List___Indent_Class_Methods.tmPreferences +20 -0
  177. data/textmate/Bundles/C.tmbundle/Preferences/Symbol_List___Prefix_Banner_Items.tmPreferences +20 -0
  178. data/textmate/Bundles/C.tmbundle/Preferences/Template__cast_typing_pairs.plist +29 -0
  179. data/textmate/Bundles/C.tmbundle/Snippets/010_main_______main__.plist +20 -0
  180. data/textmate/Bundles/C.tmbundle/Snippets/030_for_int_loop___fori__.plist +19 -0
  181. data/textmate/Bundles/C.tmbundle/Snippets/Enumeration.tmSnippet +16 -0
  182. data/textmate/Bundles/C.tmbundle/Snippets/Include_header_once_only_guard.plist +28 -0
  183. data/textmate/Bundles/C.tmbundle/Snippets/Shared_Pointer.tmSnippet +16 -0
  184. data/textmate/Bundles/C.tmbundle/Snippets/Typedef.tmSnippet +16 -0
  185. data/textmate/Bundles/C.tmbundle/Snippets/__1_begin_________1_end_______beginend__.plist +16 -0
  186. data/textmate/Bundles/C.tmbundle/Snippets/__endif.plist +17 -0
  187. data/textmate/Bundles/C.tmbundle/Snippets/__ifndef__________define__________endif.tmSnippet +18 -0
  188. data/textmate/Bundles/C.tmbundle/Snippets/__include________inc__.plist +16 -0
  189. data/textmate/Bundles/C.tmbundle/Snippets/__pragma_mark___mark__.plist +21 -0
  190. data/textmate/Bundles/C.tmbundle/Snippets/class______class__.plist +24 -0
  191. data/textmate/Bundles/C.tmbundle/Snippets/do___while_loop___do__.plist +18 -0
  192. data/textmate/Bundles/C.tmbundle/Snippets/fprintf_______.tmSnippet +16 -0
  193. data/textmate/Bundles/C.tmbundle/Snippets/if______if__.plist +19 -0
  194. data/textmate/Bundles/C.tmbundle/Snippets/namespace______namespace__.plist +19 -0
  195. data/textmate/Bundles/C.tmbundle/Snippets/next___include________Inc__.plist +16 -0
  196. data/textmate/Bundles/C.tmbundle/Snippets/printf______printf__.plist +16 -0
  197. data/textmate/Bundles/C.tmbundle/Snippets/read_file___readF__.plist +23 -0
  198. data/textmate/Bundles/C.tmbundle/Snippets/std____map___map__.plist +16 -0
  199. data/textmate/Bundles/C.tmbundle/Snippets/std____vector___v__.plist +16 -0
  200. data/textmate/Bundles/C.tmbundle/Snippets/struct.plist +19 -0
  201. data/textmate/Bundles/C.tmbundle/Snippets/template___typename________template__.plist +16 -0
  202. data/textmate/Bundles/CSS.tmbundle/Preferences/Comments.tmPreferences +36 -0
  203. data/textmate/Bundles/CSS.tmbundle/Preferences/Completions.tmPreferences +102 -0
  204. data/textmate/Bundles/CSS.tmbundle/Preferences/Miscellaneous.tmPreferences +46 -0
  205. data/textmate/Bundles/CSS.tmbundle/Preferences/PropertyName.tmPreferences +22 -0
  206. data/textmate/Bundles/CSS.tmbundle/Preferences/Property_Completions.tmPreferences +151 -0
  207. data/textmate/Bundles/CSS.tmbundle/Preferences/Property_Value_Completions.tmPreferences +144 -0
  208. data/textmate/Bundles/CSS.tmbundle/Preferences/Symbol_List___Group.tmPreferences +19 -0
  209. data/textmate/Bundles/CSS.tmbundle/Preferences/Symbol_list.tmPreferences +19 -0
  210. data/textmate/Bundles/CSS.tmbundle/Snippets/Fixed_Position_Bottom_100___wide_IE6.tmSnippet +18 -0
  211. data/textmate/Bundles/CSS.tmbundle/Snippets/__important_CSS_______.plist +18 -0
  212. data/textmate/Bundles/CSS.tmbundle/Snippets/background____color_image_repeat_attachment_position___background__.plist +16 -0
  213. data/textmate/Bundles/CSS.tmbundle/Snippets/background__attachment___scroll__fixed___background__.plist +16 -0
  214. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____color__hex___background__.plist +16 -0
  215. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____color__name___background__.plist +16 -0
  216. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____color__rgb___background__.plist +16 -0
  217. data/textmate/Bundles/CSS.tmbundle/Snippets/background__color____transparent___background__.plist +16 -0
  218. data/textmate/Bundles/CSS.tmbundle/Snippets/background__image____none___background__.plist +16 -0
  219. data/textmate/Bundles/CSS.tmbundle/Snippets/background__image____url___background__.plist +16 -0
  220. data/textmate/Bundles/CSS.tmbundle/Snippets/background__position____position___background__.plist +16 -0
  221. data/textmate/Bundles/CSS.tmbundle/Snippets/background__repeat____r__r__x__r__y__n__r___background__.plist +16 -0
  222. data/textmate/Bundles/CSS.tmbundle/Snippets/border_____size_style_color___border__.plist +16 -0
  223. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom___size_style_color___border__.plist +16 -0
  224. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom__color___size_style_color___border__.plist +16 -0
  225. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom__style___size_style_color___border__.plist +16 -0
  226. data/textmate/Bundles/CSS.tmbundle/Snippets/border__bottom__width___size_style_color___border__.plist +16 -0
  227. data/textmate/Bundles/CSS.tmbundle/Snippets/border__color___color___border__.plist +16 -0
  228. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left___size_style_color___border__.plist +16 -0
  229. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left__color___color___border__.plist +16 -0
  230. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left__style___style___border__.plist +16 -0
  231. data/textmate/Bundles/CSS.tmbundle/Snippets/border__left__width___size___border__.plist +16 -0
  232. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right___size_style_color___border__.plist +16 -0
  233. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right__color___color___border__.plist +16 -0
  234. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right__style___style___border__.plist +16 -0
  235. data/textmate/Bundles/CSS.tmbundle/Snippets/border__right__width___size___border__.plist +16 -0
  236. data/textmate/Bundles/CSS.tmbundle/Snippets/border__style___style___border__.plist +16 -0
  237. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top___size_style_color___border__.plist +16 -0
  238. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top__color___color___border__.plist +16 -0
  239. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top__style___style___border__.plist +16 -0
  240. data/textmate/Bundles/CSS.tmbundle/Snippets/border__top__width___size___border__.plist +16 -0
  241. data/textmate/Bundles/CSS.tmbundle/Snippets/border__width___width___border__.plist +16 -0
  242. data/textmate/Bundles/CSS.tmbundle/Snippets/clear___value___clear__.plist +16 -0
  243. data/textmate/Bundles/CSS.tmbundle/Snippets/color____color__hex___color__.plist +16 -0
  244. data/textmate/Bundles/CSS.tmbundle/Snippets/color____color__name___color__.plist +16 -0
  245. data/textmate/Bundles/CSS.tmbundle/Snippets/color____color__rgb___color__.plist +16 -0
  246. data/textmate/Bundles/CSS.tmbundle/Snippets/cursor___type___cursor__.plist +16 -0
  247. data/textmate/Bundles/CSS.tmbundle/Snippets/cursor___url___cursor__.plist +16 -0
  248. data/textmate/Bundles/CSS.tmbundle/Snippets/direction___ltr__rtl___direction__.plist +16 -0
  249. data/textmate/Bundles/CSS.tmbundle/Snippets/display___block___display__.plist +16 -0
  250. data/textmate/Bundles/CSS.tmbundle/Snippets/display___common__types___display__.plist +16 -0
  251. data/textmate/Bundles/CSS.tmbundle/Snippets/display___inline___display__.plist +16 -0
  252. data/textmate/Bundles/CSS.tmbundle/Snippets/display___table__types___display__.plist +16 -0
  253. data/textmate/Bundles/CSS.tmbundle/Snippets/filter___AlphaImageLoader___for_IE_PNGs_____background__.plist +19 -0
  254. data/textmate/Bundles/CSS.tmbundle/Snippets/float___left__right__none___float__.plist +16 -0
  255. data/textmate/Bundles/CSS.tmbundle/Snippets/font_____style_variant_weight_size__line__height_font___family___font__.plist +16 -0
  256. data/textmate/Bundles/CSS.tmbundle/Snippets/font___size_font___font__.plist +16 -0
  257. data/textmate/Bundles/CSS.tmbundle/Snippets/font__family_____family___font__.plist +16 -0
  258. data/textmate/Bundles/CSS.tmbundle/Snippets/font__size___size___font__.plist +16 -0
  259. data/textmate/Bundles/CSS.tmbundle/Snippets/font__style_____normal__italic__oblique___font__.plist +16 -0
  260. data/textmate/Bundles/CSS.tmbundle/Snippets/font__variant_____normal__small__caps___font__.plist +16 -0
  261. data/textmate/Bundles/CSS.tmbundle/Snippets/font__weight___weight___font__.plist +16 -0
  262. data/textmate/Bundles/CSS.tmbundle/Snippets/letter__spacing_____length__em___letter__.plist +16 -0
  263. data/textmate/Bundles/CSS.tmbundle/Snippets/letter__spacing_____length__px___letter__.plist +16 -0
  264. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style___type_position_image___list__.plist +16 -0
  265. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__image___url___list__.plist +16 -0
  266. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__position___pos___list__.plist +16 -0
  267. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___asian___list__.plist +16 -0
  268. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___marker__list__.plist +16 -0
  269. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___numeric___list__.plist +16 -0
  270. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___other___list__.plist +16 -0
  271. data/textmate/Bundles/CSS.tmbundle/Snippets/list__style__type___roman__alpha__greek___list__.plist +16 -0
  272. data/textmate/Bundles/CSS.tmbundle/Snippets/margin___T_R_B_L___margin__.plist +16 -0
  273. data/textmate/Bundles/CSS.tmbundle/Snippets/margin___V_H___margin__.plist +16 -0
  274. data/textmate/Bundles/CSS.tmbundle/Snippets/margin_____all___margin__.plist +16 -0
  275. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__bottom___length___margin__.plist +16 -0
  276. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__left___length___margin__.plist +16 -0
  277. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__right___length___margin__.plist +16 -0
  278. data/textmate/Bundles/CSS.tmbundle/Snippets/margin__top___length___margin__.plist +16 -0
  279. data/textmate/Bundles/CSS.tmbundle/Snippets/marker__offset___auto___marker__.plist +16 -0
  280. data/textmate/Bundles/CSS.tmbundle/Snippets/marker__offset___length___marker__.plist +16 -0
  281. data/textmate/Bundles/CSS.tmbundle/Snippets/opacity_____for_Safari___FF_and_IE_____opacity__.plist +18 -0
  282. data/textmate/Bundles/CSS.tmbundle/Snippets/overflow___type___overflow__.plist +16 -0
  283. data/textmate/Bundles/CSS.tmbundle/Snippets/padding_____T_R_B_L___padding__.plist +16 -0
  284. data/textmate/Bundles/CSS.tmbundle/Snippets/padding_____V_H___padding__.plist +16 -0
  285. data/textmate/Bundles/CSS.tmbundle/Snippets/padding_____all___padding__.plist +16 -0
  286. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__bottom___length___margin__.plist +16 -0
  287. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__left___length___margin__.plist +16 -0
  288. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__right___length___margin__.plist +16 -0
  289. data/textmate/Bundles/CSS.tmbundle/Snippets/padding__top___length___margin__.plist +16 -0
  290. data/textmate/Bundles/CSS.tmbundle/Snippets/position___type___position__.plist +16 -0
  291. data/textmate/Bundles/CSS.tmbundle/Snippets/properties_______________.plist +19 -0
  292. data/textmate/Bundles/CSS.tmbundle/Snippets/scrollbar.tmSnippet +23 -0
  293. data/textmate/Bundles/CSS.tmbundle/Snippets/selection.tmSnippet +20 -0
  294. data/textmate/Bundles/CSS.tmbundle/Snippets/text__align___left__center__right___txt__.plist +16 -0
  295. data/textmate/Bundles/CSS.tmbundle/Snippets/text__decoration___none__underline__overline__line__through__blink___text__.plist +16 -0
  296. data/textmate/Bundles/CSS.tmbundle/Snippets/text__indent___length___text__.plist +16 -0
  297. data/textmate/Bundles/CSS.tmbundle/Snippets/text__shadow___color__hex_x_y_blur___text__.plist +16 -0
  298. data/textmate/Bundles/CSS.tmbundle/Snippets/text__shadow___color__rgb_x_y_blur___text__.plist +16 -0
  299. data/textmate/Bundles/CSS.tmbundle/Snippets/text__shadow___none___text__.plist +16 -0
  300. data/textmate/Bundles/CSS.tmbundle/Snippets/text__transform___capitalize__upper__lower___text__.plist +16 -0
  301. data/textmate/Bundles/CSS.tmbundle/Snippets/text__transform___none___text__.plist +16 -0
  302. data/textmate/Bundles/CSS.tmbundle/Snippets/vertical__align___type___vertical__.plist +16 -0
  303. data/textmate/Bundles/CSS.tmbundle/Snippets/visibility___type___visibility__.plist +16 -0
  304. data/textmate/Bundles/CSS.tmbundle/Snippets/white__space____normal__pre__nowrap___white__.plist +16 -0
  305. data/textmate/Bundles/CSS.tmbundle/Snippets/word__spacing____length___word__.plist +16 -0
  306. data/textmate/Bundles/CSS.tmbundle/Snippets/word__spacing____normal___word__.plist +16 -0
  307. data/textmate/Bundles/CSS.tmbundle/Snippets/z__index___index___z__.plist +16 -0
  308. data/textmate/Bundles/Clojure.tmbundle/Preferences/Miscellaneous.tmPreferences +71 -0
  309. data/textmate/Bundles/Clojure.tmbundle/Snippets/def.tmSnippet +16 -0
  310. data/textmate/Bundles/Clojure.tmbundle/Snippets/defn.tmSnippet +19 -0
  311. data/textmate/Bundles/Cucumber.tmbundle/Preferences/Comments.tmPreferences +38 -0
  312. data/textmate/Bundles/Cucumber.tmbundle/Preferences/Cucumber_Plain_Text_Feature_Completions.tmPreferences +30 -0
  313. data/textmate/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Scenario.tmPreferences +19 -0
  314. data/textmate/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Steps.tmPreferences +17 -0
  315. data/textmate/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Steps_with_String.tmPreferences +17 -0
  316. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Cucumber_Multiline_Steps.tmSnippet +18 -0
  317. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Given_Step.tmSnippet +20 -0
  318. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario.tmSnippet +22 -0
  319. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario_Outline.tmSnippet +20 -0
  320. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario___heading_only__.tmSnippet +18 -0
  321. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Story.tmSnippet +25 -0
  322. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Then_Step.tmSnippet +20 -0
  323. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Then_Step_Plaintext.tmSnippet +16 -0
  324. data/textmate/Bundles/Cucumber.tmbundle/Snippets/When_Step.tmSnippet +20 -0
  325. data/textmate/Bundles/Cucumber.tmbundle/Snippets/When_Step_Plaintext.tmSnippet +16 -0
  326. data/textmate/Bundles/D.tmbundle/Preferences/Comments.tmPreferences +60 -0
  327. data/textmate/Bundles/D.tmbundle/Preferences/Indentation_Rules.tmPreferences +21 -0
  328. data/textmate/Bundles/D.tmbundle/Preferences/Symbol_List__Method__Constructor.tmPreferences +20 -0
  329. data/textmate/Bundles/D.tmbundle/Snippets/Continue_Block_Comment.tmSnippet +18 -0
  330. data/textmate/Bundles/D.tmbundle/Snippets/class.tmSnippet +21 -0
  331. data/textmate/Bundles/D.tmbundle/Snippets/constant.tmSnippet +16 -0
  332. data/textmate/Bundles/D.tmbundle/Snippets/debug.tmSnippet +18 -0
  333. data/textmate/Bundles/D.tmbundle/Snippets/debugm.tmSnippet +18 -0
  334. data/textmate/Bundles/D.tmbundle/Snippets/enum.tmSnippet +16 -0
  335. data/textmate/Bundles/D.tmbundle/Snippets/err.tmSnippet +16 -0
  336. data/textmate/Bundles/D.tmbundle/Snippets/err_format.tmSnippet +16 -0
  337. data/textmate/Bundles/D.tmbundle/Snippets/foreach.tmSnippet +18 -0
  338. data/textmate/Bundles/D.tmbundle/Snippets/foreach_reverse.tmSnippet +18 -0
  339. data/textmate/Bundles/D.tmbundle/Snippets/if.tmSnippet +18 -0
  340. data/textmate/Bundles/D.tmbundle/Snippets/if_else.tmSnippet +21 -0
  341. data/textmate/Bundles/D.tmbundle/Snippets/import.tmSnippet +16 -0
  342. data/textmate/Bundles/D.tmbundle/Snippets/log_error.tmSnippet +16 -0
  343. data/textmate/Bundles/D.tmbundle/Snippets/log_fatal.tmSnippet +16 -0
  344. data/textmate/Bundles/D.tmbundle/Snippets/log_info.tmSnippet +16 -0
  345. data/textmate/Bundles/D.tmbundle/Snippets/log_trace.tmSnippet +16 -0
  346. data/textmate/Bundles/D.tmbundle/Snippets/log_warn.tmSnippet +16 -0
  347. data/textmate/Bundles/D.tmbundle/Snippets/logger.tmSnippet +22 -0
  348. data/textmate/Bundles/D.tmbundle/Snippets/main.tmSnippet +18 -0
  349. data/textmate/Bundles/D.tmbundle/Snippets/main_with_args.tmSnippet +19 -0
  350. data/textmate/Bundles/D.tmbundle/Snippets/method.tmSnippet +21 -0
  351. data/textmate/Bundles/D.tmbundle/Snippets/out.tmSnippet +16 -0
  352. data/textmate/Bundles/D.tmbundle/Snippets/out_format.tmSnippet +16 -0
  353. data/textmate/Bundles/D.tmbundle/Snippets/return.tmSnippet +16 -0
  354. data/textmate/Bundles/D.tmbundle/Snippets/struct.tmSnippet +21 -0
  355. data/textmate/Bundles/D.tmbundle/Snippets/try_catch.tmSnippet +20 -0
  356. data/textmate/Bundles/D.tmbundle/Snippets/try_catch_finally.tmSnippet +22 -0
  357. data/textmate/Bundles/D.tmbundle/Snippets/try_finally.tmSnippet +20 -0
  358. data/textmate/Bundles/D.tmbundle/Snippets/unittest.tmSnippet +18 -0
  359. data/textmate/Bundles/D.tmbundle/Snippets/version.tmSnippet +18 -0
  360. data/textmate/Bundles/D.tmbundle/Snippets/while.tmSnippet +18 -0
  361. data/textmate/Bundles/Diff.tmbundle/Preferences/Markup_style___Changed.plist +19 -0
  362. data/textmate/Bundles/Diff.tmbundle/Preferences/Markup_style___Deleted.plist +19 -0
  363. data/textmate/Bundles/Diff.tmbundle/Preferences/Markup_style___Diff_metadata.plist +21 -0
  364. data/textmate/Bundles/Diff.tmbundle/Preferences/Markup_style___Header.plist +19 -0
  365. data/textmate/Bundles/Diff.tmbundle/Preferences/Markup_style___Inserted.plist +19 -0
  366. data/textmate/Bundles/Diff.tmbundle/Preferences/Markup_style___Range.plist +21 -0
  367. data/textmate/Bundles/Diff.tmbundle/Preferences/Symbol_List___Indent_Ranges.plist +24 -0
  368. data/textmate/Bundles/DokuWiki.tmbundle/Preferences/Disable_spell_checking_in_raw.tmPreferences +17 -0
  369. data/textmate/Bundles/DokuWiki.tmbundle/Preferences/Show_Heading_in_list.tmPreferences +25 -0
  370. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Bold.tmSnippet +16 -0
  371. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Code.tmSnippet +19 -0
  372. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Footnote.tmSnippet +16 -0
  373. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Heading_1.tmSnippet +17 -0
  374. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Heading_2.tmSnippet +17 -0
  375. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Heading_3.tmSnippet +17 -0
  376. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Heading_4.tmSnippet +17 -0
  377. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Heading_5.tmSnippet +17 -0
  378. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Image.tmSnippet +16 -0
  379. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Italic.tmSnippet +16 -0
  380. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Left_Header.tmSnippet +16 -0
  381. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Link.tmSnippet +16 -0
  382. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Numbered_item.tmSnippet +16 -0
  383. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Numbered_item_2.tmSnippet +19 -0
  384. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Table.tmSnippet +20 -0
  385. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Table_Cell.tmSnippet +16 -0
  386. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Top_Header.tmSnippet +16 -0
  387. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Underlined.tmSnippet +16 -0
  388. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Unnumbered_item.tmSnippet +16 -0
  389. data/textmate/Bundles/DokuWiki.tmbundle/Snippets/Unnumbered_item_2.tmSnippet +19 -0
  390. data/textmate/Bundles/F-Script.tmbundle/Preferences/Block_typing_pairs.plist +38 -0
  391. data/textmate/Bundles/F-Script.tmbundle/Preferences/Block_typing_pairs_for_blocks.plist +42 -0
  392. data/textmate/Bundles/F-Script.tmbundle/Preferences/Miscellaneous.plist +40 -0
  393. data/textmate/Bundles/F-Script.tmbundle/Snippets/ifFalse_____if__.plist +18 -0
  394. data/textmate/Bundles/F-Script.tmbundle/Snippets/ifFalse__ifTrue_____ift__.plist +20 -0
  395. data/textmate/Bundles/F-Script.tmbundle/Snippets/ifTrue_____it__.plist +18 -0
  396. data/textmate/Bundles/F-Script.tmbundle/Snippets/ifTrue__ifFalse___itf__.plist +20 -0
  397. data/textmate/Bundles/F-Script.tmbundle/Snippets/to__by__do_____tbd__.plist +18 -0
  398. data/textmate/Bundles/F-Script.tmbundle/Snippets/to__do_____td__.plist +18 -0
  399. data/textmate/Bundles/HTML.tmbundle/Preferences/Comments.plist +30 -0
  400. data/textmate/Bundles/HTML.tmbundle/Preferences/Completions_HTML_Attributes.tmPreferences +346 -0
  401. data/textmate/Bundles/HTML.tmbundle/Preferences/Empty_tag_typing_pairs.plist +26 -0
  402. data/textmate/Bundles/HTML.tmbundle/Preferences/Miscellaneous.plist +93 -0
  403. data/textmate/Bundles/HTML.tmbundle/Preferences/Symbol_List___ID.plist +17 -0
  404. data/textmate/Bundles/HTML.tmbundle/Preferences/Tag_Completions.tmPreferences +30 -0
  405. data/textmate/Bundles/HTML.tmbundle/Preferences/Tag_preferences.plist +48 -0
  406. data/textmate/Bundles/HTML.tmbundle/Snippets/Arrow___arrow__.plist +16 -0
  407. data/textmate/Bundles/HTML.tmbundle/Snippets/Backspace___backspace__.plist +16 -0
  408. data/textmate/Bundles/HTML.tmbundle/Snippets/Backtab___backtab__.plist +16 -0
  409. data/textmate/Bundles/HTML.tmbundle/Snippets/Command___command__.plist +16 -0
  410. data/textmate/Bundles/HTML.tmbundle/Snippets/Control___control__.plist +16 -0
  411. data/textmate/Bundles/HTML.tmbundle/Snippets/Delete___delete__.plist +16 -0
  412. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_HTML_4_0_Strict.plist +18 -0
  413. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTL_1_0_Frameset.plist +18 -0
  414. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTML_1_0_Strict.plist +18 -0
  415. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTML_1_0_Transitional.plist +18 -0
  416. data/textmate/Bundles/HTML.tmbundle/Snippets/DocType_XHTML_1_1.plist +18 -0
  417. data/textmate/Bundles/HTML.tmbundle/Snippets/Down___down__.plist +16 -0
  418. data/textmate/Bundles/HTML.tmbundle/Snippets/Embed_QT_movie___movie__.plist +26 -0
  419. data/textmate/Bundles/HTML.tmbundle/Snippets/Emphasize.tmSnippet +16 -0
  420. data/textmate/Bundles/HTML.tmbundle/Snippets/Enter___enter__.plist +16 -0
  421. data/textmate/Bundles/HTML.tmbundle/Snippets/Escape___escape__.plist +16 -0
  422. data/textmate/Bundles/HTML.tmbundle/Snippets/Fieldset.tmSnippet +22 -0
  423. data/textmate/Bundles/HTML.tmbundle/Snippets/HTML________4_0_Transitional___doctype__.plist +18 -0
  424. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer.tmSnippet +16 -0
  425. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_5_0_only.tmSnippet +16 -0
  426. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_5_5_only.tmSnippet +16 -0
  427. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_5_x.tmSnippet +16 -0
  428. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_6_and_below.tmSnippet +16 -0
  429. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_6_only.tmSnippet +16 -0
  430. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___Internet_Explorer_7__.tmSnippet +16 -0
  431. data/textmate/Bundles/HTML.tmbundle/Snippets/IE_Conditional_Comment___NOT_Internet_Explorer.tmSnippet +16 -0
  432. data/textmate/Bundles/HTML.tmbundle/Snippets/Input_with_Label.tmSnippet +19 -0
  433. data/textmate/Bundles/HTML.tmbundle/Snippets/Left___left__.plist +16 -0
  434. data/textmate/Bundles/HTML.tmbundle/Snippets/Option.tmSnippet +18 -0
  435. data/textmate/Bundles/HTML.tmbundle/Snippets/Option___option__.plist +16 -0
  436. data/textmate/Bundles/HTML.tmbundle/Snippets/Return___return__.plist +16 -0
  437. data/textmate/Bundles/HTML.tmbundle/Snippets/Right___right__.plist +16 -0
  438. data/textmate/Bundles/HTML.tmbundle/Snippets/Select_Box.tmSnippet +22 -0
  439. data/textmate/Bundles/HTML.tmbundle/Snippets/Shift___shift__.plist +16 -0
  440. data/textmate/Bundles/HTML.tmbundle/Snippets/Smart_return__indent_for_tag_pairs.plist +18 -0
  441. data/textmate/Bundles/HTML.tmbundle/Snippets/Strong.tmSnippet +16 -0
  442. data/textmate/Bundles/HTML.tmbundle/Snippets/Tab___tab__.plist +16 -0
  443. data/textmate/Bundles/HTML.tmbundle/Snippets/Up___up__.plist +16 -0
  444. data/textmate/Bundles/HTML.tmbundle/Snippets/Wrap_Selection_In_Tag.plist +16 -0
  445. data/textmate/Bundles/HTML.tmbundle/Snippets/Wrap_in___________________.plist +14 -0
  446. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML_____input__.plist +16 -0
  447. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML_____textarea__.plist +16 -0
  448. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___a_mailto_____.plist +16 -0
  449. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___base__.plist +16 -0
  450. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___body__.plist +18 -0
  451. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___br_____.plist +16 -0
  452. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___div__.plist +18 -0
  453. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___form__.plist +20 -0
  454. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___h1__.plist +16 -0
  455. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___head__.plist +20 -0
  456. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___link__.plist +16 -0
  457. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___meta__.plist +16 -0
  458. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___nbsp___NonBreakingSpace.plist +16 -0
  459. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___script__.plist +18 -0
  460. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___script_src_____.plist +16 -0
  461. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___style__.plist +18 -0
  462. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___table__.plist +19 -0
  463. data/textmate/Bundles/HTML.tmbundle/Snippets/XHTML___title__.plist +16 -0
  464. data/textmate/Bundles/Haskell.tmbundle/Preferences/Comments.tmPreferences +36 -0
  465. data/textmate/Bundles/Haskell.tmbundle/Preferences/Indent_Patterns.plist +17 -0
  466. data/textmate/Bundles/Haskell.tmbundle/Preferences/Symbol_List.tmPreferences +17 -0
  467. data/textmate/Bundles/Haskell.tmbundle/Preferences/Typing_Pairs.plist +42 -0
  468. data/textmate/Bundles/Haskell.tmbundle/Snippets/Case.tmSnippet +17 -0
  469. data/textmate/Bundles/Haskell.tmbundle/Snippets/Instance.tmSnippet +17 -0
  470. data/textmate/Bundles/Haskell.tmbundle/Snippets/Main.tmSnippet +18 -0
  471. data/textmate/Bundles/Haskell.tmbundle/Snippets/__.plist +16 -0
  472. data/textmate/Bundles/Haskell.tmbundle/Snippets/module.plist +18 -0
  473. data/textmate/Bundles/Haskell.tmbundle/Snippets/t______f_t.tmSnippet +16 -0
  474. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/Bulletin_Board.tmPreferences +24 -0
  475. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/DokuWiki.tmPreferences +24 -0
  476. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/Fallback___not_supported__.tmPreferences +22 -0
  477. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/HTML.tmPreferences +24 -0
  478. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/LaTeX.tmPreferences +24 -0
  479. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/Markdown.tmPreferences +24 -0
  480. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/Mediawiki.tmPreferences +24 -0
  481. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/MoinMoin.tmPreferences +24 -0
  482. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/TWiki.tmPreferences +24 -0
  483. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/Textile.tmPreferences +24 -0
  484. data/textmate/Bundles/Hyperlink Helper.tmbundle/Preferences/reStructuredText.tmPreferences +24 -0
  485. data/textmate/Bundles/Io.tmbundle/Preferences/Comments.tmPreferences +42 -0
  486. data/textmate/Bundles/Io.tmbundle/Preferences/Indentation_Rules.plist +21 -0
  487. data/textmate/Bundles/Io.tmbundle/Preferences/Typing_Pairs.plist +37 -0
  488. data/textmate/Bundles/Io.tmbundle/Snippets/Indented_Bracketed_Line.plist +20 -0
  489. data/textmate/Bundles/Io.tmbundle/Snippets/Indented_return.plist +18 -0
  490. data/textmate/Bundles/Io.tmbundle/Snippets/Method.plist +18 -0
  491. data/textmate/Bundles/Io.tmbundle/Snippets/Object_clone_do.plist +18 -0
  492. data/textmate/Bundles/Io.tmbundle/Snippets/UnitTest.plist +18 -0
  493. data/textmate/Bundles/Io.tmbundle/Snippets/assertEquals.plist +16 -0
  494. data/textmate/Bundles/Io.tmbundle/Snippets/clone_do.plist +18 -0
  495. data/textmate/Bundles/Io.tmbundle/Snippets/docSlot.plist +16 -0
  496. data/textmate/Bundles/Io.tmbundle/Snippets/newSlot.plist +16 -0
  497. data/textmate/Bundles/Io.tmbundle/Snippets/testMethod.plist +18 -0
  498. data/textmate/Bundles/Java.tmbundle/Preferences/Comments.tmPreferences +36 -0
  499. data/textmate/Bundles/Java.tmbundle/Preferences/Indentation_Rules.tmPreferences +21 -0
  500. data/textmate/Bundles/Java.tmbundle/Preferences/Symbol_List___Classes.tmPreferences +17 -0
  501. data/textmate/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Class_Methods.tmPreferences +22 -0
  502. data/textmate/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Classes.tmPreferences +19 -0
  503. data/textmate/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Inner_Class_Methods.tmPreferences +22 -0
  504. data/textmate/Bundles/Java.tmbundle/Preferences/Symbol_List___Inner_Inner_Classes.tmPreferences +19 -0
  505. data/textmate/Bundles/Java.tmbundle/Preferences/Symbol_List___Method.plist +22 -0
  506. data/textmate/Bundles/Java.tmbundle/Snippets/abstract.tmSnippet +16 -0
  507. data/textmate/Bundles/Java.tmbundle/Snippets/assert.tmSnippet +16 -0
  508. data/textmate/Bundles/Java.tmbundle/Snippets/break.tmSnippet +17 -0
  509. data/textmate/Bundles/Java.tmbundle/Snippets/case.tmSnippet +18 -0
  510. data/textmate/Bundles/Java.tmbundle/Snippets/catch.tmSnippet +18 -0
  511. data/textmate/Bundles/Java.tmbundle/Snippets/class.tmSnippet +18 -0
  512. data/textmate/Bundles/Java.tmbundle/Snippets/constant.tmSnippet +16 -0
  513. data/textmate/Bundles/Java.tmbundle/Snippets/constant_string.tmSnippet +16 -0
  514. data/textmate/Bundles/Java.tmbundle/Snippets/default.tmSnippet +17 -0
  515. data/textmate/Bundles/Java.tmbundle/Snippets/else.tmSnippet +18 -0
  516. data/textmate/Bundles/Java.tmbundle/Snippets/else_if.tmSnippet +18 -0
  517. data/textmate/Bundles/Java.tmbundle/Snippets/final.tmSnippet +16 -0
  518. data/textmate/Bundles/Java.tmbundle/Snippets/for.tmSnippet +18 -0
  519. data/textmate/Bundles/Java.tmbundle/Snippets/for___each__.tmSnippet +18 -0
  520. data/textmate/Bundles/Java.tmbundle/Snippets/if.tmSnippet +18 -0
  521. data/textmate/Bundles/Java.tmbundle/Snippets/import.tmSnippet +16 -0
  522. data/textmate/Bundles/Java.tmbundle/Snippets/import_junit_framework_TestCase__.tmSnippet +17 -0
  523. data/textmate/Bundles/Java.tmbundle/Snippets/interface.tmSnippet +18 -0
  524. data/textmate/Bundles/Java.tmbundle/Snippets/java_beans_.tmSnippet +16 -0
  525. data/textmate/Bundles/Java.tmbundle/Snippets/java_io.tmSnippet +16 -0
  526. data/textmate/Bundles/Java.tmbundle/Snippets/java_math.tmSnippet +16 -0
  527. data/textmate/Bundles/Java.tmbundle/Snippets/java_net_.tmSnippet +16 -0
  528. data/textmate/Bundles/Java.tmbundle/Snippets/java_util_.tmSnippet +16 -0
  529. data/textmate/Bundles/Java.tmbundle/Snippets/method.tmSnippet +19 -0
  530. data/textmate/Bundles/Java.tmbundle/Snippets/method___main__.tmSnippet +18 -0
  531. data/textmate/Bundles/Java.tmbundle/Snippets/package.tmSnippet +16 -0
  532. data/textmate/Bundles/Java.tmbundle/Snippets/print.tmSnippet +16 -0
  533. data/textmate/Bundles/Java.tmbundle/Snippets/println.tmSnippet +16 -0
  534. data/textmate/Bundles/Java.tmbundle/Snippets/private.tmSnippet +16 -0
  535. data/textmate/Bundles/Java.tmbundle/Snippets/protected.tmSnippet +16 -0
  536. data/textmate/Bundles/Java.tmbundle/Snippets/public.tmSnippet +16 -0
  537. data/textmate/Bundles/Java.tmbundle/Snippets/return.tmSnippet +16 -0
  538. data/textmate/Bundles/Java.tmbundle/Snippets/static.tmSnippet +16 -0
  539. data/textmate/Bundles/Java.tmbundle/Snippets/switch.tmSnippet +18 -0
  540. data/textmate/Bundles/Java.tmbundle/Snippets/synchronized.tmSnippet +16 -0
  541. data/textmate/Bundles/Java.tmbundle/Snippets/test.tmSnippet +18 -0
  542. data/textmate/Bundles/Java.tmbundle/Snippets/test_case.tmSnippet +18 -0
  543. data/textmate/Bundles/Java.tmbundle/Snippets/throw.tmSnippet +16 -0
  544. data/textmate/Bundles/Java.tmbundle/Snippets/variable.tmSnippet +16 -0
  545. data/textmate/Bundles/Java.tmbundle/Snippets/while.tmSnippet +18 -0
  546. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Preferences/Prototype_Completions.tmPreferences +185 -0
  547. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Ajax_Options.tmSnippet +23 -0
  548. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Ajax_PeriodicalUpdater.tmSnippet +16 -0
  549. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Ajax_Request.tmSnippet +16 -0
  550. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Ajax_Updater.tmSnippet +16 -0
  551. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Class_create.tmSnippet +20 -0
  552. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Create_Class_Alt.tmSnippet +23 -0
  553. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Appear.tmSnippet +16 -0
  554. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_BlindDown.tmSnippet +16 -0
  555. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_BlindUp.tmSnippet +16 -0
  556. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_DropOut.tmSnippet +16 -0
  557. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Fade.tmSnippet +16 -0
  558. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Fold.tmSnippet +16 -0
  559. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Grow.tmSnippet +16 -0
  560. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Highlight.tmSnippet +16 -0
  561. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Options.tmSnippet +21 -0
  562. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Puff.tmSnippet +16 -0
  563. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Pulsate.tmSnippet +16 -0
  564. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Shake.tmSnippet +16 -0
  565. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Shrink.tmSnippet +16 -0
  566. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_SlideDown.tmSnippet +16 -0
  567. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_SlideUp.tmSnippet +16 -0
  568. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_Squish.tmSnippet +16 -0
  569. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Effect_SwitchOff.tmSnippet +16 -0
  570. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_all.tmSnippet +18 -0
  571. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_any.tmSnippet +18 -0
  572. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_collect.tmSnippet +18 -0
  573. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_detect.tmSnippet +18 -0
  574. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_each.tmSnippet +18 -0
  575. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_each___element__.tmSnippet +19 -0
  576. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_each___index__.tmSnippet +18 -0
  577. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_inject.tmSnippet +19 -0
  578. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_invoke.tmSnippet +16 -0
  579. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_map.tmSnippet +18 -0
  580. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Enum_reject.tmSnippet +18 -0
  581. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Event_observe.tmSnippet +16 -0
  582. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Field_activate.tmSnippet +16 -0
  583. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Field_clear.tmSnippet +16 -0
  584. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Field_focus.tmSnippet +16 -0
  585. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Field_present.tmSnippet +16 -0
  586. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Field_select.tmSnippet +16 -0
  587. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Form_disable.tmSnippet +16 -0
  588. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Form_enable.tmSnippet +16 -0
  589. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Form_findFirstElement.tmSnippet +16 -0
  590. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Form_focusFirstElement.tmSnippet +16 -0
  591. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Form_getElements.tmSnippet +16 -0
  592. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Form_getInputs.tmSnippet +16 -0
  593. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Form_serialize.tmSnippet +16 -0
  594. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Function_bind.tmSnippet +16 -0
  595. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Function_bindAsEventListener.tmSnippet +16 -0
  596. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Insertion_After.tmSnippet +16 -0
  597. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Insertion_Before.tmSnippet +16 -0
  598. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Insertion_Bottom.tmSnippet +16 -0
  599. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Insertion_Top.tmSnippet +16 -0
  600. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Object_extend.tmSnippet +16 -0
  601. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Options.tmSnippet +18 -0
  602. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_absolutize.tmSnippet +16 -0
  603. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_clone.tmSnippet +16 -0
  604. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_cumulativeOffset.tmSnippet +16 -0
  605. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_offsetParent.tmSnippet +16 -0
  606. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_overlap.tmSnippet +16 -0
  607. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_page.tmSnippet +16 -0
  608. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_positionedOffset.tmSnippet +16 -0
  609. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_prepare.tmSnippet +16 -0
  610. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_realOffset.tmSnippet +16 -0
  611. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_relativize.tmSnippet +16 -0
  612. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_within.tmSnippet +16 -0
  613. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/Position_withinIncludingScrolloffsets.tmSnippet +16 -0
  614. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/__.tmSnippet +16 -0
  615. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Snippets/__function___________.tmSnippet +18 -0
  616. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/_____Select_DOM_Element__.tmSnippet +16 -0
  617. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/____this__.tmSnippet +16 -0
  618. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___ajaxError.tmSnippet +19 -0
  619. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___ajaxSend.tmSnippet +19 -0
  620. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___ajaxSetup.tmSnippet +28 -0
  621. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___ajaxSuccess.tmSnippet +18 -0
  622. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___ajax__hash__.tmSnippet +28 -0
  623. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___get.tmSnippet +19 -0
  624. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___getIfModified.tmSnippet +19 -0
  625. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___getJSON.tmSnippet +21 -0
  626. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___getScript.tmSnippet +19 -0
  627. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___post.tmSnippet +23 -0
  628. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/___trim.tmSnippet +16 -0
  629. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__checked.tmSnippet +18 -0
  630. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__contains____test____.tmSnippet +18 -0
  631. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__disabled.tmSnippet +18 -0
  632. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__empty.tmSnippet +18 -0
  633. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__enabled.tmSnippet +18 -0
  634. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__eq__n__.tmSnippet +18 -0
  635. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__even.tmSnippet +18 -0
  636. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__first.tmSnippet +18 -0
  637. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__first__child.tmSnippet +18 -0
  638. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__first__of__type.tmSnippet +18 -0
  639. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__gt__n__.tmSnippet +18 -0
  640. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__hidden.tmSnippet +19 -0
  641. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__last.tmSnippet +18 -0
  642. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__last__child.tmSnippet +18 -0
  643. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__last__of__type.tmSnippet +18 -0
  644. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__lt__n__.tmSnippet +18 -0
  645. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__not__s__.tmSnippet +18 -0
  646. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__nth__child__n__.tmSnippet +18 -0
  647. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__nth__last__child__n__.tmSnippet +18 -0
  648. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__nth__of__type__n__.tmSnippet +18 -0
  649. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__odd.tmSnippet +18 -0
  650. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__only__child.tmSnippet +18 -0
  651. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__only__of__type.tmSnippet +18 -0
  652. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__parent.tmSnippet +19 -0
  653. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__root.tmSnippet +18 -0
  654. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/__visible.tmSnippet +19 -0
  655. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/add.tmSnippet +16 -0
  656. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/addClass.tmSnippet +16 -0
  657. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/after.tmSnippet +16 -0
  658. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/ajaxStart.tmSnippet +19 -0
  659. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/ajaxStop.tmSnippet +19 -0
  660. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/animate.tmSnippet +16 -0
  661. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/append.tmSnippet +16 -0
  662. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/appendTo.tmSnippet +16 -0
  663. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/attr.tmSnippet +16 -0
  664. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/attr__hash__.tmSnippet +16 -0
  665. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/before.tmSnippet +16 -0
  666. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/bind.tmSnippet +18 -0
  667. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/blur.tmSnippet +18 -0
  668. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/change.tmSnippet +18 -0
  669. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/children.tmSnippet +16 -0
  670. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/click.tmSnippet +18 -0
  671. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/clone.tmSnippet +16 -0
  672. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/contains.tmSnippet +16 -0
  673. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/css.tmSnippet +16 -0
  674. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/css__hash__.tmSnippet +16 -0
  675. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/dblclick.tmSnippet +18 -0
  676. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/each.tmSnippet +18 -0
  677. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/end.tmSnippet +16 -0
  678. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/error.tmSnippet +18 -0
  679. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/fadeIn.tmSnippet +16 -0
  680. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/fadeIn____with_callback.tmSnippet +19 -0
  681. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/fadeOut.tmSnippet +16 -0
  682. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/fadeOut____with_callback.tmSnippet +19 -0
  683. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/fadeTo.tmSnippet +16 -0
  684. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/fadeTo____with_callback.tmSnippet +19 -0
  685. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/filter.tmSnippet +16 -0
  686. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/find.tmSnippet +16 -0
  687. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/focus.tmSnippet +18 -0
  688. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/get.tmSnippet +16 -0
  689. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/height.tmSnippet +16 -0
  690. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/hide.tmSnippet +16 -0
  691. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/hide____with_callback.tmSnippet +19 -0
  692. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/hover.tmSnippet +20 -0
  693. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/html.tmSnippet +16 -0
  694. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/insertAfter.tmSnippet +16 -0
  695. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/insertBefore.tmSnippet +16 -0
  696. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/is.tmSnippet +16 -0
  697. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/load.tmSnippet +18 -0
  698. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/loadIfModified.tmSnippet +21 -0
  699. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/load___AHAH__.tmSnippet +21 -0
  700. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/mousedown.tmSnippet +18 -0
  701. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/mousemove.tmSnippet +18 -0
  702. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/mouseout.tmSnippet +18 -0
  703. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/mouseover.tmSnippet +18 -0
  704. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/mouseup.tmSnippet +18 -0
  705. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/next.tmSnippet +16 -0
  706. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/not.tmSnippet +16 -0
  707. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/one.tmSnippet +18 -0
  708. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/parent.tmSnippet +16 -0
  709. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/parents.tmSnippet +16 -0
  710. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/prepend.tmSnippet +16 -0
  711. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/prependTo.tmSnippet +16 -0
  712. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/prev.tmSnippet +16 -0
  713. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/ready.tmSnippet +19 -0
  714. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/remove.tmSnippet +16 -0
  715. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/removeAttr.tmSnippet +16 -0
  716. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/removeClass.tmSnippet +16 -0
  717. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/reset.tmSnippet +18 -0
  718. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/resize.tmSnippet +18 -0
  719. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/scroll.tmSnippet +18 -0
  720. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/select.tmSnippet +18 -0
  721. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/show.tmSnippet +16 -0
  722. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/show____with_callback.tmSnippet +19 -0
  723. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/siblings.tmSnippet +16 -0
  724. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/size.tmSnippet +16 -0
  725. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/slideDown.tmSnippet +16 -0
  726. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/slideDown____with_callback.tmSnippet +19 -0
  727. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/slideToggle.tmSnippet +16 -0
  728. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/slideUp.tmSnippet +16 -0
  729. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/slideUp____with_callback.tmSnippet +19 -0
  730. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/submit.tmSnippet +18 -0
  731. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/text.tmSnippet +16 -0
  732. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/toggle.tmSnippet +21 -0
  733. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/toggleClass.tmSnippet +16 -0
  734. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/toggle___show__hide__.tmSnippet +16 -0
  735. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/trigger.tmSnippet +16 -0
  736. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/unbind.tmSnippet +16 -0
  737. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/val.tmSnippet +16 -0
  738. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/width.tmSnippet +16 -0
  739. data/textmate/Bundles/JavaScript jQuery.tmbundle/Snippets/wrap.tmSnippet +16 -0
  740. data/textmate/Bundles/JavaScript.tmbundle/Preferences/Comments.tmPreferences +36 -0
  741. data/textmate/Bundles/JavaScript.tmbundle/Preferences/JavaScript_Indent.tmPreferences +19 -0
  742. data/textmate/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Banned.tmPreferences +17 -0
  743. data/textmate/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Class.tmPreferences +21 -0
  744. data/textmate/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Instance.tmPreferences +21 -0
  745. data/textmate/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Sub_1.tmPreferences +21 -0
  746. data/textmate/Bundles/JavaScript.tmbundle/Preferences/Symbol_List_Sub_2.tmPreferences +21 -0
  747. data/textmate/Bundles/JavaScript.tmbundle/Snippets/Get_Elements.tmSnippet +16 -0
  748. data/textmate/Bundles/JavaScript.tmbundle/Snippets/Object_Method.tmSnippet +18 -0
  749. data/textmate/Bundles/JavaScript.tmbundle/Snippets/Object_Method_String.tmSnippet +18 -0
  750. data/textmate/Bundles/JavaScript.tmbundle/Snippets/Object_Value_JS.tmSnippet +16 -0
  751. data/textmate/Bundles/JavaScript.tmbundle/Snippets/Object_key________key_____value__.tmSnippet +18 -0
  752. data/textmate/Bundles/JavaScript.tmbundle/Snippets/Prototype___proto__.plist +19 -0
  753. data/textmate/Bundles/JavaScript.tmbundle/Snippets/for______________________.tmSnippet +18 -0
  754. data/textmate/Bundles/JavaScript.tmbundle/Snippets/for_________________________faster__.tmSnippet +18 -0
  755. data/textmate/Bundles/JavaScript.tmbundle/Snippets/function.tmSnippet +16 -0
  756. data/textmate/Bundles/JavaScript.tmbundle/Snippets/function___fun__.plist +18 -0
  757. data/textmate/Bundles/JavaScript.tmbundle/Snippets/if.tmSnippet +16 -0
  758. data/textmate/Bundles/JavaScript.tmbundle/Snippets/if_____else.tmSnippet +16 -0
  759. data/textmate/Bundles/JavaScript.tmbundle/Snippets/setTimeout_function.tmSnippet +16 -0
  760. data/textmate/Bundles/Latex.tmbundle/Preferences/Beamer_Symbol_List.tmPreferences +21 -0
  761. data/textmate/Bundles/Latex.tmbundle/Preferences/Cite_Completion.plist +19 -0
  762. data/textmate/Bundles/Latex.tmbundle/Preferences/Comments.plist +24 -0
  763. data/textmate/Bundles/Latex.tmbundle/Preferences/Disable_Smart_Typing_after_Backslashes.tmPreferences +19 -0
  764. data/textmate/Bundles/Latex.tmbundle/Preferences/Label_Completion.plist +19 -0
  765. data/textmate/Bundles/Latex.tmbundle/Preferences/Miscellaneous.plist +94 -0
  766. data/textmate/Bundles/Latex.tmbundle/Preferences/Miscellaneous___BibTeX__.tmPreferences +53 -0
  767. data/textmate/Bundles/Latex.tmbundle/Preferences/Smart_Typing___Strings__.tmPreferences +65 -0
  768. data/textmate/Bundles/Latex.tmbundle/Preferences/Spell_Checking___Disable_for_Comments.tmPreferences +17 -0
  769. data/textmate/Bundles/Latex.tmbundle/Preferences/Spell_Checking_in_Strings.tmPreferences +17 -0
  770. data/textmate/Bundles/Latex.tmbundle/Preferences/Symbol_list.plist +28 -0
  771. data/textmate/Bundles/Latex.tmbundle/Preferences/TexShop_comments.plist +17 -0
  772. data/textmate/Bundles/Latex.tmbundle/Snippets/Align.tmSnippet +20 -0
  773. data/textmate/Bundles/Latex.tmbundle/Snippets/Beamer_Overlay_Specification.tmSnippet +16 -0
  774. data/textmate/Bundles/Latex.tmbundle/Snippets/Cases.tmSnippet +19 -0
  775. data/textmate/Bundles/Latex.tmbundle/Snippets/Change_Style_of_selected_text.plist +16 -0
  776. data/textmate/Bundles/Latex.tmbundle/Snippets/Chapter.tmSnippet +19 -0
  777. data/textmate/Bundles/Latex.tmbundle/Snippets/Description.tmSnippet +18 -0
  778. data/textmate/Bundles/Latex.tmbundle/Snippets/Displaymath_________.plist +20 -0
  779. data/textmate/Bundles/Latex.tmbundle/Snippets/Enumerate.tmSnippet +18 -0
  780. data/textmate/Bundles/Latex.tmbundle/Snippets/Equation.tmSnippet +18 -0
  781. data/textmate/Bundles/Latex.tmbundle/Snippets/Figure.tmSnippet +16 -0
  782. data/textmate/Bundles/Latex.tmbundle/Snippets/Gather__ed__.tmSnippet +20 -0
  783. data/textmate/Bundles/Latex.tmbundle/Snippets/Item__description__.plist +16 -0
  784. data/textmate/Bundles/Latex.tmbundle/Snippets/Itemize.tmSnippet +18 -0
  785. data/textmate/Bundles/Latex.tmbundle/Snippets/Lines_to_list_environment.plist +19 -0
  786. data/textmate/Bundles/Latex.tmbundle/Snippets/Listing.tmSnippet +17 -0
  787. data/textmate/Bundles/Latex.tmbundle/Snippets/Math_mode__________.plist +16 -0
  788. data/textmate/Bundles/Latex.tmbundle/Snippets/Matrix.tmSnippet +18 -0
  789. data/textmate/Bundles/Latex.tmbundle/Snippets/New_Line.tmSnippet +17 -0
  790. data/textmate/Bundles/Latex.tmbundle/Snippets/Page.tmSnippet +17 -0
  791. data/textmate/Bundles/Latex.tmbundle/Snippets/Paragraph.tmSnippet +19 -0
  792. data/textmate/Bundles/Latex.tmbundle/Snippets/Part.tmSnippet +19 -0
  793. data/textmate/Bundles/Latex.tmbundle/Snippets/Section.tmSnippet +17 -0
  794. data/textmate/Bundles/Latex.tmbundle/Snippets/Split.tmSnippet +18 -0
  795. data/textmate/Bundles/Latex.tmbundle/Snippets/Sub_Paragraph.tmSnippet +19 -0
  796. data/textmate/Bundles/Latex.tmbundle/Snippets/Table.tmSnippet +16 -0
  797. data/textmate/Bundles/Latex.tmbundle/Snippets/Tabular.tmSnippet +18 -0
  798. data/textmate/Bundles/Latex.tmbundle/Snippets/Unnumbered_Equation.tmSnippet +18 -0
  799. data/textmate/Bundles/Latex.tmbundle/Snippets/Wrap_Selection_in_Environment.plist +19 -0
  800. data/textmate/Bundles/Latex.tmbundle/Snippets/Wrap_in___left____right.plist +16 -0
  801. data/textmate/Bundles/Latex.tmbundle/Snippets/Wrap_selection_in_double_quotes.tmSnippet +16 -0
  802. data/textmate/Bundles/Latex.tmbundle/Snippets/__begin____________end____.tmSnippet +18 -0
  803. data/textmate/Bundles/Latex.tmbundle/Snippets/__section______section__.plist +19 -0
  804. data/textmate/Bundles/Latex.tmbundle/Snippets/__subsection______sub__.plist +19 -0
  805. data/textmate/Bundles/Latex.tmbundle/Snippets/__subsubsection______ssub__.plist +19 -0
  806. data/textmate/Bundles/Lisp.tmbundle/Preferences/Comments.tmPreferences +36 -0
  807. data/textmate/Bundles/Lisp.tmbundle/Preferences/Miscellaneous.tmPreferences +51 -0
  808. data/textmate/Bundles/Lisp.tmbundle/Snippets/____.tmSnippet +16 -0
  809. data/textmate/Bundles/Lisp.tmbundle/Snippets/defconstant.tmSnippet +17 -0
  810. data/textmate/Bundles/Lisp.tmbundle/Snippets/defmacro.tmSnippet +18 -0
  811. data/textmate/Bundles/Lisp.tmbundle/Snippets/defparameter.tmSnippet +17 -0
  812. data/textmate/Bundles/Lisp.tmbundle/Snippets/defun.tmSnippet +18 -0
  813. data/textmate/Bundles/Lisp.tmbundle/Snippets/defvar.tmSnippet +17 -0
  814. data/textmate/Bundles/Lisp.tmbundle/Snippets/if.tmSnippet +17 -0
  815. data/textmate/Bundles/Lisp.tmbundle/Snippets/let.tmSnippet +17 -0
  816. data/textmate/Bundles/Lisp.tmbundle/Snippets/let1.tmSnippet +17 -0
  817. data/textmate/Bundles/Lisp.tmbundle/Snippets/next_____.tmSnippet +16 -0
  818. data/textmate/Bundles/Lisp.tmbundle/Snippets/setf.tmSnippet +16 -0
  819. data/textmate/Bundles/Makefile.tmbundle/Preferences/Miscellaneous.plist +26 -0
  820. data/textmate/Bundles/Markdown.tmbundle/Preferences/Disable_spell_checking_for_raw.plist +17 -0
  821. data/textmate/Bundles/Markdown.tmbundle/Preferences/Indent___Raw.plist +19 -0
  822. data/textmate/Bundles/Markdown.tmbundle/Preferences/Miscellaneous.plist +50 -0
  823. data/textmate/Bundles/Markdown.tmbundle/Preferences/Symbol_List___Heading.plist +23 -0
  824. data/textmate/Bundles/Markdown.tmbundle/Preferences/Typing_Pairs___Disable___for_Raw.plist +42 -0
  825. data/textmate/Bundles/Markdown.tmbundle/Snippets/Hard_linebreak.plist +17 -0
  826. data/textmate/Bundles/PHP.tmbundle/Preferences/Add_Magic_Methods_to_the_Symbol_List.tmPreferences +17 -0
  827. data/textmate/Bundles/PHP.tmbundle/Preferences/Comments.plist +42 -0
  828. data/textmate/Bundles/PHP.tmbundle/Preferences/Completion___includes.tmPreferences +30 -0
  829. data/textmate/Bundles/PHP.tmbundle/Preferences/Completions.tmPreferences +2531 -0
  830. data/textmate/Bundles/PHP.tmbundle/Preferences/Disable_spellcheck_in_require.tmPreferences +17 -0
  831. data/textmate/Bundles/PHP.tmbundle/Preferences/Enable_Spellchecking_for_Docblocks.tmPreferences +17 -0
  832. data/textmate/Bundles/PHP.tmbundle/Preferences/Indentation_Rules.tmPreferences +19 -0
  833. data/textmate/Bundles/PHP.tmbundle/Preferences/Miscellaneous.plist +34 -0
  834. data/textmate/Bundles/PHP.tmbundle/Preferences/Symbols_List___functions.tmPreferences +19 -0
  835. data/textmate/Bundles/PHP.tmbundle/Snippets/Constructor.tmSnippet +18 -0
  836. data/textmate/Bundles/PHP.tmbundle/Snippets/Continue_Block_Comment.tmSnippet +18 -0
  837. data/textmate/Bundles/PHP.tmbundle/Snippets/Heredoc.tmSnippet +19 -0
  838. data/textmate/Bundles/PHP.tmbundle/Snippets/Include_TextMate_Support_Script.tmSnippet +25 -0
  839. data/textmate/Bundles/PHP.tmbundle/Snippets/PHPDoc_class.tmSnippet +26 -0
  840. data/textmate/Bundles/PHP.tmbundle/Snippets/PHPDoc_class_var.tmSnippet +23 -0
  841. data/textmate/Bundles/PHP.tmbundle/Snippets/PHPDoc_constant_definition.tmSnippet +21 -0
  842. data/textmate/Bundles/PHP.tmbundle/Snippets/PHPDoc_function.tmSnippet +26 -0
  843. data/textmate/Bundles/PHP.tmbundle/Snippets/PHPDoc_function_signature.tmSnippet +26 -0
  844. data/textmate/Bundles/PHP.tmbundle/Snippets/PHPDoc_header.tmSnippet +30 -0
  845. data/textmate/Bundles/PHP.tmbundle/Snippets/PHPDoc_interface.tmSnippet +26 -0
  846. data/textmate/Bundles/PHP.tmbundle/Snippets/PHP_Error_Catching.tmSnippet +17 -0
  847. data/textmate/Bundles/PHP.tmbundle/Snippets/Special___Return_Between_PHP_Tags.tmSnippet +18 -0
  848. data/textmate/Bundles/PHP.tmbundle/Snippets/Start_Docblock.tmSnippet +18 -0
  849. data/textmate/Bundles/PHP.tmbundle/Snippets/__GLOBALS________.tmSnippet +16 -0
  850. data/textmate/Bundles/PHP.tmbundle/Snippets/___COOKIE________.tmSnippet +16 -0
  851. data/textmate/Bundles/PHP.tmbundle/Snippets/___ENV________.tmSnippet +16 -0
  852. data/textmate/Bundles/PHP.tmbundle/Snippets/___FILES________.tmSnippet +16 -0
  853. data/textmate/Bundles/PHP.tmbundle/Snippets/___GET________.tmSnippet +16 -0
  854. data/textmate/Bundles/PHP.tmbundle/Snippets/___POST________.tmSnippet +16 -0
  855. data/textmate/Bundles/PHP.tmbundle/Snippets/___REQUEST________.tmSnippet +16 -0
  856. data/textmate/Bundles/PHP.tmbundle/Snippets/___SERVER________.tmSnippet +16 -0
  857. data/textmate/Bundles/PHP.tmbundle/Snippets/___SESSION________.tmSnippet +16 -0
  858. data/textmate/Bundles/PHP.tmbundle/Snippets/______________php.tmSnippet +16 -0
  859. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_____.tmSnippet +16 -0
  860. data/textmate/Bundles/PHP.tmbundle/Snippets/____php___this_______________.tmSnippet +16 -0
  861. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_echo_________.tmSnippet +16 -0
  862. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_echo___this_______________.tmSnippet +16 -0
  863. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_echo_htmlentities____________.tmSnippet +16 -0
  864. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_else_______.tmSnippet +16 -0
  865. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_foreach_________________php_endforeach_____.tmSnippet +18 -0
  866. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_if______________________php_else______________php_endif_____.tmSnippet +20 -0
  867. data/textmate/Bundles/PHP.tmbundle/Snippets/____php_if______________________php_endif_____.tmSnippet +18 -0
  868. data/textmate/Bundles/PHP.tmbundle/Snippets/class______.tmSnippet +27 -0
  869. data/textmate/Bundles/PHP.tmbundle/Snippets/define_____.tmSnippet +17 -0
  870. data/textmate/Bundles/PHP.tmbundle/Snippets/defined_____.tmSnippet +16 -0
  871. data/textmate/Bundles/PHP.tmbundle/Snippets/do_while_____.tmSnippet +18 -0
  872. data/textmate/Bundles/PHP.tmbundle/Snippets/echo____.tmSnippet +16 -0
  873. data/textmate/Bundles/PHP.tmbundle/Snippets/else_____.tmSnippet +18 -0
  874. data/textmate/Bundles/PHP.tmbundle/Snippets/elseif_____.tmSnippet +18 -0
  875. data/textmate/Bundles/PHP.tmbundle/Snippets/for_____.tmSnippet +18 -0
  876. data/textmate/Bundles/PHP.tmbundle/Snippets/foreach_____.tmSnippet +18 -0
  877. data/textmate/Bundles/PHP.tmbundle/Snippets/function_xx_____.tmSnippet +19 -0
  878. data/textmate/Bundles/PHP.tmbundle/Snippets/if_____.tmSnippet +18 -0
  879. data/textmate/Bundles/PHP.tmbundle/Snippets/if______a____b__.tmSnippet +16 -0
  880. data/textmate/Bundles/PHP.tmbundle/Snippets/if______else_____.tmSnippet +21 -0
  881. data/textmate/Bundles/PHP.tmbundle/Snippets/include_____.tmSnippet +16 -0
  882. data/textmate/Bundles/PHP.tmbundle/Snippets/include_once_____.tmSnippet +16 -0
  883. data/textmate/Bundles/PHP.tmbundle/Snippets/new_array_____.tmSnippet +16 -0
  884. data/textmate/Bundles/PHP.tmbundle/Snippets/require_____.tmSnippet +16 -0
  885. data/textmate/Bundles/PHP.tmbundle/Snippets/require_once_____.tmSnippet +16 -0
  886. data/textmate/Bundles/PHP.tmbundle/Snippets/return_FALSE__.tmSnippet +16 -0
  887. data/textmate/Bundles/PHP.tmbundle/Snippets/return_TRUE__.tmSnippet +16 -0
  888. data/textmate/Bundles/PHP.tmbundle/Snippets/return___retVal__.tmSnippet +16 -0
  889. data/textmate/Bundles/PHP.tmbundle/Snippets/switch_____.tmSnippet +24 -0
  890. data/textmate/Bundles/PHP.tmbundle/Snippets/switch______case__.tmSnippet +18 -0
  891. data/textmate/Bundles/PHP.tmbundle/Snippets/throw.tmSnippet +17 -0
  892. data/textmate/Bundles/PHP.tmbundle/Snippets/try___________catch__________________.tmSnippet +22 -0
  893. data/textmate/Bundles/PHP.tmbundle/Snippets/while_____.tmSnippet +18 -0
  894. data/textmate/Bundles/Perl HTML-Template.tmbundle/Snippets/If.tmSnippet +18 -0
  895. data/textmate/Bundles/Perl HTML-Template.tmbundle/Snippets/If__Else.tmSnippet +20 -0
  896. data/textmate/Bundles/Perl HTML-Template.tmbundle/Snippets/Include.tmSnippet +16 -0
  897. data/textmate/Bundles/Perl HTML-Template.tmbundle/Snippets/Loop.tmSnippet +18 -0
  898. data/textmate/Bundles/Perl HTML-Template.tmbundle/Snippets/Unless.tmSnippet +18 -0
  899. data/textmate/Bundles/Perl HTML-Template.tmbundle/Snippets/Var.tmSnippet +16 -0
  900. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Preferences/Filename_Settings.plist +17 -0
  901. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Preferences/Miscellaneous.plist +50 -0
  902. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Snippets/for.plist +18 -0
  903. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Snippets/if.plist +20 -0
  904. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Snippets/include.plist +16 -0
  905. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Snippets/unless.plist +18 -0
  906. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Snippets/wrapper.plist +18 -0
  907. data/textmate/Bundles/Perl.tmbundle/Preferences/Miscellaneous.plist +24 -0
  908. data/textmate/Bundles/Perl.tmbundle/Snippets/Conditional_if__else___ife__.plist +21 -0
  909. data/textmate/Bundles/Perl.tmbundle/Snippets/Conditional_if__elsif__else___ifee__.plist +23 -0
  910. data/textmate/Bundles/Perl.tmbundle/Snippets/Conditional_one__line___unless__.plist +17 -0
  911. data/textmate/Bundles/Perl.tmbundle/Snippets/Conditional_one__line___xif__.plist +17 -0
  912. data/textmate/Bundles/Perl.tmbundle/Snippets/Function___sub__.plist +19 -0
  913. data/textmate/Bundles/Perl.tmbundle/Snippets/Loop_one__line___xforeach__.plist +17 -0
  914. data/textmate/Bundles/Perl.tmbundle/Snippets/Loop_one__line___xwhile__.plist +17 -0
  915. data/textmate/Bundles/Perl.tmbundle/Snippets/Test.tmSnippet +23 -0
  916. data/textmate/Bundles/Perl.tmbundle/Snippets/class.plist +28 -0
  917. data/textmate/Bundles/Perl.tmbundle/Snippets/eval.plist +22 -0
  918. data/textmate/Bundles/Perl.tmbundle/Snippets/for.plist +19 -0
  919. data/textmate/Bundles/Perl.tmbundle/Snippets/foreach.plist +19 -0
  920. data/textmate/Bundles/Perl.tmbundle/Snippets/hash_pointer.plist +16 -0
  921. data/textmate/Bundles/Perl.tmbundle/Snippets/if.plist +19 -0
  922. data/textmate/Bundles/Perl.tmbundle/Snippets/slurp.plist +18 -0
  923. data/textmate/Bundles/Perl.tmbundle/Snippets/unless.plist +19 -0
  924. data/textmate/Bundles/Perl.tmbundle/Snippets/while.plist +19 -0
  925. data/textmate/Bundles/Postscript.tmbundle/Preferences/Comments.tmPreferences +24 -0
  926. data/textmate/Bundles/Processing.tmbundle/Preferences/Miscellaneous.tmPreferences +50 -0
  927. data/textmate/Bundles/Processing.tmbundle/Snippets/draw___se__.plist +18 -0
  928. data/textmate/Bundles/Processing.tmbundle/Snippets/float_______float______.plist +16 -0
  929. data/textmate/Bundles/Processing.tmbundle/Snippets/float___float__.plist +16 -0
  930. data/textmate/Bundles/Processing.tmbundle/Snippets/int_______int______.plist +16 -0
  931. data/textmate/Bundles/Processing.tmbundle/Snippets/int___int__.plist +16 -0
  932. data/textmate/Bundles/Processing.tmbundle/Snippets/opengl___gl__.plist +16 -0
  933. data/textmate/Bundles/Processing.tmbundle/Snippets/setup___se__.plist +18 -0
  934. data/textmate/Bundles/Processing.tmbundle/Snippets/size___size__.plist +16 -0
  935. data/textmate/Bundles/Processing.tmbundle/Snippets/string_______string______.plist +16 -0
  936. data/textmate/Bundles/Processing.tmbundle/Snippets/string___str__.plist +16 -0
  937. data/textmate/Bundles/Processing.tmbundle/Snippets/void_method___void__.plist +18 -0
  938. data/textmate/Bundles/Property List.tmbundle/Preferences/Comments.plist +36 -0
  939. data/textmate/Bundles/Property List.tmbundle/Preferences/Indentation_Rules.tmPreferences +19 -0
  940. data/textmate/Bundles/Property List.tmbundle/Preferences/Symbol_List.plist +17 -0
  941. data/textmate/Bundles/Property List.tmbundle/Preferences/Typing_Pairs.plist +50 -0
  942. data/textmate/Bundles/Property List.tmbundle/Snippets/array.tmSnippet +18 -0
  943. data/textmate/Bundles/Property List.tmbundle/Snippets/data.tmSnippet +18 -0
  944. data/textmate/Bundles/Property List.tmbundle/Snippets/date.tmSnippet +16 -0
  945. data/textmate/Bundles/Property List.tmbundle/Snippets/dict.tmSnippet +18 -0
  946. data/textmate/Bundles/Property List.tmbundle/Snippets/false.tmSnippet +16 -0
  947. data/textmate/Bundles/Property List.tmbundle/Snippets/integer.tmSnippet +16 -0
  948. data/textmate/Bundles/Property List.tmbundle/Snippets/key.tmSnippet +16 -0
  949. data/textmate/Bundles/Property List.tmbundle/Snippets/plist.tmSnippet +20 -0
  950. data/textmate/Bundles/Property List.tmbundle/Snippets/real.tmSnippet +16 -0
  951. data/textmate/Bundles/Property List.tmbundle/Snippets/string.tmSnippet +16 -0
  952. data/textmate/Bundles/Property List.tmbundle/Snippets/true.tmSnippet +16 -0
  953. data/textmate/Bundles/Python Django Templates.tmbundle/Preferences/Preferences.tmPreferences +54 -0
  954. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/Block_tag.tmSnippet +16 -0
  955. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/Comment_tag.tmSnippet +16 -0
  956. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/Variable_tag.tmSnippet +16 -0
  957. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/add.tmSnippet +16 -0
  958. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/addslashes.tmSnippet +16 -0
  959. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/autoescape.tmSnippet +18 -0
  960. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/block.tmSnippet +18 -0
  961. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/blocktrans.tmSnippet +18 -0
  962. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/center.tmSnippet +16 -0
  963. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/comment.tmSnippet +18 -0
  964. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/cut.tmSnippet +16 -0
  965. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/cycle.tmSnippet +16 -0
  966. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/date.tmSnippet +16 -0
  967. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/debug.tmSnippet +16 -0
  968. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/default.tmSnippet +16 -0
  969. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/default_if_none.tmSnippet +16 -0
  970. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/dictsort.tmSnippet +16 -0
  971. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/dictsortreversed.tmSnippet +16 -0
  972. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/divisibleby.tmSnippet +16 -0
  973. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/escape.tmSnippet +16 -0
  974. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/extends.tmSnippet +16 -0
  975. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/filesizeformat.tmSnippet +16 -0
  976. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/filter.tmSnippet +18 -0
  977. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/first.tmSnippet +16 -0
  978. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/firstof.tmSnippet +16 -0
  979. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/fix_ampersands.tmSnippet +16 -0
  980. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/floatformat.tmSnippet +16 -0
  981. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/for.tmSnippet +18 -0
  982. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/get_digit.tmSnippet +16 -0
  983. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/if.tmSnippet +18 -0
  984. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/ifchanged.tmSnippet +16 -0
  985. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/ifequal.tmSnippet +18 -0
  986. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/ifnotequal.tmSnippet +18 -0
  987. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/include.tmSnippet +16 -0
  988. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/join.tmSnippet +16 -0
  989. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/length.tmSnippet +16 -0
  990. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/length_is.tmSnippet +16 -0
  991. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/linebreaks.tmSnippet +16 -0
  992. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/linebreaksbr.tmSnippet +16 -0
  993. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/linenumbers.tmSnippet +16 -0
  994. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/ljust.tmSnippet +16 -0
  995. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/load.tmSnippet +16 -0
  996. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/lower.tmSnippet +16 -0
  997. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/make_list.tmSnippet +16 -0
  998. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/now.tmSnippet +16 -0
  999. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/phone2numeric.tmSnippet +16 -0
  1000. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/pluralize.tmSnippet +16 -0
  1001. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/pprint.tmSnippet +16 -0
  1002. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/random.tmSnippet +16 -0
  1003. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/regroup.tmSnippet +16 -0
  1004. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/removetags.tmSnippet +16 -0
  1005. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/rjust.tmSnippet +16 -0
  1006. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/slice.tmSnippet +16 -0
  1007. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/slugify.tmSnippet +16 -0
  1008. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/ssi.tmSnippet +16 -0
  1009. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/stringformat.tmSnippet +16 -0
  1010. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/striptags.tmSnippet +16 -0
  1011. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/templatetag___closeblock.tmSnippet +16 -0
  1012. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/templatetag___closevariable.tmSnippet +16 -0
  1013. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/templatetag___openblock.tmSnippet +16 -0
  1014. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/templatetag___openvariable.tmSnippet +16 -0
  1015. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/time.tmSnippet +16 -0
  1016. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/timesince.tmSnippet +16 -0
  1017. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/title.tmSnippet +16 -0
  1018. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/trans.tmSnippet +16 -0
  1019. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/truncatewords.tmSnippet +16 -0
  1020. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/unordered_list.tmSnippet +16 -0
  1021. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/upper.tmSnippet +16 -0
  1022. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/url.tmSnippet +16 -0
  1023. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/urlencode.tmSnippet +16 -0
  1024. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/urlize.tmSnippet +16 -0
  1025. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/urlizetrunc.tmSnippet +16 -0
  1026. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/widthratio.tmSnippet +16 -0
  1027. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/wordcount.tmSnippet +16 -0
  1028. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/wordwrap.tmSnippet +16 -0
  1029. data/textmate/Bundles/Python Django Templates.tmbundle/Snippets/yesno.tmSnippet +16 -0
  1030. data/textmate/Bundles/Python Django.tmbundle/Snippets/AutoField___auto__.tmSnippet +16 -0
  1031. data/textmate/Bundles/Python Django.tmbundle/Snippets/BooleanField___boolean__.tmSnippet +16 -0
  1032. data/textmate/Bundles/Python Django.tmbundle/Snippets/CharField___char__.tmSnippet +16 -0
  1033. data/textmate/Bundles/Python Django.tmbundle/Snippets/CommaSeparatedIntegerField___commaseparatedinteger__.tmSnippet +16 -0
  1034. data/textmate/Bundles/Python Django.tmbundle/Snippets/DateField___date__.tmSnippet +16 -0
  1035. data/textmate/Bundles/Python Django.tmbundle/Snippets/DateTimeField.tmSnippet +16 -0
  1036. data/textmate/Bundles/Python Django.tmbundle/Snippets/DecimalField.tmSnippet +16 -0
  1037. data/textmate/Bundles/Python Django.tmbundle/Snippets/EmailField___email__.tmSnippet +16 -0
  1038. data/textmate/Bundles/Python Django.tmbundle/Snippets/FileField___file__.tmSnippet +16 -0
  1039. data/textmate/Bundles/Python Django.tmbundle/Snippets/FilePathField___filepath__.tmSnippet +16 -0
  1040. data/textmate/Bundles/Python Django.tmbundle/Snippets/FloatField___float__.tmSnippet +16 -0
  1041. data/textmate/Bundles/Python Django.tmbundle/Snippets/ForeignKey___fk__.tmSnippet +16 -0
  1042. data/textmate/Bundles/Python Django.tmbundle/Snippets/IPAddressField___ipaddress__.tmSnippet +16 -0
  1043. data/textmate/Bundles/Python Django.tmbundle/Snippets/ImageField___image__.tmSnippet +16 -0
  1044. data/textmate/Bundles/Python Django.tmbundle/Snippets/IntegerField___integer__.tmSnippet +16 -0
  1045. data/textmate/Bundles/Python Django.tmbundle/Snippets/ManyToManyField___manytomany__.tmSnippet +16 -0
  1046. data/textmate/Bundles/Python Django.tmbundle/Snippets/Model_Skeleton___model__.tmSnippet +26 -0
  1047. data/textmate/Bundles/Python Django.tmbundle/Snippets/NullBooleanField___nullbool__.tmSnippet +16 -0
  1048. data/textmate/Bundles/Python Django.tmbundle/Snippets/PhoneNumberField___phonenumber__.tmSnippet +16 -0
  1049. data/textmate/Bundles/Python Django.tmbundle/Snippets/PositiveIntegerField___posint__.tmSnippet +16 -0
  1050. data/textmate/Bundles/Python Django.tmbundle/Snippets/PositiveSmallIntegerField___possmall__.tmSnippet +16 -0
  1051. data/textmate/Bundles/Python Django.tmbundle/Snippets/SlugField___slug__.tmSnippet +16 -0
  1052. data/textmate/Bundles/Python Django.tmbundle/Snippets/SmallIntegerField___smallinteger__.tmSnippet +16 -0
  1053. data/textmate/Bundles/Python Django.tmbundle/Snippets/TextField___text__.tmSnippet +16 -0
  1054. data/textmate/Bundles/Python Django.tmbundle/Snippets/TimeField___time__.tmSnippet +16 -0
  1055. data/textmate/Bundles/Python Django.tmbundle/Snippets/URLField___url__.tmSnippet +16 -0
  1056. data/textmate/Bundles/Python Django.tmbundle/Snippets/USStateField___ussstate__.tmSnippet +16 -0
  1057. data/textmate/Bundles/Python Django.tmbundle/Snippets/XMLField.tmSnippet +16 -0
  1058. data/textmate/Bundles/Python Django.tmbundle/Snippets/send_mail.tmSnippet +17 -0
  1059. data/textmate/Bundles/Python.tmbundle/Preferences/Miscellaneous.plist +34 -0
  1060. data/textmate/Bundles/Python.tmbundle/Preferences/Symbol_List.tmPreferences +22 -0
  1061. data/textmate/Bundles/Python.tmbundle/Preferences/Symbol_List___Hide_Decorator.tmPreferences +17 -0
  1062. data/textmate/Bundles/Python.tmbundle/Snippets/Inside_Class_Def___Insert_________.tmSnippet +16 -0
  1063. data/textmate/Bundles/Python.tmbundle/Snippets/Inside_Function___Insert_________.tmSnippet +16 -0
  1064. data/textmate/Bundles/Python.tmbundle/Snippets/Inside_String___Insert___________.tmSnippet +16 -0
  1065. data/textmate/Bundles/Python.tmbundle/Snippets/New_Class.tmSnippet +19 -0
  1066. data/textmate/Bundles/Python.tmbundle/Snippets/New_Function.tmSnippet +22 -0
  1067. data/textmate/Bundles/Python.tmbundle/Snippets/New_Method.tmSnippet +17 -0
  1068. data/textmate/Bundles/Python.tmbundle/Snippets/New_Property.tmSnippet +25 -0
  1069. data/textmate/Bundles/Python.tmbundle/Snippets/Try__Except.tmSnippet +19 -0
  1070. data/textmate/Bundles/Python.tmbundle/Snippets/Try__Except__Else.tmSnippet +21 -0
  1071. data/textmate/Bundles/Python.tmbundle/Snippets/Try__Except__Else__Finally.tmSnippet +23 -0
  1072. data/textmate/Bundles/Python.tmbundle/Snippets/Try__Except__Finally.tmSnippet +21 -0
  1073. data/textmate/Bundles/Python.tmbundle/Snippets/__magic__.tmSnippet +16 -0
  1074. data/textmate/Bundles/Python.tmbundle/Snippets/if___name____________main____.tmSnippet +17 -0
  1075. data/textmate/Bundles/Python.tmbundle/Snippets/next_Inside_String___Insert___________.tmSnippet +16 -0
  1076. data/textmate/Bundles/Python.tmbundle/Snippets/self.tmSnippet +16 -0
  1077. data/textmate/Bundles/Rez.tmbundle/Preferences/Miscellaneous.tmPreferences +55 -0
  1078. data/textmate/Bundles/Ruby Haml.tmbundle/Preferences/Comments.tmPreferences +24 -0
  1079. data/textmate/Bundles/Ruby RSpec.tmbundle/Preferences/Symbol_List___Behaviour.tmPreferences +19 -0
  1080. data/textmate/Bundles/Ruby RSpec.tmbundle/Preferences/Symbol_List___Example.tmPreferences +19 -0
  1081. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/Custom_Matcher.tmSnippet +39 -0
  1082. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/Describe.tmSnippet +20 -0
  1083. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/Describe_type.tmSnippet +20 -0
  1084. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/Describe_type_string.tmSnippet +20 -0
  1085. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/It.tmSnippet +18 -0
  1086. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/Require_spec_helper.tmSnippet +16 -0
  1087. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/Set_Controller_for_Spec.tmSnippet +16 -0
  1088. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/Story.tmSnippet +21 -0
  1089. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/and_raise.tmSnippet +16 -0
  1090. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/and_return_block.tmSnippet +16 -0
  1091. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/and_return_value.tmSnippet +16 -0
  1092. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/and_throw.tmSnippet +16 -0
  1093. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/and_yield.tmSnippet +16 -0
  1094. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/any_number_of_times.tmSnippet +16 -0
  1095. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/at_least.tmSnippet +16 -0
  1096. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/at_most.tmSnippet +16 -0
  1097. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/controller_context.tmSnippet +20 -0
  1098. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/controller_context_RESTful.tmSnippet +18 -0
  1099. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/exactly.tmSnippet +16 -0
  1100. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/it_should_behave_like.tmSnippet +16 -0
  1101. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/mock.tmSnippet +17 -0
  1102. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_____.tmSnippet +17 -0
  1103. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/next_should_not_____.tmSnippet +17 -0
  1104. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/once.tmSnippet +16 -0
  1105. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/ordered.tmSnippet +16 -0
  1106. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/response_should_be_success.tmSnippet +17 -0
  1107. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/response_should_not_be_success.tmSnippet +17 -0
  1108. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/setup.tmSnippet +18 -0
  1109. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_____.tmSnippet +17 -0
  1110. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_be.tmSnippet +17 -0
  1111. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_be_a_kind_of.tmSnippet +17 -0
  1112. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_be_an_instance_of.tmSnippet +17 -0
  1113. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_be_close.tmSnippet +17 -0
  1114. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_be_redirect.tmSnippet +17 -0
  1115. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_eql.tmSnippet +17 -0
  1116. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_equal.tmSnippet +17 -0
  1117. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_have.tmSnippet +17 -0
  1118. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_have_at_least.tmSnippet +17 -0
  1119. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_have_at_most.tmSnippet +17 -0
  1120. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_have_records.tmSnippet +17 -0
  1121. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_match.tmSnippet +17 -0
  1122. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_____.tmSnippet +17 -0
  1123. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_be.tmSnippet +17 -0
  1124. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_be_a_kind_of.tmSnippet +17 -0
  1125. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_be_an_instance_of.tmSnippet +17 -0
  1126. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_be_close.tmSnippet +17 -0
  1127. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_be_redirect.tmSnippet +17 -0
  1128. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_eql.tmSnippet +17 -0
  1129. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_equal.tmSnippet +17 -0
  1130. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_match.tmSnippet +17 -0
  1131. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_predicate.tmSnippet +17 -0
  1132. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_raise.tmSnippet +17 -0
  1133. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_receive.tmSnippet +16 -0
  1134. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_respond_to.tmSnippet +17 -0
  1135. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_satisfy.tmSnippet +17 -0
  1136. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_not_throw.tmSnippet +17 -0
  1137. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_predicate.tmSnippet +17 -0
  1138. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_raise.tmSnippet +17 -0
  1139. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_receive.tmSnippet +16 -0
  1140. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_receive_with_args.tmSnippet +16 -0
  1141. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_redirect_to.tmSnippet +17 -0
  1142. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_render.tmSnippet +17 -0
  1143. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_respond_to.tmSnippet +17 -0
  1144. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_satisfy.tmSnippet +17 -0
  1145. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/should_throw.tmSnippet +17 -0
  1146. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/teardown.tmSnippet +18 -0
  1147. data/textmate/Bundles/Ruby RSpec.tmbundle/Snippets/twice.tmSnippet +16 -0
  1148. data/textmate/Bundles/Ruby on Rails.tmbundle/Preferences/Template___ERB__.tmPreferences +48 -0
  1149. data/textmate/Bundles/Ruby on Rails.tmbundle/Preferences/Template___Haml__.tmPreferences +48 -0
  1150. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/180_rails_form_tag.plist +18 -0
  1151. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_binary_column.tmSnippet +17 -0
  1152. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_boolean_column.tmSnippet +17 -0
  1153. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_controller_class.tmSnippet +25 -0
  1154. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_date_column.tmSnippet +17 -0
  1155. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_datetime_column.tmSnippet +17 -0
  1156. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_decimal_column.tmSnippet +17 -0
  1157. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_float_column.tmSnippet +17 -0
  1158. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_functional_test_class.tmSnippet +21 -0
  1159. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_integer_column.tmSnippet +17 -0
  1160. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_lock_version_column.tmSnippet +17 -0
  1161. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_references_column.tmSnippet +17 -0
  1162. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_string_column.tmSnippet +17 -0
  1163. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_text_column.tmSnippet +17 -0
  1164. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_time_column.tmSnippet +17 -0
  1165. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_timestamp_column.tmSnippet +17 -0
  1166. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Create_timestamps_columns.tmSnippet +17 -0
  1167. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Migration_Create_Column_Continue___mccc__.plist +17 -0
  1168. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Migration_Create_Column___mcc__.plist +17 -0
  1169. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Migration_Drop_Create_Table___mdct__.plist +16 -0
  1170. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Migration_Remove_and_Add_Column___mrac__.plist +16 -0
  1171. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/RAILS_DEFAULT_LOGGER_debug___rdb__.plist +16 -0
  1172. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Table_column__s___rename.tmSnippet +17 -0
  1173. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Test_Assert_Redirected_To___art__.plist +16 -0
  1174. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/Test_Assert_Response___are__.plist +16 -0
  1175. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/__3C_____Fixtures_identify____3Asymbol_______3E.tmSnippet +16 -0
  1176. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/__LABEL.tmSnippet +16 -0
  1177. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/after_create.tmSnippet +16 -0
  1178. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/after_destroy.tmSnippet +16 -0
  1179. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/after_save.tmSnippet +16 -0
  1180. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/after_update.tmSnippet +16 -0
  1181. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/after_validation.tmSnippet +16 -0
  1182. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/after_validation_on_create.tmSnippet +16 -0
  1183. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/after_validation_on_update.tmSnippet +16 -0
  1184. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert__var____assigns____3Avar____.tmSnippet +17 -0
  1185. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_difference.tmSnippet +18 -0
  1186. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_no_difference.tmSnippet +18 -0
  1187. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_redirected_to___nested_path__.tmSnippet +16 -0
  1188. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_redirected_to___nested_path_plural__.tmSnippet +16 -0
  1189. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_redirected_to___path__.tmSnippet +16 -0
  1190. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_redirected_to___path_plural__.tmSnippet +16 -0
  1191. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_rjs.tmSnippet +16 -0
  1192. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/assert_select.tmSnippet +18 -0
  1193. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/before_create.tmSnippet +16 -0
  1194. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/before_destroy.tmSnippet +16 -0
  1195. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/before_save.tmSnippet +16 -0
  1196. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/before_update.tmSnippet +16 -0
  1197. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/before_validation.tmSnippet +16 -0
  1198. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/before_validation_on_create.tmSnippet +16 -0
  1199. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/before_validation_on_update.tmSnippet +16 -0
  1200. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/belongs_to___bt__.plist +16 -0
  1201. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/cattr_accessor.tmSnippet +16 -0
  1202. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/def_create____resource.tmSnippet +30 -0
  1203. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/def_get_request.tmSnippet +21 -0
  1204. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/def_post_request.tmSnippet +21 -0
  1205. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/end.tmSnippet +16 -0
  1206. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/find____3Aall__.tmSnippet +16 -0
  1207. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/find____3Afirst__.tmSnippet +16 -0
  1208. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/find__id__.tmSnippet +16 -0
  1209. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/for_loop_erb.tmSnippet +23 -0
  1210. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for.tmSnippet +18 -0
  1211. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_check_box.tmSnippet +16 -0
  1212. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_checkbox.tmSnippet +16 -0
  1213. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_file_field.tmSnippet +16 -0
  1214. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_file_field_2.tmSnippet +16 -0
  1215. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_hidden_field.tmSnippet +16 -0
  1216. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_hidden_field_2.tmSnippet +16 -0
  1217. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_label.tmSnippet +16 -0
  1218. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_label_2.tmSnippet +16 -0
  1219. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_password_field.tmSnippet +16 -0
  1220. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_password_field_2.tmSnippet +16 -0
  1221. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_radio_box.tmSnippet +16 -0
  1222. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_radio_box_2.tmSnippet +16 -0
  1223. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_submit.tmSnippet +16 -0
  1224. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_submit_2.tmSnippet +16 -0
  1225. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_text_area.tmSnippet +16 -0
  1226. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_text_area_2.tmSnippet +16 -0
  1227. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_text_field.tmSnippet +16 -0
  1228. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_text_field_2.tmSnippet +16 -0
  1229. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/form_for_with_errors.tmSnippet +20 -0
  1230. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/has_and_belongs_to_many___habtm__.plist +16 -0
  1231. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/has_many___dependent________destroy.tmSnippet +16 -0
  1232. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/has_many___hm__.plist +16 -0
  1233. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/has_many___through__.tmSnippet +16 -0
  1234. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/has_one___ho__.plist +16 -0
  1235. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/image_submit_tag.tmSnippet +16 -0
  1236. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/javascript_include_tag.tmSnippet +16 -0
  1237. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/lia.plist +16 -0
  1238. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/liai.plist +16 -0
  1239. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/lic.plist +16 -0
  1240. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/lica.plist +16 -0
  1241. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/licai.plist +16 -0
  1242. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/link_to___nested_path__.tmSnippet +16 -0
  1243. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/link_to___nested_path_plural__.tmSnippet +16 -0
  1244. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/link_to___path__.tmSnippet +16 -0
  1245. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/link_to___path_plural__.tmSnippet +16 -0
  1246. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/link_to_model.tmSnippet +16 -0
  1247. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/logger_debug.tmSnippet +16 -0
  1248. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/logger_error.tmSnippet +16 -0
  1249. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/logger_fatal.tmSnippet +16 -0
  1250. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/logger_info.tmSnippet +16 -0
  1251. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/logger_warn.tmSnippet +16 -0
  1252. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/map______3Asym_proc__.tmSnippet +16 -0
  1253. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/map_catch_all.tmSnippet +17 -0
  1254. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/map_named_route.tmSnippet +16 -0
  1255. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/map_resource.tmSnippet +18 -0
  1256. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/map_resources.tmSnippet +18 -0
  1257. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/map_with_options.tmSnippet +19 -0
  1258. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/mattr_accessor.tmSnippet +16 -0
  1259. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/named_scope.tmSnippet +17 -0
  1260. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/named_scope_lambda.tmSnippet +17 -0
  1261. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/page_hide_____2Aids__.tmSnippet +16 -0
  1262. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/page_insert_html___position___id___partial__.tmSnippet +16 -0
  1263. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/page_replace___id___partial__.tmSnippet +16 -0
  1264. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/page_replace_html___id___partial__.tmSnippet +16 -0
  1265. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/page_show_____2Aids__.tmSnippet +16 -0
  1266. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/page_toggle_____2Aids__.tmSnippet +16 -0
  1267. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/page_visual_effect___effect___id__.tmSnippet +16 -0
  1268. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/rails_flash.plist +16 -0
  1269. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/rails_params.plist +16 -0
  1270. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/rails_session.plist +16 -0
  1271. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/rea.plist +16 -0
  1272. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/reai.plist +16 -0
  1273. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/rec.plist +16 -0
  1274. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/reca.plist +16 -0
  1275. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/recai.plist +16 -0
  1276. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/redirect_to___nested_path__.tmSnippet +16 -0
  1277. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/redirect_to___nested_path_plural__.tmSnippet +16 -0
  1278. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/redirect_to___path__.tmSnippet +16 -0
  1279. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/redirect_to___path_plural__.tmSnippet +16 -0
  1280. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___action________ra__.plist +16 -0
  1281. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___action__layout_____ral__.plist +16 -0
  1282. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___file_____rf__.plist +16 -0
  1283. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___file__use_full_path_____rfu__.plist +16 -0
  1284. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___inline_____ri__.plist +16 -0
  1285. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___inline__locals_____ril__.plist +16 -0
  1286. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___inline__type_____rit__.plist +16 -0
  1287. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___layout_____rl__.plist +16 -0
  1288. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___nothing_____rn__.plist +16 -0
  1289. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___nothing__status_____rns__.plist +16 -0
  1290. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___partial_____rp__.plist +16 -0
  1291. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___partial__collection_____rpc__.plist +16 -0
  1292. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___partial__locals_____rpl__.plist +16 -0
  1293. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___partial__object_____rpo__.plist +16 -0
  1294. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___partial__status_____rps__.plist +16 -0
  1295. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___text_____rt__.plist +16 -0
  1296. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___text__layout____3Etrue_____rtlt__.plist +16 -0
  1297. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___text__layout_____rtl__.plist +16 -0
  1298. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___text__status_____rts__.plist +16 -0
  1299. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/render___update__.tmSnippet +18 -0
  1300. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/respond_to.tmSnippet +18 -0
  1301. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/respond_to___html__.tmSnippet +21 -0
  1302. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/returning_do___7Cvariable__7C___E2__80__A6_end.tmSnippet +18 -0
  1303. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/stylesheet_link_tag.tmSnippet +16 -0
  1304. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/submit_tag.tmSnippet +16 -0
  1305. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_binary___tcbi__.tmSnippet +17 -0
  1306. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_boolean___tcb__.tmSnippet +17 -0
  1307. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_date___tcda__.tmSnippet +17 -0
  1308. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_datetime___tcdt__.tmSnippet +17 -0
  1309. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_decimal___tcd__.tmSnippet +17 -0
  1310. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_float___tcf__.tmSnippet +17 -0
  1311. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_integer___tci__.tmSnippet +17 -0
  1312. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_lock_version___tcl__.tmSnippet +17 -0
  1313. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_references___tcr__.tmSnippet +17 -0
  1314. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_rename___tre__.tmSnippet +17 -0
  1315. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_string___tcs__.tmSnippet +17 -0
  1316. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_text___tct__.tmSnippet +17 -0
  1317. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_time___tcti__.tmSnippet +17 -0
  1318. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_timestamp___tcts__.tmSnippet +17 -0
  1319. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/t_timestamps___tctss__.tmSnippet +17 -0
  1320. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_acceptance_of.tmSnippet +16 -0
  1321. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_acceptance_of_if.tmSnippet +16 -0
  1322. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_associated___va__.plist +16 -0
  1323. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_associated_if___vaif__.plist +16 -0
  1324. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_confirmation_of___vc__.plist +16 -0
  1325. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_confirmation_of_if___vcif__.plist +16 -0
  1326. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_exclusion_of___ve__.plist +16 -0
  1327. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_exclusion_of_if___veif__.plist +16 -0
  1328. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_format_of.tmSnippet +16 -0
  1329. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_format_of_if.tmSnippet +16 -0
  1330. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_inclusion_of.tmSnippet +16 -0
  1331. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_inclusion_of_if.tmSnippet +16 -0
  1332. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_length_of___vl__.plist +16 -0
  1333. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_length_of_if.tmSnippet +16 -0
  1334. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_numericality_of.tmSnippet +16 -0
  1335. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_numericality_of_if.tmSnippet +16 -0
  1336. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_presence_of___vp__.plist +16 -0
  1337. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_presence_of_if___vpif___2.plist +16 -0
  1338. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_uniqueness_of___vu__.plist +16 -0
  1339. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/validates_uniqueness_of_if___vuif__.plist +16 -0
  1340. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/verify____redirect___verify__.plist +19 -0
  1341. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/verify___verify__.plist +19 -0
  1342. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/wants_format.tmSnippet +16 -0
  1343. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/xhr_delete.tmSnippet +16 -0
  1344. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/xhr_get.tmSnippet +16 -0
  1345. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/xhr_post.tmSnippet +16 -0
  1346. data/textmate/Bundles/Ruby on Rails.tmbundle/Snippets/xhr_put.tmSnippet +16 -0
  1347. data/textmate/Bundles/Ruby.tmbundle/Preferences/Block_typing_pairs.plist +42 -0
  1348. data/textmate/Bundles/Ruby.tmbundle/Preferences/Comments.plist +38 -0
  1349. data/textmate/Bundles/Ruby.tmbundle/Preferences/Completion___ENV___________variables.tmPreferences +17 -0
  1350. data/textmate/Bundles/Ruby.tmbundle/Preferences/Completion___require_strings.tmPreferences +22 -0
  1351. data/textmate/Bundles/Ruby.tmbundle/Preferences/Miscellaneous.plist +44 -0
  1352. data/textmate/Bundles/Ruby.tmbundle/Preferences/Symbo_List___Method.plist +19 -0
  1353. data/textmate/Bundles/Ruby.tmbundle/Preferences/Symbol_List___No_Function_Call.tmPreferences +17 -0
  1354. data/textmate/Bundles/Ruby.tmbundle/Snippets/060_ruby_if_else.plist +20 -0
  1355. data/textmate/Bundles/Ruby.tmbundle/Snippets/070_ruby_if.plist +18 -0
  1356. data/textmate/Bundles/Ruby.tmbundle/Snippets/080_ruby_case.plist +19 -0
  1357. data/textmate/Bundles/Ruby.tmbundle/Snippets/Add_____________Marker.tmSnippet +16 -0
  1358. data/textmate/Bundles/Ruby.tmbundle/Snippets/Array_new__10________i____________Arr__.plist +16 -0
  1359. data/textmate/Bundles/Ruby.tmbundle/Snippets/Benchmark_bmbm_______do____end.tmSnippet +19 -0
  1360. data/textmate/Bundles/Ruby.tmbundle/Snippets/Dir__________.tmSnippet +16 -0
  1361. data/textmate/Bundles/Ruby.tmbundle/Snippets/Dir_glob___________do___file______end____Dir__.plist +16 -0
  1362. data/textmate/Bundles/Ruby.tmbundle/Snippets/File_foreach____________do___line______end____File__.plist +16 -0
  1363. data/textmate/Bundles/Ruby.tmbundle/Snippets/File_open________________file________.tmSnippet +16 -0
  1364. data/textmate/Bundles/Ruby.tmbundle/Snippets/File_read__________.tmSnippet +16 -0
  1365. data/textmate/Bundles/Ruby.tmbundle/Snippets/Hash_new______hash___key___hash__key_______________Has__.plist +16 -0
  1366. data/textmate/Bundles/Ruby.tmbundle/Snippets/Insert_ERb__s______________or_______________.tmSnippet +16 -0
  1367. data/textmate/Bundles/Ruby.tmbundle/Snippets/Marshal_dump__obj___file______Md__.plist +16 -0
  1368. data/textmate/Bundles/Ruby.tmbundle/Snippets/Marshal_load__obj______Ml__.plist +16 -0
  1369. data/textmate/Bundles/Ruby.tmbundle/Snippets/PStore_new________.tmSnippet +16 -0
  1370. data/textmate/Bundles/Ruby.tmbundle/Snippets/RDoc_documentation_block.tmSnippet +20 -0
  1371. data/textmate/Bundles/Ruby.tmbundle/Snippets/Wrap_in_Begin________Rescue________End.plist +23 -0
  1372. data/textmate/Bundles/Ruby.tmbundle/Snippets/YAML_dump_______file______Yd____.plist +16 -0
  1373. data/textmate/Bundles/Ruby.tmbundle/Snippets/YAML_load__file______Yl____.plist +16 -0
  1374. data/textmate/Bundles/Ruby.tmbundle/Snippets/__END__.tmSnippet +17 -0
  1375. data/textmate/Bundles/Ruby.tmbundle/Snippets/______usr__local__bin__ruby___w.plist +17 -0
  1376. data/textmate/Bundles/Ruby.tmbundle/Snippets/__yields___RDoc_comment.tmSnippet +16 -0
  1377. data/textmate/Bundles/Ruby.tmbundle/Snippets/alias_method_______am__.plist +16 -0
  1378. data/textmate/Bundles/Ruby.tmbundle/Snippets/all________e____________all__.plist +16 -0
  1379. data/textmate/Bundles/Ruby.tmbundle/Snippets/any________e____________any__.plist +16 -0
  1380. data/textmate/Bundles/Ruby.tmbundle/Snippets/application_code_______app__.plist +18 -0
  1381. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert__________as__.plist +16 -0
  1382. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_equal.tmSnippet +16 -0
  1383. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_in_delta__________asid__.plist +16 -0
  1384. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_instance_of__________asio__.plist +16 -0
  1385. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_kind_of__________asko__.plist +16 -0
  1386. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_match__________asm__.plist +16 -0
  1387. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_nil__________asn__.plist +16 -0
  1388. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_no_match__________asnm__.plist +16 -0
  1389. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_not_equal__________asne__.plist +16 -0
  1390. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_not_nil__________asnn__.plist +16 -0
  1391. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_not_same__________asns__.plist +16 -0
  1392. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_nothing_raised___________________asnr__.plist +16 -0
  1393. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_nothing_thrown_____________asnt__.plist +16 -0
  1394. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_operator__________aso__.plist +16 -0
  1395. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_raise___________________asr__.plist +16 -0
  1396. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_respond_to__________asrt__.plist +16 -0
  1397. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_same__________ass__.plist +16 -0
  1398. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_send__________ass__.plist +16 -0
  1399. data/textmate/Bundles/Ruby.tmbundle/Snippets/assert_throws___________________ast__.plist +16 -0
  1400. data/textmate/Bundles/Ruby.tmbundle/Snippets/attr_accessor_______rw__.plist +16 -0
  1401. data/textmate/Bundles/Ruby.tmbundle/Snippets/attr_reader_______r__.plist +16 -0
  1402. data/textmate/Bundles/Ruby.tmbundle/Snippets/attr_writer_______w__.plist +16 -0
  1403. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______DelegateClass____initialize____end____class__.plist +24 -0
  1404. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______ParentClass____initialize____end.plist +22 -0
  1405. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______Struct____initialize____end.plist +22 -0
  1406. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_______Test____Unit____TestCase____end____tc__.plist +24 -0
  1407. data/textmate/Bundles/Ruby.tmbundle/Snippets/class______self____end.tmSnippet +18 -0
  1408. data/textmate/Bundles/Ruby.tmbundle/Snippets/class____end____cla__.plist +18 -0
  1409. data/textmate/Bundles/Ruby.tmbundle/Snippets/class____initialize____end.plist +22 -0
  1410. data/textmate/Bundles/Ruby.tmbundle/Snippets/class____instance_methods____undef____initialize____end____class__.plist +30 -0
  1411. data/textmate/Bundles/Ruby.tmbundle/Snippets/class_from_name________clafn__.plist +16 -0
  1412. data/textmate/Bundles/Ruby.tmbundle/Snippets/classify______e____________clas__.plist +16 -0
  1413. data/textmate/Bundles/Ruby.tmbundle/Snippets/collect______e____________col__.plist +16 -0
  1414. data/textmate/Bundles/Ruby.tmbundle/Snippets/deep_copy__________dee__.plist +16 -0
  1415. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_delegator______defd__.plist +16 -0
  1416. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_delegators______defds__.plist +16 -0
  1417. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_end.plist +18 -0
  1418. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_method_missing____end____mm__.plist +18 -0
  1419. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_self____end____defs__.plist +18 -0
  1420. data/textmate/Bundles/Ruby.tmbundle/Snippets/def_test_____end____t__.plist +18 -0
  1421. data/textmate/Bundles/Ruby.tmbundle/Snippets/delete_if______e____________deli__.plist +16 -0
  1422. data/textmate/Bundles/Ruby.tmbundle/Snippets/detect______e____________det__.plist +16 -0
  1423. data/textmate/Bundles/Ruby.tmbundle/Snippets/directory____.tmSnippet +16 -0
  1424. data/textmate/Bundles/Ruby.tmbundle/Snippets/do___obj______end___doo__.plist +18 -0
  1425. data/textmate/Bundles/Ruby.tmbundle/Snippets/downto__0________n____________dow__.plist +16 -0
  1426. data/textmate/Bundles/Ruby.tmbundle/Snippets/each______e____________ea__.plist +16 -0
  1427. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_byte______byte____________eab__.plist +16 -0
  1428. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_char______chr____________eac____.plist +16 -0
  1429. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_cons____________group____________eac____.plist +16 -0
  1430. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_index______i____________eai__.plist +16 -0
  1431. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_key______key____________eak__.plist +16 -0
  1432. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_line______line____________eal__.plist +16 -0
  1433. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_pair______name___val____________eap__.plist +16 -0
  1434. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_slice______group____________eas__.plist +16 -0
  1435. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_value______val____________eav__.plist +16 -0
  1436. data/textmate/Bundles/Ruby.tmbundle/Snippets/each_with_index______e___i____________eawi__.plist +16 -0
  1437. data/textmate/Bundles/Ruby.tmbundle/Snippets/elsif____.tmSnippet +17 -0
  1438. data/textmate/Bundles/Ruby.tmbundle/Snippets/embed_string_variable.plist +16 -0
  1439. data/textmate/Bundles/Ruby.tmbundle/Snippets/extend_Forwardable____Forw__.plist +16 -0
  1440. data/textmate/Bundles/Ruby.tmbundle/Snippets/fetch__name________key____________fet__.plist +16 -0
  1441. data/textmate/Bundles/Ruby.tmbundle/Snippets/fill__range________i____________fil__.plist +16 -0
  1442. data/textmate/Bundles/Ruby.tmbundle/Snippets/find______e____________fin__.plist +16 -0
  1443. data/textmate/Bundles/Ruby.tmbundle/Snippets/find_all______e____________fina__.plist +16 -0
  1444. data/textmate/Bundles/Ruby.tmbundle/Snippets/flatten_once____fla__.plist +16 -0
  1445. data/textmate/Bundles/Ruby.tmbundle/Snippets/flunk__________fl__.plist +16 -0
  1446. data/textmate/Bundles/Ruby.tmbundle/Snippets/grep____pattern__________match____________gre__.plist +16 -0
  1447. data/textmate/Bundles/Ruby.tmbundle/Snippets/gsub________________match____________gsu__.plist +16 -0
  1448. data/textmate/Bundles/Ruby.tmbundle/Snippets/hash_pair_______.plist +16 -0
  1449. data/textmate/Bundles/Ruby.tmbundle/Snippets/hash_pointer.plist +16 -0
  1450. data/textmate/Bundles/Ruby.tmbundle/Snippets/include_Comparable_______Comp__.plist +20 -0
  1451. data/textmate/Bundles/Ruby.tmbundle/Snippets/include_Enumerable_______Enum__.plist +20 -0
  1452. data/textmate/Bundles/Ruby.tmbundle/Snippets/inject__init________mem___var____________inj__.plist +16 -0
  1453. data/textmate/Bundles/Ruby.tmbundle/Snippets/lambda______args____________lam__.plist +16 -0
  1454. data/textmate/Bundles/Ruby.tmbundle/Snippets/loop_________.tmSnippet +16 -0
  1455. data/textmate/Bundles/Ruby.tmbundle/Snippets/map______e____________map__.plist +16 -0
  1456. data/textmate/Bundles/Ruby.tmbundle/Snippets/map_with_index______e___i____________mapwi__.plist +16 -0
  1457. data/textmate/Bundles/Ruby.tmbundle/Snippets/max______a___b____________max__.plist +16 -0
  1458. data/textmate/Bundles/Ruby.tmbundle/Snippets/min______a___b____________min__.plist +16 -0
  1459. data/textmate/Bundles/Ruby.tmbundle/Snippets/module____ClassMethods____end.plist +29 -0
  1460. data/textmate/Bundles/Ruby.tmbundle/Snippets/module____end.plist +18 -0
  1461. data/textmate/Bundles/Ruby.tmbundle/Snippets/module____module_function____end.plist +20 -0
  1462. data/textmate/Bundles/Ruby.tmbundle/Snippets/namespace______do____end.tmSnippet +18 -0
  1463. data/textmate/Bundles/Ruby.tmbundle/Snippets/open____path__or__url_______w_____do___doc______end___ope__.plist +16 -0
  1464. data/textmate/Bundles/Ruby.tmbundle/Snippets/open_yield_block_______.plist +16 -0
  1465. data/textmate/Bundles/Ruby.tmbundle/Snippets/option_parse_____________optp__.plist +43 -0
  1466. data/textmate/Bundles/Ruby.tmbundle/Snippets/partition______e____________par__.plist +16 -0
  1467. data/textmate/Bundles/Ruby.tmbundle/Snippets/path_from_here________.tmSnippet +16 -0
  1468. data/textmate/Bundles/Ruby.tmbundle/Snippets/randomize____ran__.plist +16 -0
  1469. data/textmate/Bundles/Ruby.tmbundle/Snippets/reject______e____________rej__.plist +16 -0
  1470. data/textmate/Bundles/Ruby.tmbundle/Snippets/require___________req__.plist +16 -0
  1471. data/textmate/Bundles/Ruby.tmbundle/Snippets/require___tc____________ts__.plist +20 -0
  1472. data/textmate/Bundles/Ruby.tmbundle/Snippets/require_gem_______.tmSnippet +16 -0
  1473. data/textmate/Bundles/Ruby.tmbundle/Snippets/results_report_______________.tmSnippet +16 -0
  1474. data/textmate/Bundles/Ruby.tmbundle/Snippets/reverse_each______e____________rea__.plist +16 -0
  1475. data/textmate/Bundles/Ruby.tmbundle/Snippets/scan________________match____________sca__.plist +16 -0
  1476. data/textmate/Bundles/Ruby.tmbundle/Snippets/select______e____________sel__.plist +16 -0
  1477. data/textmate/Bundles/Ruby.tmbundle/Snippets/singleton_class____.tmSnippet +16 -0
  1478. data/textmate/Bundles/Ruby.tmbundle/Snippets/sort______a___b____________sor__.plist +16 -0
  1479. data/textmate/Bundles/Ruby.tmbundle/Snippets/sort_by______e____________sorb__.plist +16 -0
  1480. data/textmate/Bundles/Ruby.tmbundle/Snippets/step__2________e____________ste__.plist +16 -0
  1481. data/textmate/Bundles/Ruby.tmbundle/Snippets/sub________________match____________sub__.plist +16 -0
  1482. data/textmate/Bundles/Ruby.tmbundle/Snippets/task___task_name__________dependent_____tasks___do____end.tmSnippet +19 -0
  1483. data/textmate/Bundles/Ruby.tmbundle/Snippets/times______n____________tim__.plist +16 -0
  1484. data/textmate/Bundles/Ruby.tmbundle/Snippets/transaction_________do____end.tmSnippet +16 -0
  1485. data/textmate/Bundles/Ruby.tmbundle/Snippets/unix_filter______uni__.plist +18 -0
  1486. data/textmate/Bundles/Ruby.tmbundle/Snippets/unless___unless__.plist +18 -0
  1487. data/textmate/Bundles/Ruby.tmbundle/Snippets/until_____end.tmSnippet +18 -0
  1488. data/textmate/Bundles/Ruby.tmbundle/Snippets/untitled.plist +19 -0
  1489. data/textmate/Bundles/Ruby.tmbundle/Snippets/upto__1_0__0_0________n____________upt__.plist +16 -0
  1490. data/textmate/Bundles/Ruby.tmbundle/Snippets/usage_if________usai__.plist +18 -0
  1491. data/textmate/Bundles/Ruby.tmbundle/Snippets/usage_unless________usau__.plist +18 -0
  1492. data/textmate/Bundles/Ruby.tmbundle/Snippets/when.plist +17 -0
  1493. data/textmate/Bundles/Ruby.tmbundle/Snippets/while_____end.tmSnippet +18 -0
  1494. data/textmate/Bundles/Ruby.tmbundle/Snippets/xmlread______.tmSnippet +16 -0
  1495. data/textmate/Bundles/Ruby.tmbundle/Snippets/xpath_______________.tmSnippet +18 -0
  1496. data/textmate/Bundles/Ruby.tmbundle/Snippets/zip__enums________row____________zip__.plist +16 -0
  1497. data/textmate/Bundles/SQL.tmbundle/Preferences/Comments.plist +36 -0
  1498. data/textmate/Bundles/SQL.tmbundle/Preferences/Miscellaneous.plist +19 -0
  1499. data/textmate/Bundles/SSH-Config.tmbundle/Preferences/Comments.tmPreferences +24 -0
  1500. data/textmate/Bundles/SSH-Config.tmbundle/Snippets/DynamicForward___df__.tmSnippet +16 -0
  1501. data/textmate/Bundles/SSH-Config.tmbundle/Snippets/Host___host__.tmSnippet +20 -0
  1502. data/textmate/Bundles/SSH-Config.tmbundle/Snippets/IdentityFile___idf__.tmSnippet +16 -0
  1503. data/textmate/Bundles/SSH-Config.tmbundle/Snippets/LocalForward___lf__.tmSnippet +16 -0
  1504. data/textmate/Bundles/Scala.tmbundle/Preferences/Comments.tmPreferences +36 -0
  1505. data/textmate/Bundles/Scala.tmbundle/Preferences/Indentation_Rules.tmPreferences +21 -0
  1506. data/textmate/Bundles/Scala.tmbundle/Preferences/Symbol_List___Classes.tmPreferences +17 -0
  1507. data/textmate/Bundles/Scala.tmbundle/Preferences/Symbol_List___Inner_Class_Methods.tmPreferences +22 -0
  1508. data/textmate/Bundles/Scala.tmbundle/Preferences/Symbol_List___Inner_Classes.tmPreferences +19 -0
  1509. data/textmate/Bundles/Scala.tmbundle/Preferences/Symbol_List___Inner_Inner_Class_Methods.tmPreferences +22 -0
  1510. data/textmate/Bundles/Scala.tmbundle/Preferences/Symbol_List___Inner_Inner_Classes.tmPreferences +19 -0
  1511. data/textmate/Bundles/Scala.tmbundle/Preferences/Symbol_List___Method____Constructor.tmPreferences +21 -0
  1512. data/textmate/Bundles/Scala.tmbundle/Snippets/Logger.tmSnippet +18 -0
  1513. data/textmate/Bundles/Scala.tmbundle/Snippets/Wrap_Selection_in_Try__Catch.tmSnippet +24 -0
  1514. data/textmate/Bundles/Scala.tmbundle/Snippets/abstract.tmSnippet +16 -0
  1515. data/textmate/Bundles/Scala.tmbundle/Snippets/assert.tmSnippet +16 -0
  1516. data/textmate/Bundles/Scala.tmbundle/Snippets/case.tmSnippet +16 -0
  1517. data/textmate/Bundles/Scala.tmbundle/Snippets/catch.tmSnippet +18 -0
  1518. data/textmate/Bundles/Scala.tmbundle/Snippets/class.tmSnippet +18 -0
  1519. data/textmate/Bundles/Scala.tmbundle/Snippets/constant_string.tmSnippet +17 -0
  1520. data/textmate/Bundles/Scala.tmbundle/Snippets/else.tmSnippet +18 -0
  1521. data/textmate/Bundles/Scala.tmbundle/Snippets/else_if.tmSnippet +18 -0
  1522. data/textmate/Bundles/Scala.tmbundle/Snippets/field_accessors.tmSnippet +21 -0
  1523. data/textmate/Bundles/Scala.tmbundle/Snippets/for.tmSnippet +18 -0
  1524. data/textmate/Bundles/Scala.tmbundle/Snippets/for___each__.tmSnippet +16 -0
  1525. data/textmate/Bundles/Scala.tmbundle/Snippets/for___each____.tmSnippet +16 -0
  1526. data/textmate/Bundles/Scala.tmbundle/Snippets/for___each_____.tmSnippet +16 -0
  1527. data/textmate/Bundles/Scala.tmbundle/Snippets/format.tmSnippet +16 -0
  1528. data/textmate/Bundles/Scala.tmbundle/Snippets/if.tmSnippet +18 -0
  1529. data/textmate/Bundles/Scala.tmbundle/Snippets/if__else.tmSnippet +22 -0
  1530. data/textmate/Bundles/Scala.tmbundle/Snippets/if__else_inline.tmSnippet +16 -0
  1531. data/textmate/Bundles/Scala.tmbundle/Snippets/import.tmSnippet +16 -0
  1532. data/textmate/Bundles/Scala.tmbundle/Snippets/import_Actors.tmSnippet +19 -0
  1533. data/textmate/Bundles/Scala.tmbundle/Snippets/import_junit_framework_TestCase__.tmSnippet +17 -0
  1534. data/textmate/Bundles/Scala.tmbundle/Snippets/import_scalatest.tmSnippet +17 -0
  1535. data/textmate/Bundles/Scala.tmbundle/Snippets/import_specs.tmSnippet +17 -0
  1536. data/textmate/Bundles/Scala.tmbundle/Snippets/java_.tmSnippet +16 -0
  1537. data/textmate/Bundles/Scala.tmbundle/Snippets/main_method.tmSnippet +18 -0
  1538. data/textmate/Bundles/Scala.tmbundle/Snippets/map.tmSnippet +16 -0
  1539. data/textmate/Bundles/Scala.tmbundle/Snippets/map_.tmSnippet +16 -0
  1540. data/textmate/Bundles/Scala.tmbundle/Snippets/map__.tmSnippet +16 -0
  1541. data/textmate/Bundles/Scala.tmbundle/Snippets/match.tmSnippet +18 -0
  1542. data/textmate/Bundles/Scala.tmbundle/Snippets/match_default.tmSnippet +16 -0
  1543. data/textmate/Bundles/Scala.tmbundle/Snippets/method___one_line__.tmSnippet +18 -0
  1544. data/textmate/Bundles/Scala.tmbundle/Snippets/method___with_body_braces__.tmSnippet +19 -0
  1545. data/textmate/Bundles/Scala.tmbundle/Snippets/mustEqual.tmSnippet +16 -0
  1546. data/textmate/Bundles/Scala.tmbundle/Snippets/must_be.tmSnippet +16 -0
  1547. data/textmate/Bundles/Scala.tmbundle/Snippets/must_beDifferent.tmSnippet +16 -0
  1548. data/textmate/Bundles/Scala.tmbundle/Snippets/must_throw.tmSnippet +16 -0
  1549. data/textmate/Bundles/Scala.tmbundle/Snippets/object.tmSnippet +16 -0
  1550. data/textmate/Bundles/Scala.tmbundle/Snippets/package.tmSnippet +16 -0
  1551. data/textmate/Bundles/Scala.tmbundle/Snippets/print.tmSnippet +16 -0
  1552. data/textmate/Bundles/Scala.tmbundle/Snippets/println.tmSnippet +16 -0
  1553. data/textmate/Bundles/Scala.tmbundle/Snippets/private.tmSnippet +16 -0
  1554. data/textmate/Bundles/Scala.tmbundle/Snippets/protected.tmSnippet +16 -0
  1555. data/textmate/Bundles/Scala.tmbundle/Snippets/return.tmSnippet +16 -0
  1556. data/textmate/Bundles/Scala.tmbundle/Snippets/scala_.tmSnippet +16 -0
  1557. data/textmate/Bundles/Scala.tmbundle/Snippets/scalatest_describe.tmSnippet +21 -0
  1558. data/textmate/Bundles/Scala.tmbundle/Snippets/scalatest_intercept.tmSnippet +18 -0
  1559. data/textmate/Bundles/Scala.tmbundle/Snippets/scalatest_it.tmSnippet +19 -0
  1560. data/textmate/Bundles/Scala.tmbundle/Snippets/scalatest_test.tmSnippet +19 -0
  1561. data/textmate/Bundles/Scala.tmbundle/Snippets/should.tmSnippet +21 -0
  1562. data/textmate/Bundles/Scala.tmbundle/Snippets/should_equal.tmSnippet +17 -0
  1563. data/textmate/Bundles/Scala.tmbundle/Snippets/specs_in.tmSnippet +18 -0
  1564. data/textmate/Bundles/Scala.tmbundle/Snippets/synchronized.tmSnippet +16 -0
  1565. data/textmate/Bundles/Scala.tmbundle/Snippets/test.tmSnippet +16 -0
  1566. data/textmate/Bundles/Scala.tmbundle/Snippets/test_case.tmSnippet +16 -0
  1567. data/textmate/Bundles/Scala.tmbundle/Snippets/throw.tmSnippet +16 -0
  1568. data/textmate/Bundles/Scala.tmbundle/Snippets/trait.tmSnippet +16 -0
  1569. data/textmate/Bundles/Scala.tmbundle/Snippets/try__catch__finally.tmSnippet +23 -0
  1570. data/textmate/Bundles/Scala.tmbundle/Snippets/val.tmSnippet +16 -0
  1571. data/textmate/Bundles/Scala.tmbundle/Snippets/val_bean.tmSnippet +19 -0
  1572. data/textmate/Bundles/Scala.tmbundle/Snippets/var.tmSnippet +16 -0
  1573. data/textmate/Bundles/Scala.tmbundle/Snippets/while.tmSnippet +18 -0
  1574. data/textmate/Bundles/ShellScript.tmbundle/Preferences/Comments.plist +24 -0
  1575. data/textmate/Bundles/ShellScript.tmbundle/Preferences/Miscellaneous.plist +21 -0
  1576. data/textmate/Bundles/ShellScript.tmbundle/Snippets/Tempfile.tmSnippet +21 -0
  1577. data/textmate/Bundles/ShellScript.tmbundle/Snippets/______usr__bin__env_____env__.plist +17 -0
  1578. data/textmate/Bundles/ShellScript.tmbundle/Snippets/case____esac___case__.plist +19 -0
  1579. data/textmate/Bundles/ShellScript.tmbundle/Snippets/elif______elif__.plist +17 -0
  1580. data/textmate/Bundles/ShellScript.tmbundle/Snippets/for________in________done___forin__.plist +18 -0
  1581. data/textmate/Bundles/ShellScript.tmbundle/Snippets/for_____done___for__.plist +18 -0
  1582. data/textmate/Bundles/ShellScript.tmbundle/Snippets/here_document___here__.plist +18 -0
  1583. data/textmate/Bundles/ShellScript.tmbundle/Snippets/if_____then___if__.plist +18 -0
  1584. data/textmate/Bundles/ShellScript.tmbundle/Snippets/until__________done__.plist +18 -0
  1585. data/textmate/Bundles/ShellScript.tmbundle/Snippets/while__________done__.plist +18 -0
  1586. data/textmate/Bundles/Source.tmbundle/Preferences/Comments.plist +48 -0
  1587. data/textmate/Bundles/Source.tmbundle/Preferences/Disable_spell_checking_for_all.plist +17 -0
  1588. data/textmate/Bundles/Source.tmbundle/Preferences/Enable_spell_checking_for_strings.plist +17 -0
  1589. data/textmate/Bundles/Source.tmbundle/Preferences/Miscellaneous.plist +56 -0
  1590. data/textmate/Bundles/Source.tmbundle/Preferences/String__comment_typing_pairs.plist +42 -0
  1591. data/textmate/Bundles/Source.tmbundle/Preferences/Symbol_list.plist +17 -0
  1592. data/textmate/Bundles/Source.tmbundle/Snippets/Continue_line_comment.plist +35 -0
  1593. data/textmate/Bundles/Source.tmbundle/Snippets/Escaped_Quote_Pair_____________.plist +14 -0
  1594. data/textmate/Bundles/Source.tmbundle/Snippets/Escaped_Single_Quote_Pair_____________.plist +14 -0
  1595. data/textmate/Bundles/Source.tmbundle/Snippets/Frame_text.plist +16 -0
  1596. data/textmate/Bundles/Source.tmbundle/Snippets/__n.plist +16 -0
  1597. data/textmate/Bundles/TerminalMate.tmbundle/Preferences/Haskell.tmPreferences +36 -0
  1598. data/textmate/Bundles/TerminalMate.tmbundle/Preferences/Ocaml.tmPreferences +30 -0
  1599. data/textmate/Bundles/TerminalMate.tmbundle/Preferences/Python.tmPreferences +30 -0
  1600. data/textmate/Bundles/TerminalMate.tmbundle/Preferences/Rails.tmPreferences +30 -0
  1601. data/textmate/Bundles/TerminalMate.tmbundle/Preferences/Ruby.tmPreferences +30 -0
  1602. data/textmate/Bundles/TerminalMate.tmbundle/Preferences/Shell.tmPreferences +36 -0
  1603. data/textmate/Bundles/Text.tmbundle/Preferences/Markup_style___Bold.plist +17 -0
  1604. data/textmate/Bundles/Text.tmbundle/Preferences/Markup_style___Italic.plist +17 -0
  1605. data/textmate/Bundles/Text.tmbundle/Preferences/Markup_style___Underline.plist +17 -0
  1606. data/textmate/Bundles/Text.tmbundle/Preferences/Miscellaneous.plist +65 -0
  1607. data/textmate/Bundles/Text.tmbundle/Preferences/Spell_checking.plist +17 -0
  1608. data/textmate/Bundles/Text.tmbundle/Snippets/010_Copyright.plist +14 -0
  1609. data/textmate/Bundles/Text.tmbundle/Snippets/Conitnue_bullet.plist +17 -0
  1610. data/textmate/Bundles/Text.tmbundle/Snippets/Conitnue_light_bullet.plist +17 -0
  1611. data/textmate/Bundles/Text.tmbundle/Snippets/Conitnue_star_bullet.plist +17 -0
  1612. data/textmate/Bundles/Text.tmbundle/Snippets/Insert_ISO_date.plist +14 -0
  1613. data/textmate/Bundles/Text.tmbundle/Snippets/Lorem_ipsum.plist +14 -0
  1614. data/textmate/Bundles/TextMate.tmbundle/Preferences/Smart_Pairs___Regex_Character_Class__.tmPreferences +17 -0
  1615. data/textmate/Bundles/TextMate.tmbundle/Preferences/Spell_Checking___Disable_for_CamelCase_Words.tmPreferences +17 -0
  1616. data/textmate/Bundles/TextMate.tmbundle/Preferences/Style___Separator.tmPreferences +19 -0
  1617. data/textmate/Bundles/TextMate.tmbundle/Preferences/Style___Separator____Release_Notes.tmPreferences +19 -0
  1618. data/textmate/Bundles/Textile.tmbundle/Preferences/Disable_Spell_Check_in_Raw.plist +17 -0
  1619. data/textmate/Bundles/Textile.tmbundle/Preferences/Preferences.plist +66 -0
  1620. data/textmate/Bundles/Textile.tmbundle/Preferences/Symbol_List___Heading.plist +29 -0
  1621. data/textmate/Bundles/Textile.tmbundle/Snippets/Acronym.tmSnippet +16 -0
  1622. data/textmate/Bundles/Textile.tmbundle/Snippets/Block_Quotes.tmSnippet +18 -0
  1623. data/textmate/Bundles/Textile.tmbundle/Snippets/Bold.plist +16 -0
  1624. data/textmate/Bundles/Textile.tmbundle/Snippets/Citation.tmSnippet +16 -0
  1625. data/textmate/Bundles/Textile.tmbundle/Snippets/Class.tmSnippet +16 -0
  1626. data/textmate/Bundles/Textile.tmbundle/Snippets/Class_and_Id.tmSnippet +16 -0
  1627. data/textmate/Bundles/Textile.tmbundle/Snippets/Color.tmSnippet +16 -0
  1628. data/textmate/Bundles/Textile.tmbundle/Snippets/Color_2.tmSnippet +16 -0
  1629. data/textmate/Bundles/Textile.tmbundle/Snippets/Convert_Tabs_To_Table.plist +14 -0
  1630. data/textmate/Bundles/Textile.tmbundle/Snippets/Footnote.tmSnippet +18 -0
  1631. data/textmate/Bundles/Textile.tmbundle/Snippets/Heading_1.tmSnippet +18 -0
  1632. data/textmate/Bundles/Textile.tmbundle/Snippets/Heading_2.tmSnippet +18 -0
  1633. data/textmate/Bundles/Textile.tmbundle/Snippets/Heading_3.tmSnippet +18 -0
  1634. data/textmate/Bundles/Textile.tmbundle/Snippets/Heading_4.tmSnippet +18 -0
  1635. data/textmate/Bundles/Textile.tmbundle/Snippets/Heading_5.tmSnippet +18 -0
  1636. data/textmate/Bundles/Textile.tmbundle/Snippets/Heading_6.tmSnippet +18 -0
  1637. data/textmate/Bundles/Textile.tmbundle/Snippets/Id.tmSnippet +16 -0
  1638. data/textmate/Bundles/Textile.tmbundle/Snippets/Image.tmSnippet +16 -0
  1639. data/textmate/Bundles/Textile.tmbundle/Snippets/Italic.plist +16 -0
  1640. data/textmate/Bundles/Textile.tmbundle/Snippets/Language.tmSnippet +16 -0
  1641. data/textmate/Bundles/Textile.tmbundle/Snippets/Linked_Image.tmSnippet +16 -0
  1642. data/textmate/Bundles/Textile.tmbundle/Snippets/Strikethrough.tmSnippet +16 -0
  1643. data/textmate/Bundles/Textile.tmbundle/Snippets/Style.tmSnippet +16 -0
  1644. data/textmate/Bundles/Textile.tmbundle/Snippets/Subscript.tmSnippet +16 -0
  1645. data/textmate/Bundles/Textile.tmbundle/Snippets/Superscript.tmSnippet +16 -0
  1646. data/textmate/Bundles/Textile.tmbundle/Snippets/Underline.tmSnippet +16 -0
  1647. data/textmate/Bundles/Thrift.tmbundle/Preferences/Symbol_List___enum.tmPreferences +19 -0
  1648. data/textmate/Bundles/Thrift.tmbundle/Preferences/Symbol_List___exception.tmPreferences +19 -0
  1649. data/textmate/Bundles/Thrift.tmbundle/Preferences/Symbol_List___function.tmPreferences +19 -0
  1650. data/textmate/Bundles/Thrift.tmbundle/Preferences/Symbol_List___senum.tmPreferences +19 -0
  1651. data/textmate/Bundles/Thrift.tmbundle/Preferences/Symbol_List___service.tmPreferences +19 -0
  1652. data/textmate/Bundles/Thrift.tmbundle/Preferences/Symbol_List___struct.tmPreferences +19 -0
  1653. data/textmate/Bundles/Thrift.tmbundle/Snippets/enum.tmSnippet +18 -0
  1654. data/textmate/Bundles/Thrift.tmbundle/Snippets/exception.tmSnippet +18 -0
  1655. data/textmate/Bundles/Thrift.tmbundle/Snippets/service.tmSnippet +18 -0
  1656. data/textmate/Bundles/Thrift.tmbundle/Snippets/struct.tmSnippet +18 -0
  1657. data/textmate/Bundles/XML.tmbundle/Preferences/Comments.plist +30 -0
  1658. data/textmate/Bundles/XML.tmbundle/Preferences/Miscellaneous.plist +64 -0
  1659. data/textmate/Bundles/XML.tmbundle/Preferences/Symbol_List___Templates.plist +19 -0
  1660. data/textmate/Bundles/XML.tmbundle/Snippets/CDATA.tmSnippet +16 -0
  1661. data/textmate/Bundles/XML.tmbundle/Snippets/Smart_return__indent_for_tag_pairs.plist +18 -0
  1662. data/textmate/Bundles/XML.tmbundle/Snippets/XML_Processing_Instruction.tmSnippet +16 -0
  1663. data/textmate/Bundles/XML.tmbundle/Snippets/long_attribute_tag.plist +17 -0
  1664. data/textmate/Bundles/XML.tmbundle/Snippets/long_tag.plist +16 -0
  1665. data/textmate/Bundles/XML.tmbundle/Snippets/short_tag.plist +16 -0
  1666. data/textmate/Bundles/YAML.tmbundle/Preferences/Comments.plist +24 -0
  1667. data/textmate/Bundles/YAML.tmbundle/Preferences/Indenting.plist +19 -0
  1668. data/textmate/Bundles/YAML.tmbundle/Snippets/untitled.plist +16 -0
  1669. data/textmate/Bundles/asciidoc.tmbundle/Preferences/Symbol_List___Heading.tmPreferences +22 -0
  1670. data/textmate/Bundles/asciidoc.tmbundle/Preferences/Typing_Pairs___Defaults.tmPreferences +54 -0
  1671. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Anchor.tmSnippet +16 -0
  1672. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Bold.tmSnippet +16 -0
  1673. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Comment_Block.tmSnippet +19 -0
  1674. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Example_Block.tmSnippet +19 -0
  1675. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Italic.tmSnippet +16 -0
  1676. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Listing_Block.tmSnippet +20 -0
  1677. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Literal_Block.tmSnippet +19 -0
  1678. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Passthrough_Block.tmSnippet +19 -0
  1679. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Quote_Block.tmSnippet +19 -0
  1680. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Quoted.tmSnippet +16 -0
  1681. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Sidebar_Block.tmSnippet +19 -0
  1682. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Subscript.tmSnippet +16 -0
  1683. data/textmate/Bundles/asciidoc.tmbundle/Snippets/Superscript.tmSnippet +16 -0
  1684. metadata +1646 -2
@@ -0,0 +1,15 @@
1
+ module Redcar
2
+ class EditView
3
+ module Actions
4
+ class EscapeHandler
5
+ def self.handle(edit_view, modifiers)
6
+ return false if Redcar.app.focussed_window.speedbar
7
+ return false if modifiers.any?
8
+ # on osx menu items with "Escape" as their keybinding don't seem to activate correctly
9
+ return false if Redcar.platform != :osx
10
+ AutoCompleter::AutoCompleteCommand.new.run
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -2,6 +2,10 @@ module Redcar
2
2
  class EditView
3
3
  module Actions
4
4
  class IndentTabHandler
5
+ def self.priority
6
+ 1
7
+ end
8
+
5
9
  def self.handle(edit_view, modifiers)
6
10
  return false if modifiers.any?
7
11
  doc = edit_view.document
@@ -8,22 +8,21 @@ module Redcar
8
8
  include Redcar::Observable
9
9
  extend Forwardable
10
10
 
11
- def self.register_controller_type(controller_type)
12
- unless controller_type.ancestors.include?(Document::Controller)
13
- raise "expected #{Document::Controller}"
11
+ def self.all_document_controller_types
12
+ result = []
13
+ Redcar.plugin_manager.loaded_plugins.each do |plugin|
14
+ if plugin.object.respond_to?(:document_controller_types)
15
+ result += plugin.object.document_controller_types
16
+ end
14
17
  end
15
- document_controller_types << controller_type
16
- end
17
-
18
- def self.document_controller_types
19
- @document_controller_types ||= []
18
+ result
20
19
  end
21
20
 
22
21
  class << self
23
22
  attr_accessor :default_mirror
24
23
  end
25
24
 
26
- attr_reader :mirror
25
+ attr_reader :mirror, :edit_view
27
26
 
28
27
  def initialize(edit_view)
29
28
  @edit_view = edit_view
@@ -33,12 +32,15 @@ module Redcar
33
32
  def get_controllers
34
33
  @controllers = {
35
34
  Controller::ModificationCallbacks => [],
36
- Controller::NewlineCallback => []
35
+ Controller::NewlineCallback => [],
36
+ Controller::CursorCallbacks => []
37
37
  }
38
- Document.document_controller_types.each do |type|
38
+ Document.all_document_controller_types.each do |type|
39
+ controller = type.new
40
+ controller.document = self
39
41
  @controllers.each do |key, value|
40
- if type.ancestors.include?(key)
41
- value << type.new(self)
42
+ if controller.is_a?(key)
43
+ value << controller
42
44
  end
43
45
  end
44
46
  end
@@ -57,11 +59,9 @@ module Redcar
57
59
  @mirror ? @mirror.title : nil
58
60
  end
59
61
 
60
- # helper method to get
61
- # the mirror's path
62
- # if it has one
62
+ # helper method to get the mirror's path if it has one
63
63
  def path
64
- if @mirror && @mirror.respond_to?(:path) && @mirror.path
64
+ if @mirror and @mirror.respond_to?(:path) and @mirror.path
65
65
  @mirror.path
66
66
  else
67
67
  nil
@@ -81,7 +81,9 @@ module Redcar
81
81
  def verify_text(start_offset, end_offset, text)
82
82
  @change = [start_offset, end_offset, text]
83
83
  @controllers[Controller::ModificationCallbacks].each do |controller|
84
- controller.before_modify(start_offset, end_offset, text)
84
+ rescue_document_controller_error(controller) do
85
+ controller.before_modify(start_offset, end_offset, text)
86
+ end
85
87
  end
86
88
  end
87
89
 
@@ -89,16 +91,28 @@ module Redcar
89
91
  start_offset, end_offset, text = *@change
90
92
  set_modified(true)
91
93
  @controllers[Controller::ModificationCallbacks].each do |controller|
92
- controller.after_modify
94
+ rescue_document_controller_error(controller) do
95
+ controller.after_modify
96
+ end
93
97
  end
94
98
  @controllers[Controller::NewlineCallback].each do |controller|
95
99
  if text == "\n" or text == "\r\n"
96
- controller.after_newline(line_at_offset(start_offset) + 1)
100
+ rescue_document_controller_error(controller) do
101
+ controller.after_newline(line_at_offset(start_offset) + 1)
102
+ end
97
103
  end
98
104
  end
99
105
  @change = nil
100
106
  notify_listeners(:changed)
101
- end
107
+ end
108
+
109
+ def cursor_moved(new_offset)
110
+ @controllers[Controller::CursorCallbacks].each do |controller|
111
+ rescue_document_controller_error(controller) do
112
+ controller.cursor_moved(new_offset)
113
+ end
114
+ end
115
+ end
102
116
 
103
117
  def about_to_be_changed(start_offset, length, text)
104
118
  end
@@ -132,6 +146,13 @@ module Redcar
132
146
  replace(offset, 0, text)
133
147
  end
134
148
 
149
+ # Insert text at the cursor offset
150
+ #
151
+ # @param [String] text text to insert
152
+ def insert_at_cursor(text)
153
+ insert(cursor_offset, text)
154
+ end
155
+
135
156
  # Delete text
136
157
  #
137
158
  # @param [Integer] offset character offset from the start of the document
@@ -294,6 +315,15 @@ module Redcar
294
315
  def get_range(start, length)
295
316
  controller.get_range(start, length)
296
317
  end
318
+
319
+ # Get a slice of text from the document.
320
+ #
321
+ # @param [String] start_offset the character offset of the start of the slice
322
+ # @param [String] end_offset the character offset of the end of the slice
323
+ # @return [String] the text
324
+ def get_slice(start_offset, end_offset)
325
+ get_range(start_offset, end_offset - start_offset)
326
+ end
297
327
 
298
328
  # Get the text of a line by index. (Includes a trailing "\n",
299
329
  # unless it is the last line in the document.)
@@ -380,6 +410,21 @@ module Redcar
380
410
  def num_lines_visible
381
411
  biggest_visible_line - smallest_visible_line
382
412
  end
413
+
414
+ # The scope hierarchy at this point
415
+ #
416
+ # @param [String]
417
+ def cursor_scope
418
+ controller.scope_at(cursor_line, cursor_line_offset)
419
+ end
420
+
421
+ def create_mark(offset, gravity=:right)
422
+ controller.create_mark(offset, gravity)
423
+ end
424
+
425
+ def delete_mark(mark)
426
+ controller.delete_mark(mark)
427
+ end
383
428
 
384
429
  private
385
430
 
@@ -405,5 +450,17 @@ module Redcar
405
450
  "untitled"
406
451
  end
407
452
  end
453
+
454
+ def rescue_document_controller_error(controller)
455
+ begin
456
+ yield
457
+ rescue => e
458
+ puts "*** ERROR in Document controller: #{controller.inspect}"
459
+ puts e.class.name + ": " + e.message
460
+ puts e.backtrace
461
+ end
462
+ end
408
463
  end
409
464
  end
465
+
466
+
@@ -2,12 +2,10 @@
2
2
  module Redcar
3
3
  class Document
4
4
  module Controller
5
- def initialize(document)
6
- @document = document
7
- end
5
+ attr_accessor :document
8
6
 
9
- def document
10
- @document
7
+ def inspect
8
+ "<#{self.class}>"
11
9
  end
12
10
 
13
11
  module ModificationCallbacks
@@ -25,6 +23,12 @@ module Redcar
25
23
  raise "not implemented"
26
24
  end
27
25
  end
26
+
27
+ module CursorCallbacks
28
+ def cursor_moved(offset)
29
+ raise "not implemented"
30
+ end
31
+ end
28
32
  end
29
33
  end
30
34
  end
@@ -120,6 +120,10 @@ module Redcar
120
120
  end
121
121
  end
122
122
 
123
+ def delay_parsing
124
+ mate_text.delay_parsing { yield }
125
+ end
126
+
123
127
  def swt_focus_gained
124
128
  EditView.focussed_edit_view = @model
125
129
  @model.focus
@@ -14,6 +14,7 @@ module Redcar
14
14
  def attach_modification_listeners
15
15
  jface_document.add_document_listener(DocumentListener.new(@model))
16
16
  styledText.add_selection_listener(SelectionListener.new(@model))
17
+ styledText.add_caret_listener(CaretListener.new(@model))
17
18
  end
18
19
 
19
20
  def single_line?
@@ -107,6 +108,32 @@ module Redcar
107
108
  @model.selection_range_changed(cursor_offset, selection_offset)
108
109
  end
109
110
 
111
+ @markStruct ||= Struct.new(:location, :category) # save away the parent class
112
+ class Mark < @markStruct
113
+ def get_offset; location.get_offset; end
114
+ def get_line; location.get_line; end
115
+ def get_line_offset; location.get_line_offset; end
116
+ def inspect; "<Mark #{get_line}:#{get_line_offset} (#{get_offset})>"; end
117
+ end
118
+
119
+ def create_mark(offset, gravity)
120
+ line = line_at_offset(offset)
121
+ line_offset = offset - offset_at_line(line)
122
+ case gravity
123
+ when :left
124
+ category = "lefts"
125
+ when :right
126
+ category = "rights"
127
+ end
128
+ location = @swt_mate_document.get_text_location(line, line_offset)
129
+ @swt_mate_document.add_text_location(category, location)
130
+ Mark.new(location, category)
131
+ end
132
+
133
+ def delete_mark(mark)
134
+ @swt_mate_document.remove_text_location(mark.category, mark.location)
135
+ end
136
+
110
137
  def block_selection_mode?
111
138
  styledText.get_block_selection
112
139
  end
@@ -119,6 +146,20 @@ module Redcar
119
146
  @swt_mate_document.mateText.getControl
120
147
  end
121
148
 
149
+ def scope_at(line, line_offset)
150
+ @swt_mate_document.mateText.scope_at(line, line_offset)
151
+ end
152
+
153
+ class CaretListener
154
+ def initialize(model)
155
+ @model = model
156
+ end
157
+
158
+ def caret_moved(event)
159
+ @model.cursor_moved(event.caretOffset)
160
+ end
161
+ end
162
+
122
163
  class SelectionListener
123
164
  def initialize(model)
124
165
  @model = model
@@ -8,6 +8,7 @@ module JavaMateView
8
8
  import com.redcareditor.mate.Parser
9
9
  import com.redcareditor.mate.Pattern
10
10
  import com.redcareditor.mate.Scope
11
+ import com.redcareditor.mate.ScopeMatcher
11
12
  import com.redcareditor.theme.Theme
12
13
  import com.redcareditor.theme.ThemeManager
13
14
 
@@ -23,6 +24,12 @@ module JavaMateView
23
24
  scope.isOpen = true
24
25
  self.parser.root = scope
25
26
  end
27
+
28
+ def delay_parsing
29
+ parser.deactivate
30
+ yield
31
+ parser.reactivate
32
+ end
26
33
  end
27
34
  end
28
35
 
@@ -15,7 +15,7 @@ module Redcar
15
15
  func = RubyFunc.new(@html_tab.controller.browser, "rubyCall")
16
16
  func.controller = @controller
17
17
  text = controller.index + setup_javascript_listeners
18
- puts text
18
+ # puts text
19
19
  @html_tab.controller.browser.set_text(text)
20
20
  end
21
21
 
@@ -6,9 +6,11 @@ require "project/find_file_dialog"
6
6
  require "project/dir_mirror"
7
7
  require "project/dir_controller"
8
8
  require "project/drb_service"
9
+ require "project/recent_directories"
9
10
 
10
11
  module Redcar
11
12
  class Project
13
+ RECENT_FILES_LENGTH = 20
12
14
 
13
15
  # this will restore open files unless other files or dirs were passed
14
16
  # as command line parameters
@@ -50,8 +52,8 @@ module Redcar
50
52
 
51
53
  def self.filter_path
52
54
  if Redcar.app.focussed_notebook_tab
53
- if path = Redcar.app.focussed_notebook_tab.document.path
54
- dir = File.dirname(path)
55
+ if mirror = EditView.focussed_document_mirror and mirror.is_a?(FileMirror)
56
+ dir = File.dirname(mirror.path)
55
57
  return dir
56
58
  end
57
59
  end
@@ -105,7 +107,7 @@ module Redcar
105
107
 
106
108
  # Opens a new EditTab with a FileMirror for the given path.
107
109
  #
108
- # @path [String] path the path of the file to be edited
110
+ # @path [String] path the path of the file to be edited
109
111
  # @param [Window] win the Window to open the File in
110
112
  def self.open_file(path, win = Redcar.app.focussed_window)
111
113
  win ||= Redcar.app.new_window # in case there's not one open
@@ -122,18 +124,40 @@ module Redcar
122
124
  # @param [String] path the path of the directory to view
123
125
  # @param [Window] win the Window to open the Tree in
124
126
  def self.open_dir(path, win = Redcar.app.focussed_window)
127
+ if !File.directory?(path)
128
+ raise 'Not a directory: ' + path
129
+ end
125
130
  win ||= Redcar.app.new_window # case none open
126
131
  tree = Tree.new(Project::DirMirror.new(path),
127
132
  Project::DirController.new)
128
133
  Project.open_tree(win, tree)
134
+ # adds the directory path to the RecentDirectories plugin
135
+ RecentDirectories.store_path(path)
129
136
  storage['last_open_dir'] = path
130
137
  end
131
138
 
132
- # A list of files previously opened in this session
139
+ # A list of files previously opened in this session for a given directory path
133
140
  #
141
+ # @param [String] path a directory path
134
142
  # @return [Array<String>] an array of paths
135
- def self.recent_files
136
- @recent_files ||= []
143
+ def self.recent_files_for(path)
144
+ (@recent_files ||= Hash.new {|h,k| h[k] = [] })[path]
145
+ end
146
+
147
+ # The directory path of the currently focussed project, or nil if
148
+ # there is no directory open in the focussed window.
149
+ #
150
+ # @return [String, nil]
151
+ def self.focussed_project_path
152
+ if tree = focussed_project_tree
153
+ tree.tree_mirror.path
154
+ end
155
+ end
156
+
157
+ # The Tree object for the currently focussed project tree, or nil
158
+ # if there is no directory open in the focussed window.
159
+ def self.focussed_project_tree
160
+ Redcar.app.focussed_window.treebook.trees.detect {|t| t.tree_mirror.is_a?(Project::DirMirror)}
137
161
  end
138
162
 
139
163
  private
@@ -149,7 +173,6 @@ module Redcar
149
173
  open_file(path)
150
174
  end
151
175
  end
152
-
153
176
  end
154
177
 
155
178
  # saves away a list of the currently open files in
@@ -168,8 +191,10 @@ module Redcar
168
191
  # handles files and/or dirs passed as command line arguments
169
192
  def self.handle_startup_arguments
170
193
  if ARGV
171
- dir_args = ARGV.select {|path| File.directory?(path) }
172
- file_args = ARGV.select {|path| File.file?(path) }
194
+ args = ARGV.dup
195
+ dir_args = args.select {|path| File.directory?(path) }
196
+ args -= dir_args
197
+ file_args = args.select {|path| !path.start_with?('--') }
173
198
 
174
199
  dir_args.each {|path| open_dir(path) }
175
200
  file_args.each {|path| open_file(path) }
@@ -182,26 +207,31 @@ module Redcar
182
207
  def self.init_current_files_hooks
183
208
  Redcar.app.add_listener(:tab_focussed) do |tab|
184
209
  if tab and tab.document_mirror.respond_to?(:path)
185
- add_to_recent_files(tab.document_mirror.path)
210
+ add_to_recent_files_for(Project.focussed_project_path, tab.document_mirror.path)
186
211
  end
187
212
  end
213
+ attach_app_listeners
188
214
  end
189
215
 
190
- def self.add_to_recent_files(new_file)
191
- # sanitize paths for doze
192
- # like "E:\\installs\\ruby191p376\\bin/rdebug.bat" => "E:/installs/ruby191p376/bin/rdebug.bat"
193
- new_file = File.expand_path(new_file)
194
- unless new_file == @last_file
195
- recent_files.delete(new_file)
196
- recent_files << new_file
216
+ def self.attach_app_listeners
217
+ Redcar.app.add_listener(:lost_focus) do
218
+ FindFileDialog.clear
219
+ end
197
220
 
198
- if @last_file
199
- recent_files.delete(@last_file)
200
- recent_files.unshift(@last_file)
201
- end
221
+ Redcar.app.add_listener(:focussed) do
222
+ @window_trees.values.each {|tree| tree.refresh}
223
+ end
224
+ end
225
+
226
+ def self.add_to_recent_files_for(directory_path, new_file)
227
+ new_file = File.expand_path(new_file)
228
+ if recent_files_for(directory_path).include?(new_file)
229
+ recent_files_for(directory_path).delete(new_file)
230
+ end
231
+ recent_files_for(directory_path).unshift(new_file)
232
+ if recent_files_for(directory_path).length > RECENT_FILES_LENGTH
233
+ recent_files_for(directory_path).pop
202
234
  end
203
-
204
- @last_file = new_file
205
235
  end
206
236
 
207
237
  def self.set_tree(win, tree)
@@ -320,7 +350,7 @@ module Redcar
320
350
  class FindFileCommand < ProjectCommand
321
351
 
322
352
  def execute
323
- dialog = FindFileDialog.new win
353
+ dialog = FindFileDialog.new
324
354
  dialog.open
325
355
  end
326
356
  end