2023-08-21 19:16:27 +02:00
|
|
|
<!--
|
|
|
|
~ Copyright 2023 FalsePattern
|
|
|
|
~
|
|
|
|
~ 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">
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
|
|
<configurationType implementation="com.falsepattern.zigbrains.project.execution.configurations.ZigRunExecutionConfigurationType"/>
|
|
|
|
<runConfigurationProducer implementation="com.falsepattern.zigbrains.project.execution.actions.ZigRunExecutionConfigurationProducer"/>
|
|
|
|
|
|
|
|
<directoryProjectGenerator implementation="com.falsepattern.zigbrains.project.platform.ZigDirectoryProjectGenerator"/>
|
|
|
|
<newProjectWizard.language implementation="com.falsepattern.zigbrains.project.ide.newproject.ZigNewProjectWizard"/>
|
|
|
|
|
|
|
|
<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
|
|
|
|
|
|
|
<runLineMarkerContributor language="Zig"
|
|
|
|
implementationClass="com.falsepattern.zigbrains.project.execution.linemarker.ZigAggregateLineMarkerContributor"/>
|
|
|
|
|
|
|
|
<programRunner implementation="com.falsepattern.zigbrains.project.runconfig.ZigRegularRunner"
|
|
|
|
id="ZigDebugRunner"/>
|
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"/>
|
|
|
|
</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>
|