From fca41b5a98328864a75a2bc2b3e9ce1af204fe5e Mon Sep 17 00:00:00 2001 From: breandan Date: Thu, 3 Dec 2015 16:23:33 -0500 Subject: [PATCH] Share run configurations and inherit the project output path --- .idea/misc.xml | 4 ++- .idea/runConfigurations/editor_basics.xml | 9 +++++++ .idea/runConfigurations/facet_basics.xml | 9 +++++++ .idea/runConfigurations/framework.xml | 9 +++++++ .idea/runConfigurations/inspection.xml | 9 +++++++ .idea/runConfigurations/intellij_sdk_docs.xml | 26 +++++++++++++++++++ .idea/runConfigurations/module.xml | 9 +++++++ .idea/runConfigurations/plugin_sample.xml | 9 +++++++ .idea/runConfigurations/project_model.xml | 9 +++++++ .idea/runConfigurations/project_view_pane.xml | 9 +++++++ .idea/runConfigurations/project_wizard.xml | 9 +++++++ .idea/runConfigurations/register_actions.xml | 9 +++++++ .idea/runConfigurations/runIdea.xml | 20 ++++++++++++++ .idea/runConfigurations/run_configuration.xml | 9 +++++++ .../simple_language_plugin.xml | 1 + .../simple_language_plugin_tests.xml | 4 +-- .idea/runConfigurations/tool_window.xml | 9 +++++++ .../tree_structure_provider.xml | 9 +++++++ code_samples/editor_basics/editor_basics.iml | 4 +-- code_samples/facet_basics/facet_basics.iml | 4 +-- code_samples/framework/framework.iml | 2 +- .../gradle_plugin_demo/gradle_plugin_demo.iml | 4 +-- code_samples/inspection/inspection.iml | 3 +-- .../inspection/DemoCodeInspection.java | 0 .../DemoInspectionToolProvider.java | 0 .../inspection/DemoInspectionVisitor.java | 0 .../inspectionDescriptions/DemoCode.html | 0 code_samples/module/module.iml | 2 +- code_samples/plugin_sample/plugin_sample.iml | 4 +-- code_samples/project_model/project_model.iml | 2 +- .../project_view_pane/project_view_pane.iml | 2 +- .../project_wizard/project_wizard.iml | 2 +- .../register_actions/register_actions.iml | 2 +- .../run_configuration/run_configuration.iml | 2 +- .../simple_language_plugin.iml | 4 +-- code_samples/tool_window/tool_window.iml | 3 +-- .../tree_structure_provider.iml | 4 +-- 37 files changed, 189 insertions(+), 27 deletions(-) create mode 100644 .idea/runConfigurations/editor_basics.xml create mode 100644 .idea/runConfigurations/facet_basics.xml create mode 100644 .idea/runConfigurations/framework.xml create mode 100644 .idea/runConfigurations/inspection.xml create mode 100644 .idea/runConfigurations/intellij_sdk_docs.xml create mode 100644 .idea/runConfigurations/module.xml create mode 100644 .idea/runConfigurations/plugin_sample.xml create mode 100644 .idea/runConfigurations/project_model.xml create mode 100644 .idea/runConfigurations/project_view_pane.xml create mode 100644 .idea/runConfigurations/project_wizard.xml create mode 100644 .idea/runConfigurations/register_actions.xml create mode 100644 .idea/runConfigurations/runIdea.xml create mode 100644 .idea/runConfigurations/run_configuration.xml create mode 100644 .idea/runConfigurations/tool_window.xml create mode 100644 .idea/runConfigurations/tree_structure_provider.xml rename code_samples/inspection/{scr => src}/com/intellij/tutorials/inspection/DemoCodeInspection.java (100%) rename code_samples/inspection/{scr => src}/com/intellij/tutorials/inspection/DemoInspectionToolProvider.java (100%) rename code_samples/inspection/{scr => src}/com/intellij/tutorials/inspection/DemoInspectionVisitor.java (100%) rename code_samples/inspection/{scr => src}/inspectionDescriptions/DemoCode.html (100%) diff --git a/.idea/misc.xml b/.idea/misc.xml index 46567025c..1d921d38b 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,7 @@ - + + + \ No newline at end of file diff --git a/.idea/runConfigurations/editor_basics.xml b/.idea/runConfigurations/editor_basics.xml new file mode 100644 index 000000000..477e1437d --- /dev/null +++ b/.idea/runConfigurations/editor_basics.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/facet_basics.xml b/.idea/runConfigurations/facet_basics.xml new file mode 100644 index 000000000..65fbb04df --- /dev/null +++ b/.idea/runConfigurations/facet_basics.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/framework.xml b/.idea/runConfigurations/framework.xml new file mode 100644 index 000000000..0dd24f673 --- /dev/null +++ b/.idea/runConfigurations/framework.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/inspection.xml b/.idea/runConfigurations/inspection.xml new file mode 100644 index 000000000..ae351b187 --- /dev/null +++ b/.idea/runConfigurations/inspection.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/intellij_sdk_docs.xml b/.idea/runConfigurations/intellij_sdk_docs.xml new file mode 100644 index 000000000..420425b14 --- /dev/null +++ b/.idea/runConfigurations/intellij_sdk_docs.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/module.xml b/.idea/runConfigurations/module.xml new file mode 100644 index 000000000..613b013b9 --- /dev/null +++ b/.idea/runConfigurations/module.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/plugin_sample.xml b/.idea/runConfigurations/plugin_sample.xml new file mode 100644 index 000000000..0932be75e --- /dev/null +++ b/.idea/runConfigurations/plugin_sample.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/project_model.xml b/.idea/runConfigurations/project_model.xml new file mode 100644 index 000000000..faac073d0 --- /dev/null +++ b/.idea/runConfigurations/project_model.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/project_view_pane.xml b/.idea/runConfigurations/project_view_pane.xml new file mode 100644 index 000000000..97c6011ec --- /dev/null +++ b/.idea/runConfigurations/project_view_pane.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/project_wizard.xml b/.idea/runConfigurations/project_wizard.xml new file mode 100644 index 000000000..fe5ca9ed4 --- /dev/null +++ b/.idea/runConfigurations/project_wizard.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/register_actions.xml b/.idea/runConfigurations/register_actions.xml new file mode 100644 index 000000000..19342c2ad --- /dev/null +++ b/.idea/runConfigurations/register_actions.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/runIdea.xml b/.idea/runConfigurations/runIdea.xml new file mode 100644 index 000000000..1baa848a9 --- /dev/null +++ b/.idea/runConfigurations/runIdea.xml @@ -0,0 +1,20 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/run_configuration.xml b/.idea/runConfigurations/run_configuration.xml new file mode 100644 index 000000000..1e157d78d --- /dev/null +++ b/.idea/runConfigurations/run_configuration.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/simple_language_plugin.xml b/.idea/runConfigurations/simple_language_plugin.xml index c72beef52..adb27b133 100644 --- a/.idea/runConfigurations/simple_language_plugin.xml +++ b/.idea/runConfigurations/simple_language_plugin.xml @@ -3,6 +3,7 @@ \ No newline at end of file diff --git a/.idea/runConfigurations/simple_language_plugin_tests.xml b/.idea/runConfigurations/simple_language_plugin_tests.xml index 1f3b270fd..1f38ddc12 100644 --- a/.idea/runConfigurations/simple_language_plugin_tests.xml +++ b/.idea/runConfigurations/simple_language_plugin_tests.xml @@ -3,14 +3,14 @@