2023-08-21 19:16:27 +02:00
|
|
|
<!--
|
2024-01-25 20:38:51 +01:00
|
|
|
~ Copyright 2023-2024 FalsePattern
|
2023-08-21 19:16:27 +02:00
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2023-08-19 21:49:45 +02:00
|
|
|
<idea-plugin package="com.falsepattern.zigbrains.project">
|
2024-03-02 20:23:20 +01:00
|
|
|
<resource-bundle>zigbrains.project.Bundle</resource-bundle>
|
2023-08-19 21:49:45 +02:00
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
2024-03-03 21:08:37 +01:00
|
|
|
<configurationType implementation="com.falsepattern.zigbrains.project.execution.run.ConfigTypeRun"/>
|
|
|
|
<runConfigurationProducer implementation="com.falsepattern.zigbrains.project.execution.run.ConfigProducerRun"/>
|
2024-03-03 22:07:53 +01:00
|
|
|
<runLineMarkerContributor language="Zig"
|
|
|
|
implementationClass="com.falsepattern.zigbrains.project.execution.run.ZigLineMarkerRun"/>
|
2023-08-19 21:49:45 +02:00
|
|
|
|
|
|
|
<directoryProjectGenerator implementation="com.falsepattern.zigbrains.project.platform.ZigDirectoryProjectGenerator"/>
|
2024-02-28 22:59:51 +01:00
|
|
|
<newProjectWizard.languageGenerator implementation="com.falsepattern.zigbrains.project.ide.newproject.ZigNewProjectWizard"/>
|
2023-08-19 21:49:45 +02:00
|
|
|
|
|
|
|
<moduleBuilder builderClass="com.falsepattern.zigbrains.project.ide.util.projectwizard.ZigModuleBuilder"/>
|
|
|
|
<projectConfigurable parentId="language"
|
|
|
|
instance="com.falsepattern.zigbrains.project.ide.project.ZigProjectConfigurable"
|
|
|
|
id="com.falsepattern.zigbrains.project.ide.project.ZigProjectConfigurable"
|
|
|
|
displayName="Zig"/>
|
2023-08-21 18:52:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
<programRunner implementation="com.falsepattern.zigbrains.project.runconfig.ZigRegularRunner"
|
|
|
|
id="ZigDebugRunner"/>
|
2024-03-02 20:23:20 +01:00
|
|
|
|
|
|
|
<notificationGroup displayType="BALLOON"
|
|
|
|
bundle="zigbrains.project.Bundle"
|
|
|
|
key="notif-zig-project"
|
|
|
|
id="ZigBrains.Project"/>
|
2023-08-19 21:49:45 +02:00
|
|
|
</extensions>
|
|
|
|
|
|
|
|
<extensions defaultExtensionNs="com.falsepattern.zigbrains">
|
|
|
|
<toolchainFlavour implementation="com.falsepattern.zigbrains.project.toolchain.flavours.ZigSystemPathToolchainFlavour"/>
|
|
|
|
<toolchainProvider implementation="com.falsepattern.zigbrains.project.toolchain.LocalZigToolchainProvider"/>
|
2024-02-29 12:16:20 +01:00
|
|
|
<zlsConfigProvider implementation="com.falsepattern.zigbrains.project.toolchain.ToolchainZLSConfigProvider"/>
|
2023-08-19 21:49:45 +02:00
|
|
|
</extensions>
|
|
|
|
|
|
|
|
<actions>
|
|
|
|
<action class="com.falsepattern.zigbrains.project.ide.actions.ZigNewFileAction"
|
|
|
|
text="New Zig File"
|
|
|
|
id="NewZigFile">
|
|
|
|
<add-to-group group-id="NewGroup" anchor="before" relative-to-action="NewFile"/>
|
|
|
|
</action>
|
|
|
|
</actions>
|
|
|
|
|
|
|
|
</idea-plugin>
|