redcar 0.3.1dev → 0.3.2dev
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.
- data/CHANGES +34 -1
- data/README.md +2 -1
- data/ROADMAP.md +13 -45
- data/Rakefile +15 -14
- data/bin/redcar +4 -1
- data/lib/plugin_manager/README.md +61 -0
- data/lib/plugin_manager/Rakefile +55 -0
- data/lib/plugin_manager/bin/plugin_manager +4 -0
- data/lib/plugin_manager/lib/plugin_manager.rb +107 -0
- data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +37 -0
- data/lib/plugin_manager/lib/plugin_manager/plugin.rb +9 -0
- data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +50 -0
- data/lib/plugin_manager/plugin_manager.gemspec +33 -0
- data/lib/plugin_manager/spec/fixtures/error_in_definition/core/plugin.rb +2 -0
- data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/core.rb +4 -0
- data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/example/core/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/example/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/example/debug/debug.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/example/debug/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/example/extras/extras.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/example/extras/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core2/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions1/core2/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core2/core.rb +20 -0
- data/lib/plugin_manager/spec/fixtures/two_versions2/core2/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/core.rb +10 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/debug.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/plugin.rb +8 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/core.rb +10 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/plugin.rb +7 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/debug.rb +6 -0
- data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/plugin.rb +8 -0
- data/lib/plugin_manager/spec/plugin_manager_spec.rb +208 -0
- data/lib/plugin_manager/spec/spec_helper.rb +3 -0
- data/lib/redcar.rb +8 -3
- data/lib/redcar/boot.rb +59 -56
- data/lib/redcar/installer.rb +1 -1
- data/lib/redcar/instance_exec.rb +25 -0
- data/lib/redcar/runner.rb +5 -1
- data/lib/redcar/usage.rb +5 -1
- data/plugins/application/icons/close.png +0 -0
- data/plugins/application/lib/application.rb +61 -28
- data/plugins/application/lib/application/clipboard.rb +71 -0
- data/plugins/application/lib/application/dialog.rb +63 -0
- data/plugins/application/lib/application/menu.rb +32 -1
- data/plugins/application/lib/application/menu/builder.rb +10 -4
- data/plugins/application/lib/application/menu/item.rb +16 -3
- data/plugins/application/lib/application/notebook.rb +5 -0
- data/plugins/application/lib/application/speedbar.rb +73 -0
- data/plugins/application/lib/application/window.rb +25 -0
- data/plugins/application/plugin.rb +8 -0
- data/plugins/application/spec/application/clipboard_spec.rb +36 -0
- data/plugins/application/spec/application/menu_spec.rb +73 -1
- data/plugins/application/spec/application/speedbar_spec.rb +46 -0
- data/plugins/application/spec/spec_helper.rb +1 -1
- data/plugins/application_swt/lib/application_swt.rb +18 -11
- data/plugins/application_swt/lib/application_swt/clipboard.rb +42 -0
- data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +68 -0
- data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +1 -1
- data/plugins/application_swt/lib/application_swt/html_tab.rb +32 -0
- data/plugins/application_swt/lib/application_swt/menu.rb +57 -21
- data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +39 -2
- data/plugins/application_swt/lib/application_swt/notebook.rb +5 -0
- data/plugins/application_swt/lib/application_swt/speedbar.rb +187 -0
- data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +24 -1
- data/plugins/application_swt/lib/application_swt/window.rb +33 -3
- data/plugins/application_swt/plugin.rb +8 -0
- data/plugins/application_swt/spec/spec_helper.rb +1 -1
- data/plugins/auto_completer/features/auto_complete.feature +65 -0
- data/plugins/auto_completer/features/step_definitions/auto_complete_steps.rb +4 -0
- data/plugins/auto_completer/features/support/env.rb +4 -0
- data/plugins/auto_completer/lib/auto_completer.rb +99 -0
- data/plugins/auto_completer/lib/auto_completer/document_controller.rb +52 -0
- data/plugins/auto_completer/lib/auto_completer/word_iterator.rb +48 -0
- data/plugins/auto_completer/lib/auto_completer/word_list.rb +40 -0
- data/plugins/auto_completer/plugin.rb +10 -0
- data/plugins/auto_indenter/lib/auto_indenter.rb +1 -1
- data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +1 -1
- data/plugins/auto_indenter/plugin.rb +8 -0
- data/plugins/core/lib/core.rb +6 -30
- data/plugins/core/lib/core/gui.rb +7 -2
- data/plugins/core/lib/core/logger.rb +7 -4
- data/plugins/core/lib/core/plugin/storage.rb +15 -5
- data/plugins/core/plugin.rb +7 -0
- data/plugins/core/spec/core/storage_spec.rb +0 -9
- data/plugins/edit_view/features/cut_and_paste.feature +45 -0
- data/plugins/edit_view/features/step_definitions/editing_steps.rb +22 -0
- data/plugins/edit_view/features/step_definitions/key_steps.rb +1 -1
- data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
- data/plugins/edit_view/features/step_definitions/tab_steps.rb +2 -0
- data/plugins/edit_view/features/step_definitions/window_steps.rb +1 -1
- data/plugins/edit_view/features/support/env.rb +2 -2
- data/plugins/edit_view/lib/edit_view.rb +24 -13
- data/plugins/edit_view/lib/edit_view/document.rb +233 -15
- data/plugins/edit_view/lib/edit_view/edit_tab.rb +2 -2
- data/plugins/edit_view/plugin.rb +9 -0
- data/plugins/edit_view/spec/spec_helper.rb +1 -1
- data/plugins/edit_view_swt/lib/edit_view_swt.rb +37 -8
- data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +59 -24
- data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +66 -0
- data/plugins/edit_view_swt/plugin.rb +9 -0
- data/plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb +29 -0
- data/plugins/edit_view_swt/spec/spec_helper.rb +6 -0
- data/plugins/html_view/assets/blueprint/ie.css +35 -0
- data/plugins/html_view/assets/blueprint/print.css +29 -0
- data/plugins/html_view/assets/blueprint/screen.css +257 -0
- data/plugins/html_view/assets/blueprint/src/forms.css +65 -0
- data/plugins/html_view/assets/blueprint/src/grid.css +281 -0
- data/plugins/html_view/assets/blueprint/src/grid.png +0 -0
- data/plugins/html_view/assets/blueprint/src/ie.css +76 -0
- data/plugins/html_view/assets/blueprint/src/print.css +85 -0
- data/plugins/html_view/assets/blueprint/src/reset.css +38 -0
- data/plugins/html_view/assets/blueprint/src/typography.css +106 -0
- data/plugins/html_view/assets/jquery-1.4.min.js +151 -0
- data/plugins/html_view/assets/redcar.css +12 -0
- data/plugins/html_view/lib/html_controller.rb +5 -0
- data/plugins/html_view/lib/html_view.rb +47 -0
- data/plugins/html_view/lib/html_view/html_tab.rb +16 -0
- data/plugins/html_view/plugin.rb +12 -0
- data/plugins/my_plugin/lib/my_plugin.rb +55 -0
- data/plugins/my_plugin/plugin.rb +8 -0
- data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +62 -0
- data/plugins/plugin_manager_ui/plugin.rb +12 -0
- data/plugins/plugin_manager_ui/views/index.html.erb +31 -0
- data/plugins/project/lib/project.rb +27 -13
- data/plugins/project/lib/project/find_file_dialog.rb +25 -19
- data/plugins/project/plugin.rb +8 -0
- data/plugins/project/spec/spec_helper.rb +1 -1
- data/plugins/redcar/plugin.rb +13 -0
- data/plugins/redcar/redcar.rb +249 -8
- data/plugins/repl/lib/repl.rb +22 -14
- data/plugins/repl/plugin.rb +8 -0
- data/plugins/repl/spec/spec_helper.rb +1 -1
- data/plugins/tree/plugin.rb +9 -0
- data/plugins/tree/spec/spec_helper.rb +1 -1
- data/plugins/tree_view_swt/plugin.rb +9 -0
- data/textmate/Bundles/Apache.tmbundle/Syntaxes/Apache.plist +544 -0
- data/textmate/Bundles/Apache.tmbundle/Syntaxes/mod_perl.tmLanguage +120 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___HTML__.plist +88 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Markdown__.plist +89 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Text__.plist +74 -0
- data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Textile__.plist +74 -0
- data/textmate/Bundles/Bundle Development.tmbundle/Syntaxes/LanguageGrammar.tmLanguage +1829 -0
- data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/Build.tmLanguage +142 -0
- data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/C__.tmLanguage +524 -0
- data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/Qt_C____.tmLanguage +62 -0
- data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/qmake_Project.tmLanguage +308 -0
- data/textmate/Bundles/C.tmbundle/Syntaxes/C.plist +90 -48
- data/textmate/Bundles/Clojure.tmbundle/Syntaxes/Clojure.tmLanguage +427 -0
- data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Plain_Text_Feature.tmLanguage +106 -13
- data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Steps.tmLanguage +177 -2
- data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +109 -17
- data/textmate/Bundles/D.tmbundle/Syntaxes/D.tmLanguage +908 -0
- data/textmate/Bundles/Diff.tmbundle/Syntaxes/Diff.plist +229 -0
- data/textmate/Bundles/DokuWiki.tmbundle/Syntaxes/DokuWiki.tmLanguage +649 -0
- data/textmate/Bundles/F-Script.tmbundle/Syntaxes/F__Script.plist +219 -0
- data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Haskell.plist +646 -0
- data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Literate_Haskell.plist +90 -0
- data/textmate/Bundles/Io.tmbundle/Syntaxes/Io.plist +225 -0
- data/textmate/Bundles/JSON.tmbundle/Syntaxes/JSON.tmLanguage +285 -0
- data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype.tmLanguage +193 -0
- data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype_Bracketed.tmLanguage +394 -0
- data/textmate/Bundles/JavaScript jQuery.tmbundle/Syntaxes/jQuery___JavaScript__.tmLanguage +440 -0
- data/textmate/Bundles/JavaScript.tmbundle/Syntaxes/JavaScript.plist +712 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/Bibtex.plist +406 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX.plist +1601 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Beamer.plist +106 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Log.plist +141 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Memoir.tmLanguage +165 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX.plist +246 -0
- data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX_Math.plist +132 -0
- data/textmate/Bundles/Lisp.tmbundle/Syntaxes/Lisp.plist +160 -0
- data/textmate/Bundles/Makefile.tmbundle/Syntaxes/Makefile.plist +103 -0
- data/textmate/Bundles/Markdown.tmbundle/Syntaxes/Markdown.plist +1192 -0
- data/textmate/Bundles/Markdown.tmbundle/Syntaxes/MultiMarkdown.tmLanguage +80 -0
- data/textmate/Bundles/PHP.tmbundle/Syntaxes/PHP.plist +3481 -0
- data/textmate/Bundles/Perl HTML-Template.tmbundle/Syntaxes/Perl_HTML__Template.tmLanguage +217 -0
- data/textmate/Bundles/Perl Template Toolkit.tmbundle/Syntaxes/HTML___Template_Toolkit__.tmLanguage +339 -0
- data/textmate/Bundles/Postscript.tmbundle/Syntaxes/Postscript.tmLanguage +321 -0
- data/textmate/Bundles/Processing.tmbundle/Syntaxes/Processing.plist +296 -0
- data/textmate/Bundles/Property List.tmbundle/Syntaxes/Property_List.tmLanguage +1650 -0
- data/textmate/Bundles/Python Django Templates.tmbundle/Syntaxes/HTML___Django__.tmLanguage +104 -0
- data/textmate/Bundles/Python Django.tmbundle/Syntaxes/Python_Django.tmLanguage +57 -0
- data/textmate/Bundles/Python.tmbundle/Syntaxes/Python.tmLanguage +3016 -0
- data/textmate/Bundles/Python.tmbundle/Syntaxes/Regular_Expressions___Python__.tmLanguage +299 -0
- data/textmate/Bundles/Rez.tmbundle/Syntaxes/Rez.plist +219 -0
- data/textmate/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +403 -0
- data/textmate/Bundles/Ruby RSpec.tmbundle/Syntaxes/RSpec.tmLanguage +142 -0
- data/textmate/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +139 -49
- data/textmate/Bundles/SQL.tmbundle/Syntaxes/SQL.plist +705 -0
- data/textmate/Bundles/SSH-Config.tmbundle/Syntaxes/SSH__Config.tmLanguage +88 -0
- data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala.tmLanguage +609 -0
- data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala_Properties.tmLanguage +54 -0
- data/textmate/Bundles/ShellScript.tmbundle/Syntaxes/Shell__Unix__Generic.plist +1855 -0
- data/textmate/Bundles/Tabular.tmbundle/Syntaxes/CSV.tmLanguage +178 -0
- data/textmate/Bundles/Tabular.tmbundle/Syntaxes/TSV.tmLanguage +135 -0
- data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Regular_Expressions___Oniguruma__.tmLanguage +295 -0
- data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Release_Notes.tmLanguage +126 -0
- data/textmate/Bundles/Textile.tmbundle/Syntaxes/Textile.plist +490 -0
- data/textmate/Bundles/Thrift.tmbundle/Syntaxes/Thrift.tmLanguage +1024 -0
- data/textmate/Bundles/XML.tmbundle/Syntaxes/XML.plist +576 -0
- data/textmate/Bundles/XML.tmbundle/Syntaxes/XSL.plist +157 -0
- data/textmate/Bundles/YAML.tmbundle/Syntaxes/YAML.plist +466 -0
- data/textmate/Themes/Django.tmTheme +436 -0
- metadata +371 -325
- data/config/default.yaml +0 -15
- data/lib/freebase2/README.txt +0 -47
- data/lib/freebase2/bin/default.yaml +0 -15
- data/lib/freebase2/bin/install.rb +0 -42
- data/lib/freebase2/bin/run.rb +0 -48
- data/lib/freebase2/lib/freebase/configuration.rb +0 -535
- data/lib/freebase2/lib/freebase/core.rb +0 -197
- data/lib/freebase2/lib/freebase/databus.rb +0 -1128
- data/lib/freebase2/lib/freebase/freebase.rb +0 -60
- data/lib/freebase2/lib/freebase/logger.rb +0 -117
- data/lib/freebase2/lib/freebase/plugin.rb +0 -384
- data/lib/freebase2/lib/freebase/properties.rb +0 -130
- data/lib/freebase2/lib/freebase/readers.rb +0 -328
- data/lib/freebase2/notes +0 -61
- data/lib/freebase2/plugins/raa_webrick/httpd.rb +0 -125
- data/lib/freebase2/plugins/raa_webrick/plugin.yaml +0 -7
- data/lib/freebase2/plugins/raa_webrick/web_root/test.html +0 -5
- data/lib/freebase2/plugins/raa_webrick/webserver.yaml +0 -6
- data/lib/freebase2/plugins/raa_xmlrpc4r/plugin.xml +0 -8
- data/lib/freebase2/plugins/raa_xmlrpc4r/rpcd.rb +0 -54
- data/lib/freebase2/regress/README +0 -1
- data/lib/little_plugger/History.txt +0 -20
- data/lib/little_plugger/Rakefile +0 -34
- data/lib/little_plugger/lib/little-plugger.rb +0 -323
- data/lib/little_plugger/spec/little-plugger_spec.rb +0 -26
- data/lib/little_plugger/spec/spec_helper.rb +0 -16
- data/lib/logging/History.txt +0 -240
- data/lib/logging/Rakefile +0 -37
- data/lib/logging/data/bad_logging_1.rb +0 -13
- data/lib/logging/data/bad_logging_2.rb +0 -21
- data/lib/logging/data/logging.rb +0 -42
- data/lib/logging/data/logging.yaml +0 -63
- data/lib/logging/data/simple_logging.rb +0 -13
- data/lib/logging/examples/appenders.rb +0 -47
- data/lib/logging/examples/classes.rb +0 -41
- data/lib/logging/examples/consolidation.rb +0 -83
- data/lib/logging/examples/formatting.rb +0 -51
- data/lib/logging/examples/hierarchies.rb +0 -73
- data/lib/logging/examples/layouts.rb +0 -48
- data/lib/logging/examples/loggers.rb +0 -29
- data/lib/logging/examples/names.rb +0 -43
- data/lib/logging/examples/simple.rb +0 -17
- data/lib/logging/lib/logging.rb +0 -501
- data/lib/logging/lib/logging/appender.rb +0 -251
- data/lib/logging/lib/logging/appenders.rb +0 -131
- data/lib/logging/lib/logging/appenders/buffering.rb +0 -168
- data/lib/logging/lib/logging/appenders/console.rb +0 -60
- data/lib/logging/lib/logging/appenders/email.rb +0 -75
- data/lib/logging/lib/logging/appenders/file.rb +0 -58
- data/lib/logging/lib/logging/appenders/growl.rb +0 -197
- data/lib/logging/lib/logging/appenders/io.rb +0 -69
- data/lib/logging/lib/logging/appenders/rolling_file.rb +0 -293
- data/lib/logging/lib/logging/appenders/string_io.rb +0 -68
- data/lib/logging/lib/logging/appenders/syslog.rb +0 -194
- data/lib/logging/lib/logging/config/configurator.rb +0 -188
- data/lib/logging/lib/logging/config/yaml_configurator.rb +0 -191
- data/lib/logging/lib/logging/layout.rb +0 -117
- data/lib/logging/lib/logging/layouts.rb +0 -47
- data/lib/logging/lib/logging/layouts/basic.rb +0 -32
- data/lib/logging/lib/logging/layouts/parseable.rb +0 -211
- data/lib/logging/lib/logging/layouts/pattern.rb +0 -311
- data/lib/logging/lib/logging/log_event.rb +0 -45
- data/lib/logging/lib/logging/logger.rb +0 -503
- data/lib/logging/lib/logging/repository.rb +0 -232
- data/lib/logging/lib/logging/root_logger.rb +0 -61
- data/lib/logging/lib/logging/stats.rb +0 -278
- data/lib/logging/lib/logging/utils.rb +0 -153
- data/lib/logging/lib/spec/logging_helper.rb +0 -34
- data/lib/logging/test/appenders/test_buffered_io.rb +0 -176
- data/lib/logging/test/appenders/test_console.rb +0 -66
- data/lib/logging/test/appenders/test_email.rb +0 -170
- data/lib/logging/test/appenders/test_file.rb +0 -95
- data/lib/logging/test/appenders/test_growl.rb +0 -127
- data/lib/logging/test/appenders/test_io.rb +0 -129
- data/lib/logging/test/appenders/test_rolling_file.rb +0 -200
- data/lib/logging/test/appenders/test_syslog.rb +0 -194
- data/lib/logging/test/benchmark.rb +0 -86
- data/lib/logging/test/config/test_configurator.rb +0 -70
- data/lib/logging/test/config/test_yaml_configurator.rb +0 -40
- data/lib/logging/test/layouts/test_basic.rb +0 -42
- data/lib/logging/test/layouts/test_json.rb +0 -112
- data/lib/logging/test/layouts/test_pattern.rb +0 -198
- data/lib/logging/test/layouts/test_yaml.rb +0 -121
- data/lib/logging/test/setup.rb +0 -44
- data/lib/logging/test/test_appender.rb +0 -152
- data/lib/logging/test/test_consolidate.rb +0 -46
- data/lib/logging/test/test_layout.rb +0 -110
- data/lib/logging/test/test_log_event.rb +0 -80
- data/lib/logging/test/test_logger.rb +0 -699
- data/lib/logging/test/test_logging.rb +0 -267
- data/lib/logging/test/test_repository.rb +0 -158
- data/lib/logging/test/test_root_logger.rb +0 -81
- data/lib/logging/test/test_stats.rb +0 -274
- data/lib/logging/test/test_utils.rb +0 -116
- data/plugins/application/plugin.yaml +0 -11
- data/plugins/application_swt/plugin.yaml +0 -11
- data/plugins/auto_indenter/plugin.yaml +0 -12
- data/plugins/core/plugin.yaml +0 -7
- data/plugins/edit_view/plugin.yaml +0 -14
- data/plugins/edit_view_swt/plugin.yaml +0 -14
- data/plugins/project/plugin.yaml +0 -12
- data/plugins/redcar/plugin.yaml +0 -18
- data/plugins/repl/plugin.yaml +0 -12
- data/plugins/tree/plugin.yaml +0 -14
- data/plugins/tree_view_swt/plugin.yaml +0 -14
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>fileTypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
<string>tmReleaseNotes</string>
|
|
8
|
+
</array>
|
|
9
|
+
<key>name</key>
|
|
10
|
+
<string>Release Notes</string>
|
|
11
|
+
<key>patterns</key>
|
|
12
|
+
<array>
|
|
13
|
+
<dict>
|
|
14
|
+
<key>captures</key>
|
|
15
|
+
<dict>
|
|
16
|
+
<key>1</key>
|
|
17
|
+
<dict>
|
|
18
|
+
<key>name</key>
|
|
19
|
+
<string>punctuation.definition.separator.release-notes</string>
|
|
20
|
+
</dict>
|
|
21
|
+
<key>2</key>
|
|
22
|
+
<dict>
|
|
23
|
+
<key>name</key>
|
|
24
|
+
<string>meta.toc-list.release-notes</string>
|
|
25
|
+
</dict>
|
|
26
|
+
<key>3</key>
|
|
27
|
+
<dict>
|
|
28
|
+
<key>name</key>
|
|
29
|
+
<string>punctuation.definition.separator.release-notes</string>
|
|
30
|
+
</dict>
|
|
31
|
+
</dict>
|
|
32
|
+
<key>match</key>
|
|
33
|
+
<string>^(\[)(?:[\d-]+: )?(REVISION (\d+|v[\d.b]+))(\])$\n</string>
|
|
34
|
+
<key>name</key>
|
|
35
|
+
<string>meta.separator.release-notes</string>
|
|
36
|
+
</dict>
|
|
37
|
+
<dict>
|
|
38
|
+
<key>begin</key>
|
|
39
|
+
<string>^([ \t]*)(?=\S)</string>
|
|
40
|
+
<key>contentName</key>
|
|
41
|
+
<string>meta.paragraph.release-notes</string>
|
|
42
|
+
<key>end</key>
|
|
43
|
+
<string>^(?!\1(?=\S))</string>
|
|
44
|
+
<key>patterns</key>
|
|
45
|
+
<array>
|
|
46
|
+
<dict>
|
|
47
|
+
<key>match</key>
|
|
48
|
+
<string>(https?|ftp|mailto):\S+?(?=[)>,.':;"]*(\s|$)|$)</string>
|
|
49
|
+
<key>name</key>
|
|
50
|
+
<string>markup.underline.link.release-notes</string>
|
|
51
|
+
</dict>
|
|
52
|
+
<dict>
|
|
53
|
+
<key>captures</key>
|
|
54
|
+
<dict>
|
|
55
|
+
<key>1</key>
|
|
56
|
+
<dict>
|
|
57
|
+
<key>name</key>
|
|
58
|
+
<string>keyword.other.release-notes</string>
|
|
59
|
+
</dict>
|
|
60
|
+
<key>2</key>
|
|
61
|
+
<dict>
|
|
62
|
+
<key>name</key>
|
|
63
|
+
<string>punctuation.definition.keyword.release-notes</string>
|
|
64
|
+
</dict>
|
|
65
|
+
<key>3</key>
|
|
66
|
+
<dict>
|
|
67
|
+
<key>name</key>
|
|
68
|
+
<string>punctuation.definition.keyword.release-notes</string>
|
|
69
|
+
</dict>
|
|
70
|
+
<key>4</key>
|
|
71
|
+
<dict>
|
|
72
|
+
<key>name</key>
|
|
73
|
+
<string>constant.other.bundle-name.release-notes</string>
|
|
74
|
+
</dict>
|
|
75
|
+
</dict>
|
|
76
|
+
<key>match</key>
|
|
77
|
+
<string>((\[)(?:NEW|FIXED|CHANGED|REMOVED|INFO)(\])) (?:(.+? bundle):)?</string>
|
|
78
|
+
</dict>
|
|
79
|
+
<dict>
|
|
80
|
+
<key>captures</key>
|
|
81
|
+
<dict>
|
|
82
|
+
<key>1</key>
|
|
83
|
+
<dict>
|
|
84
|
+
<key>name</key>
|
|
85
|
+
<string>storage.type.ticket.release-notes</string>
|
|
86
|
+
</dict>
|
|
87
|
+
<key>2</key>
|
|
88
|
+
<dict>
|
|
89
|
+
<key>name</key>
|
|
90
|
+
<string>constant.numeric.ticket.release-notes</string>
|
|
91
|
+
</dict>
|
|
92
|
+
</dict>
|
|
93
|
+
<key>match</key>
|
|
94
|
+
<string>([Tt]icket) ([0-9A-F]{8})\b</string>
|
|
95
|
+
<key>name</key>
|
|
96
|
+
<string>meta.ticket.release-notes</string>
|
|
97
|
+
</dict>
|
|
98
|
+
<dict>
|
|
99
|
+
<key>comment</key>
|
|
100
|
+
<string>I do not want spell checking for CamelCase words. Since this is generally when quoting various API’s, I have deliberately used A-Z and a-z (ASCII) -- Allan</string>
|
|
101
|
+
<key>match</key>
|
|
102
|
+
<string>\b[A-Z]*[a-z]+[A-Z]\w*\b</string>
|
|
103
|
+
<key>name</key>
|
|
104
|
+
<string>meta.word.camel-case.release-notes</string>
|
|
105
|
+
</dict>
|
|
106
|
+
<dict>
|
|
107
|
+
<key>captures</key>
|
|
108
|
+
<dict>
|
|
109
|
+
<key>1</key>
|
|
110
|
+
<dict>
|
|
111
|
+
<key>name</key>
|
|
112
|
+
<string>constant.other.committer-name.release-notes</string>
|
|
113
|
+
</dict>
|
|
114
|
+
</dict>
|
|
115
|
+
<key>match</key>
|
|
116
|
+
<string>\((G(erd Knops|a(vin Kistner|rrett J. Woodworth)|ra(nt Hollingworth|eme Rocher))|R(yan McCuaig|ich Barton|o(ss Harmes|ger Braunstein|b(ert Rainthorpe| (Rix|Bevan))))|M(i(cha(il Pishchagin|el Sheets)|tch Chapman|etek Bąk|k(e Mellor|ael Säker))|a(t(s Persson|t(hew Gilbert|eo Spinelli| Pelletier))|r(tin Ström|k Grimes)|x Williams))|B(ill Duenskie|ob Fleck|en(oit Gagnon|jamin Jackson| Perry)|arrett Clark|r(ian (Donovan|Lalor)|ett Terpstra|ad (Miller|Choate)))|H(enrik Nyh|adley Wickham)|S(t(ephen Skubik-Peplaski|éphane Payrard|anley Rost)|imon (Gregory|Strandgaard)|u(ne Foldager|dara Williams)|ebastian Gräßl|am DeVore)|Nathan Youngman|C(h(a(ndler McWilliams|rilaos Skiadas)|ris(topher Forsythe| (Thomas|Jenkins)))|iarán Walsh)|T(homas Aylott|o(rsten Becker|m Lazar|bias Luetke)|akaaki Kato|roy Mcilvena)|Ian (Joyner|White)|Ollivier Robert|D(om(inique Peretti|enico Carbotta)|uane Johnson|a(n(iel Harple| Kelley)|vid (Glasser|Bonnet|Hansson|Powers|Wikler))|rew Colthorp)|J(iun Wei Chia|o(shua Emmons|nathan (Ragan-Kelley|Chaffer)|e Maller|achim Mårtensson)|ustin French|eroen van der Ham|a(cob Rus|y Soffian|kub Nešetřil|m(is Buck|es (Edward Gray II|A. Baker))))|Paul(o Jorge Lopes de Moura| Bissex)|Eric Hsu|K(umar McMillan|evin Ballard)|F(ergus Bremner|abien POTENCIER|lorent Pillet|r(édéric Ballériaux|ank Brault))|Wil(son Miner|liam (D. Neumann|Prater))|A(n(thony Underwood|d(y Herbert|ers Thid|rew Henson))|dam Sanderson|urelio Marinho Jargas|parajita Fishman|l(e( Muñoz|xand(er John Ross|re Girard))|an Schussman|lan Odgaard)|mro Nasr))\)$</string>
|
|
117
|
+
</dict>
|
|
118
|
+
</array>
|
|
119
|
+
</dict>
|
|
120
|
+
</array>
|
|
121
|
+
<key>scopeName</key>
|
|
122
|
+
<string>text.plain.release-notes</string>
|
|
123
|
+
<key>uuid</key>
|
|
124
|
+
<string>8926CAFE-1CF3-4CF9-A056-4FF90F596E9A</string>
|
|
125
|
+
</dict>
|
|
126
|
+
</plist>
|
|
@@ -0,0 +1,490 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>fileTypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
<string>textile</string>
|
|
8
|
+
</array>
|
|
9
|
+
<key>firstLineMatch</key>
|
|
10
|
+
<string>textile</string>
|
|
11
|
+
<key>keyEquivalent</key>
|
|
12
|
+
<string>^~T</string>
|
|
13
|
+
<key>name</key>
|
|
14
|
+
<string>Textile</string>
|
|
15
|
+
<key>patterns</key>
|
|
16
|
+
<array>
|
|
17
|
+
<dict>
|
|
18
|
+
<key>begin</key>
|
|
19
|
+
<string>(^h[1-6]([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)</string>
|
|
20
|
+
<key>captures</key>
|
|
21
|
+
<dict>
|
|
22
|
+
<key>1</key>
|
|
23
|
+
<dict>
|
|
24
|
+
<key>name</key>
|
|
25
|
+
<string>entity.name.tag.heading.textile</string>
|
|
26
|
+
</dict>
|
|
27
|
+
<key>3</key>
|
|
28
|
+
<dict>
|
|
29
|
+
<key>name</key>
|
|
30
|
+
<string>entity.name.type.textile</string>
|
|
31
|
+
</dict>
|
|
32
|
+
<key>4</key>
|
|
33
|
+
<dict>
|
|
34
|
+
<key>name</key>
|
|
35
|
+
<string>entity.name.tag.heading.textile</string>
|
|
36
|
+
</dict>
|
|
37
|
+
</dict>
|
|
38
|
+
<key>end</key>
|
|
39
|
+
<string>^$</string>
|
|
40
|
+
<key>name</key>
|
|
41
|
+
<string>markup.heading.textile</string>
|
|
42
|
+
<key>patterns</key>
|
|
43
|
+
<array>
|
|
44
|
+
<dict>
|
|
45
|
+
<key>include</key>
|
|
46
|
+
<string>#inline</string>
|
|
47
|
+
</dict>
|
|
48
|
+
<dict>
|
|
49
|
+
<key>include</key>
|
|
50
|
+
<string>text.html.basic</string>
|
|
51
|
+
</dict>
|
|
52
|
+
</array>
|
|
53
|
+
</dict>
|
|
54
|
+
<dict>
|
|
55
|
+
<key>begin</key>
|
|
56
|
+
<string>(^bq([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)</string>
|
|
57
|
+
<key>captures</key>
|
|
58
|
+
<dict>
|
|
59
|
+
<key>1</key>
|
|
60
|
+
<dict>
|
|
61
|
+
<key>name</key>
|
|
62
|
+
<string>entity.name.tag.blockquote.textile</string>
|
|
63
|
+
</dict>
|
|
64
|
+
<key>3</key>
|
|
65
|
+
<dict>
|
|
66
|
+
<key>name</key>
|
|
67
|
+
<string>entity.name.type.textile</string>
|
|
68
|
+
</dict>
|
|
69
|
+
<key>4</key>
|
|
70
|
+
<dict>
|
|
71
|
+
<key>name</key>
|
|
72
|
+
<string>entity.name.tag.blockquote.textile</string>
|
|
73
|
+
</dict>
|
|
74
|
+
</dict>
|
|
75
|
+
<key>end</key>
|
|
76
|
+
<string>^$</string>
|
|
77
|
+
<key>name</key>
|
|
78
|
+
<string>markup.quote.textile</string>
|
|
79
|
+
<key>patterns</key>
|
|
80
|
+
<array>
|
|
81
|
+
<dict>
|
|
82
|
+
<key>include</key>
|
|
83
|
+
<string>#inline</string>
|
|
84
|
+
</dict>
|
|
85
|
+
<dict>
|
|
86
|
+
<key>include</key>
|
|
87
|
+
<string>text.html.basic</string>
|
|
88
|
+
</dict>
|
|
89
|
+
</array>
|
|
90
|
+
</dict>
|
|
91
|
+
<dict>
|
|
92
|
+
<key>begin</key>
|
|
93
|
+
<string>(^fn[0-9]+([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)</string>
|
|
94
|
+
<key>captures</key>
|
|
95
|
+
<dict>
|
|
96
|
+
<key>1</key>
|
|
97
|
+
<dict>
|
|
98
|
+
<key>name</key>
|
|
99
|
+
<string>entity.name.tag.footnote.textile</string>
|
|
100
|
+
</dict>
|
|
101
|
+
<key>3</key>
|
|
102
|
+
<dict>
|
|
103
|
+
<key>name</key>
|
|
104
|
+
<string>entity.name.type.textile</string>
|
|
105
|
+
</dict>
|
|
106
|
+
<key>4</key>
|
|
107
|
+
<dict>
|
|
108
|
+
<key>name</key>
|
|
109
|
+
<string>entity.name.tag.footnote.textile</string>
|
|
110
|
+
</dict>
|
|
111
|
+
</dict>
|
|
112
|
+
<key>end</key>
|
|
113
|
+
<string>^$</string>
|
|
114
|
+
<key>name</key>
|
|
115
|
+
<string>markup.other.footnote.textile</string>
|
|
116
|
+
<key>patterns</key>
|
|
117
|
+
<array>
|
|
118
|
+
<dict>
|
|
119
|
+
<key>include</key>
|
|
120
|
+
<string>#inline</string>
|
|
121
|
+
</dict>
|
|
122
|
+
<dict>
|
|
123
|
+
<key>include</key>
|
|
124
|
+
<string>text.html.basic</string>
|
|
125
|
+
</dict>
|
|
126
|
+
</array>
|
|
127
|
+
</dict>
|
|
128
|
+
<dict>
|
|
129
|
+
<key>begin</key>
|
|
130
|
+
<string>(^table([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)</string>
|
|
131
|
+
<key>captures</key>
|
|
132
|
+
<dict>
|
|
133
|
+
<key>1</key>
|
|
134
|
+
<dict>
|
|
135
|
+
<key>name</key>
|
|
136
|
+
<string>entity.name.tag.footnote.textile</string>
|
|
137
|
+
</dict>
|
|
138
|
+
<key>3</key>
|
|
139
|
+
<dict>
|
|
140
|
+
<key>name</key>
|
|
141
|
+
<string>entity.name.type.textile</string>
|
|
142
|
+
</dict>
|
|
143
|
+
<key>4</key>
|
|
144
|
+
<dict>
|
|
145
|
+
<key>name</key>
|
|
146
|
+
<string>entity.name.tag.footnote.textile</string>
|
|
147
|
+
</dict>
|
|
148
|
+
</dict>
|
|
149
|
+
<key>end</key>
|
|
150
|
+
<string>^$</string>
|
|
151
|
+
<key>name</key>
|
|
152
|
+
<string>markup.other.table.textile</string>
|
|
153
|
+
<key>patterns</key>
|
|
154
|
+
<array>
|
|
155
|
+
<dict>
|
|
156
|
+
<key>include</key>
|
|
157
|
+
<string>#inline</string>
|
|
158
|
+
</dict>
|
|
159
|
+
<dict>
|
|
160
|
+
<key>include</key>
|
|
161
|
+
<string>text.html.basic</string>
|
|
162
|
+
</dict>
|
|
163
|
+
</array>
|
|
164
|
+
</dict>
|
|
165
|
+
<dict>
|
|
166
|
+
<key>begin</key>
|
|
167
|
+
<string>^(?=\S)</string>
|
|
168
|
+
<key>end</key>
|
|
169
|
+
<string>^$</string>
|
|
170
|
+
<key>name</key>
|
|
171
|
+
<string>meta.paragraph.textile</string>
|
|
172
|
+
<key>patterns</key>
|
|
173
|
+
<array>
|
|
174
|
+
<dict>
|
|
175
|
+
<key>captures</key>
|
|
176
|
+
<dict>
|
|
177
|
+
<key>1</key>
|
|
178
|
+
<dict>
|
|
179
|
+
<key>name</key>
|
|
180
|
+
<string>entity.name.tag.paragraph.textile</string>
|
|
181
|
+
</dict>
|
|
182
|
+
<key>3</key>
|
|
183
|
+
<dict>
|
|
184
|
+
<key>name</key>
|
|
185
|
+
<string>entity.name.type.textile</string>
|
|
186
|
+
</dict>
|
|
187
|
+
<key>4</key>
|
|
188
|
+
<dict>
|
|
189
|
+
<key>name</key>
|
|
190
|
+
<string>entity.name.tag.paragraph.textile</string>
|
|
191
|
+
</dict>
|
|
192
|
+
</dict>
|
|
193
|
+
<key>match</key>
|
|
194
|
+
<string>(^p([<>=()]+)?)(\([^)]*\)|{[^}]*})*(\.)</string>
|
|
195
|
+
<key>name</key>
|
|
196
|
+
<string>entity.name.section.paragraph.textile</string>
|
|
197
|
+
</dict>
|
|
198
|
+
<dict>
|
|
199
|
+
<key>include</key>
|
|
200
|
+
<string>#inline</string>
|
|
201
|
+
</dict>
|
|
202
|
+
<dict>
|
|
203
|
+
<key>include</key>
|
|
204
|
+
<string>text.html.basic</string>
|
|
205
|
+
</dict>
|
|
206
|
+
</array>
|
|
207
|
+
</dict>
|
|
208
|
+
<dict>
|
|
209
|
+
<key>comment</key>
|
|
210
|
+
<string>Since html is valid in Textile include the html patterns</string>
|
|
211
|
+
<key>include</key>
|
|
212
|
+
<string>text.html.basic</string>
|
|
213
|
+
</dict>
|
|
214
|
+
</array>
|
|
215
|
+
<key>repository</key>
|
|
216
|
+
<dict>
|
|
217
|
+
<key>inline</key>
|
|
218
|
+
<dict>
|
|
219
|
+
<key>patterns</key>
|
|
220
|
+
<array>
|
|
221
|
+
<dict>
|
|
222
|
+
<key>comment</key>
|
|
223
|
+
<string>& is handled automagically by textile, so we match it to avoid text.html.basic from flagging it</string>
|
|
224
|
+
<key>match</key>
|
|
225
|
+
<string>&(?![A-Za-z0-9]+;)</string>
|
|
226
|
+
<key>name</key>
|
|
227
|
+
<string>text.html.textile</string>
|
|
228
|
+
</dict>
|
|
229
|
+
<dict>
|
|
230
|
+
<key>captures</key>
|
|
231
|
+
<dict>
|
|
232
|
+
<key>1</key>
|
|
233
|
+
<dict>
|
|
234
|
+
<key>name</key>
|
|
235
|
+
<string>entity.name.type.textile</string>
|
|
236
|
+
</dict>
|
|
237
|
+
</dict>
|
|
238
|
+
<key>match</key>
|
|
239
|
+
<string>^\*+(\([^)]*\)|{[^}]*})*(\s+|$)</string>
|
|
240
|
+
<key>name</key>
|
|
241
|
+
<string>markup.list.unnumbered.textile</string>
|
|
242
|
+
</dict>
|
|
243
|
+
<dict>
|
|
244
|
+
<key>captures</key>
|
|
245
|
+
<dict>
|
|
246
|
+
<key>1</key>
|
|
247
|
+
<dict>
|
|
248
|
+
<key>name</key>
|
|
249
|
+
<string>entity.name.type.textile</string>
|
|
250
|
+
</dict>
|
|
251
|
+
</dict>
|
|
252
|
+
<key>match</key>
|
|
253
|
+
<string>^#+(\([^)]*\)|{[^}]*})*\s+</string>
|
|
254
|
+
<key>name</key>
|
|
255
|
+
<string>markup.list.numbered.textile</string>
|
|
256
|
+
</dict>
|
|
257
|
+
<dict>
|
|
258
|
+
<key>captures</key>
|
|
259
|
+
<dict>
|
|
260
|
+
<key>1</key>
|
|
261
|
+
<dict>
|
|
262
|
+
<key>name</key>
|
|
263
|
+
<string>string.other.link.title.textile</string>
|
|
264
|
+
</dict>
|
|
265
|
+
<key>2</key>
|
|
266
|
+
<dict>
|
|
267
|
+
<key>name</key>
|
|
268
|
+
<string>string.other.link.description.title.textile</string>
|
|
269
|
+
</dict>
|
|
270
|
+
<key>3</key>
|
|
271
|
+
<dict>
|
|
272
|
+
<key>name</key>
|
|
273
|
+
<string>constant.other.reference.link.textile</string>
|
|
274
|
+
</dict>
|
|
275
|
+
</dict>
|
|
276
|
+
<key>match</key>
|
|
277
|
+
<string>(?x)
|
|
278
|
+
" # Start name, etc
|
|
279
|
+
(?: # Attributes
|
|
280
|
+
# I swear, this is how the language is defined,
|
|
281
|
+
# couldnt make it up if I tried.
|
|
282
|
+
(?:\([^)]+\))?(?:\{[^}]+\})?(?:\[[^\]]+\])?
|
|
283
|
+
# Class, Style, Lang
|
|
284
|
+
| (?:\{[^}]+\})?(?:\[[^\]]+\])?(?:\([^)]+\))?
|
|
285
|
+
# Style, Lang, Class
|
|
286
|
+
| (?:\[[^\]]+\])?(?:\{[^}]+\})?(?:\([^)]+\))?
|
|
287
|
+
# Lang, Style, Class
|
|
288
|
+
)?
|
|
289
|
+
([^"]+?) # Link name
|
|
290
|
+
\s? # Optional whitespace
|
|
291
|
+
(?:\(([^)]+?)\))?
|
|
292
|
+
": # End name
|
|
293
|
+
(\w[-\w_]*) # Linkref
|
|
294
|
+
(?=[^\w\/;]*?(<|\s|$)) # Catch closing punctuation
|
|
295
|
+
# and end of meta.link
|
|
296
|
+
</string>
|
|
297
|
+
<key>name</key>
|
|
298
|
+
<string>meta.link.reference.textile</string>
|
|
299
|
+
</dict>
|
|
300
|
+
<dict>
|
|
301
|
+
<key>captures</key>
|
|
302
|
+
<dict>
|
|
303
|
+
<key>1</key>
|
|
304
|
+
<dict>
|
|
305
|
+
<key>name</key>
|
|
306
|
+
<string>string.other.link.title.textile</string>
|
|
307
|
+
</dict>
|
|
308
|
+
<key>2</key>
|
|
309
|
+
<dict>
|
|
310
|
+
<key>name</key>
|
|
311
|
+
<string>string.other.link.description.title.textile</string>
|
|
312
|
+
</dict>
|
|
313
|
+
<key>3</key>
|
|
314
|
+
<dict>
|
|
315
|
+
<key>name</key>
|
|
316
|
+
<string>markup.underline.link.textile</string>
|
|
317
|
+
</dict>
|
|
318
|
+
</dict>
|
|
319
|
+
<key>match</key>
|
|
320
|
+
<string>(?x)
|
|
321
|
+
" # Start name, etc
|
|
322
|
+
(?: # Attributes
|
|
323
|
+
# I swear, this is how the language is defined,
|
|
324
|
+
# couldnt make it up if I tried.
|
|
325
|
+
(?:\([^)]+\))?(?:\{[^}]+\})?(?:\[[^\]]+\])?
|
|
326
|
+
# Class, Style, Lang
|
|
327
|
+
| (?:\{[^}]+\})?(?:\[[^\]]+\])?(?:\([^)]+\))?
|
|
328
|
+
# Style, Lang, Class
|
|
329
|
+
| (?:\[[^\]]+\])?(?:\{[^}]+\})?(?:\([^)]+\))?
|
|
330
|
+
# Lang, Style, Class
|
|
331
|
+
)?
|
|
332
|
+
([^"]+?) # Link name
|
|
333
|
+
\s? # Optional whitespace
|
|
334
|
+
(?:\(([^)]+?)\))?
|
|
335
|
+
": # End Name
|
|
336
|
+
(\S*?(?:\w|\/|;)) # URL
|
|
337
|
+
(?=[^\w\/;]*?(<|\s|$)) # Catch closing punctuation
|
|
338
|
+
# and end of meta.link
|
|
339
|
+
</string>
|
|
340
|
+
<key>name</key>
|
|
341
|
+
<string>meta.link.inline.textile</string>
|
|
342
|
+
</dict>
|
|
343
|
+
<dict>
|
|
344
|
+
<key>captures</key>
|
|
345
|
+
<dict>
|
|
346
|
+
<key>2</key>
|
|
347
|
+
<dict>
|
|
348
|
+
<key>name</key>
|
|
349
|
+
<string>markup.underline.link.image.textile</string>
|
|
350
|
+
</dict>
|
|
351
|
+
<key>3</key>
|
|
352
|
+
<dict>
|
|
353
|
+
<key>name</key>
|
|
354
|
+
<string>string.other.link.description.textile</string>
|
|
355
|
+
</dict>
|
|
356
|
+
<key>4</key>
|
|
357
|
+
<dict>
|
|
358
|
+
<key>name</key>
|
|
359
|
+
<string>markup.underline.link.textile</string>
|
|
360
|
+
</dict>
|
|
361
|
+
</dict>
|
|
362
|
+
<key>match</key>
|
|
363
|
+
<string>(?x)
|
|
364
|
+
\! # Open image
|
|
365
|
+
(\<|\=|\>)? # Optional alignment
|
|
366
|
+
(?: # Attributes
|
|
367
|
+
# I swear, this is how the language is defined,
|
|
368
|
+
# couldnt make it up if I tried.
|
|
369
|
+
(?:\([^)]+\))?(?:\{[^}]+\})?(?:\[[^\]]+\])?
|
|
370
|
+
# Class, Style, Lang
|
|
371
|
+
| (?:\{[^}]+\})?(?:\[[^\]]+\])?(?:\([^)]+\))?
|
|
372
|
+
# Style, Lang, Class
|
|
373
|
+
| (?:\[[^\]]+\])?(?:\{[^}]+\})?(?:\([^)]+\))?
|
|
374
|
+
# Lang, Style, Class
|
|
375
|
+
)?
|
|
376
|
+
(?:\.[ ])? # Optional
|
|
377
|
+
([^\s(!]+?) # Image URL
|
|
378
|
+
\s? # Optional space
|
|
379
|
+
(?:\(((?:[^\(\)]|\([^\)]+\))+?)\))? # Optional title
|
|
380
|
+
\! # Close image
|
|
381
|
+
(?:
|
|
382
|
+
:
|
|
383
|
+
(\S*?(?:\w|\/|;)) # URL
|
|
384
|
+
(?=[^\w\/;]*?(<|\s|$)) # Catch closing punctuation
|
|
385
|
+
)?
|
|
386
|
+
</string>
|
|
387
|
+
<key>name</key>
|
|
388
|
+
<string>meta.image.inline.textile</string>
|
|
389
|
+
</dict>
|
|
390
|
+
<dict>
|
|
391
|
+
<key>captures</key>
|
|
392
|
+
<dict>
|
|
393
|
+
<key>1</key>
|
|
394
|
+
<dict>
|
|
395
|
+
<key>name</key>
|
|
396
|
+
<string>entity.name.type.textile</string>
|
|
397
|
+
</dict>
|
|
398
|
+
</dict>
|
|
399
|
+
<key>match</key>
|
|
400
|
+
<string>\|(\([^)]*\)|{[^}]*})*(\\\||.)+\|</string>
|
|
401
|
+
<key>name</key>
|
|
402
|
+
<string>markup.other.table.cell.textile</string>
|
|
403
|
+
</dict>
|
|
404
|
+
<dict>
|
|
405
|
+
<key>captures</key>
|
|
406
|
+
<dict>
|
|
407
|
+
<key>3</key>
|
|
408
|
+
<dict>
|
|
409
|
+
<key>name</key>
|
|
410
|
+
<string>entity.name.type.textile</string>
|
|
411
|
+
</dict>
|
|
412
|
+
</dict>
|
|
413
|
+
<key>match</key>
|
|
414
|
+
<string>\B(\*\*?)((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)\1\B</string>
|
|
415
|
+
<key>name</key>
|
|
416
|
+
<string>markup.bold.textile</string>
|
|
417
|
+
</dict>
|
|
418
|
+
<dict>
|
|
419
|
+
<key>captures</key>
|
|
420
|
+
<dict>
|
|
421
|
+
<key>2</key>
|
|
422
|
+
<dict>
|
|
423
|
+
<key>name</key>
|
|
424
|
+
<string>entity.name.type.textile</string>
|
|
425
|
+
</dict>
|
|
426
|
+
</dict>
|
|
427
|
+
<key>match</key>
|
|
428
|
+
<string>\B-((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)-\B</string>
|
|
429
|
+
<key>name</key>
|
|
430
|
+
<string>markup.deleted.textile</string>
|
|
431
|
+
</dict>
|
|
432
|
+
<dict>
|
|
433
|
+
<key>captures</key>
|
|
434
|
+
<dict>
|
|
435
|
+
<key>2</key>
|
|
436
|
+
<dict>
|
|
437
|
+
<key>name</key>
|
|
438
|
+
<string>entity.name.type.textile</string>
|
|
439
|
+
</dict>
|
|
440
|
+
</dict>
|
|
441
|
+
<key>match</key>
|
|
442
|
+
<string>\B\+((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)\+\B</string>
|
|
443
|
+
<key>name</key>
|
|
444
|
+
<string>markup.inserted.textile</string>
|
|
445
|
+
</dict>
|
|
446
|
+
<dict>
|
|
447
|
+
<key>captures</key>
|
|
448
|
+
<dict>
|
|
449
|
+
<key>2</key>
|
|
450
|
+
<dict>
|
|
451
|
+
<key>name</key>
|
|
452
|
+
<string>entity.name.type.textile</string>
|
|
453
|
+
</dict>
|
|
454
|
+
</dict>
|
|
455
|
+
<key>match</key>
|
|
456
|
+
<string>(?:\b|\s)_((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)_(?:\b|\s)</string>
|
|
457
|
+
<key>name</key>
|
|
458
|
+
<string>markup.italic.textile</string>
|
|
459
|
+
</dict>
|
|
460
|
+
<dict>
|
|
461
|
+
<key>captures</key>
|
|
462
|
+
<dict>
|
|
463
|
+
<key>3</key>
|
|
464
|
+
<dict>
|
|
465
|
+
<key>name</key>
|
|
466
|
+
<string>entity.name.type.textile</string>
|
|
467
|
+
</dict>
|
|
468
|
+
</dict>
|
|
469
|
+
<key>match</key>
|
|
470
|
+
<string>\B([@\^~%]|\?\?)((\([^)]*\)|{[^}]*}|\[[^]]+\]){0,3})(\S.*?\S|\S)\1</string>
|
|
471
|
+
<key>name</key>
|
|
472
|
+
<string>markup.italic.phrasemodifiers.textile</string>
|
|
473
|
+
</dict>
|
|
474
|
+
<dict>
|
|
475
|
+
<key>comment</key>
|
|
476
|
+
<string>Footnotes</string>
|
|
477
|
+
<key>match</key>
|
|
478
|
+
<string>(?<!w)\[[0-9+]\]</string>
|
|
479
|
+
<key>name</key>
|
|
480
|
+
<string>entity.name.tag.textile</string>
|
|
481
|
+
</dict>
|
|
482
|
+
</array>
|
|
483
|
+
</dict>
|
|
484
|
+
</dict>
|
|
485
|
+
<key>scopeName</key>
|
|
486
|
+
<string>text.html.textile</string>
|
|
487
|
+
<key>uuid</key>
|
|
488
|
+
<string>68F0B1A5-3274-4E85-8B3A-A481C5F5B194</string>
|
|
489
|
+
</dict>
|
|
490
|
+
</plist>
|