-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from intuit/221
Support for IntelliJ 2023.1
- Loading branch information
Showing
9 changed files
with
20 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
src/main/kotlin/com/intuit/ddb/conf/DockDockBuildProjectSettings.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/kotlin/name/kropp/intellij/makefile/MakefileDocumentationProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package name.kropp.intellij.makefile | ||
|
||
import com.intellij.lang.documentation.DocumentationProviderEx | ||
import com.intellij.lang.documentation.AbstractDocumentationProvider | ||
import com.intellij.psi.PsiElement | ||
import name.kropp.intellij.makefile.psi.MakefileTarget | ||
|
||
class MakefileDocumentationProvider : DocumentationProviderEx() { | ||
class MakefileDocumentationProvider : AbstractDocumentationProvider() { | ||
override fun getQuickNavigateInfo(element: PsiElement, originalElement: PsiElement?) = (element as? MakefileTarget)?.docComment | ||
override fun generateDoc(element: PsiElement?, originalElement: PsiElement?) = (element as? MakefileTarget)?.docComment | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
<idea-plugin> | ||
<id>com.intuit.intellij.makefile</id> | ||
<name>DockDockBuild</name> | ||
<version>2.2.0</version> | ||
<version>2.2.1</version> | ||
<vendor email="[email protected]" url="https://www.intuit.com/">Intuit</vendor> | ||
|
||
<description>Support for running UNIX Makefiles on a Docker container</description> | ||
|
||
<change-notes><![CDATA[ | ||
<ul> | ||
<li>Update to Java 17 - mandatory for IntelliJ 2022.2+</li> | ||
<li>Support for IntelliJ 2022.2</li> | ||
<li>Support for IntelliJ 2023.1</li> | ||
</ul> | ||
]]></change-notes> | ||
|
||
<idea-version since-build="222"/> | ||
<idea-version since-build="231" until-build="232.*"/> | ||
|
||
<depends>com.intellij.modules.lang</depends> | ||
<depends>com.intellij.modules.platform</depends> | ||
|
@@ -32,7 +31,7 @@ | |
<colorSettingsPage implementation="name.kropp.intellij.makefile.MakefileColorSettingsPage"/> | ||
<completion.contributor language="Makefile" implementationClass="name.kropp.intellij.makefile.MakefileCompletionContributor"/> | ||
<configurationType implementation="com.intuit.ddb.conf.DockDockBuildRunConfigurationType"/> | ||
<projectService serviceImplementation="com.intuit.ddb.conf.DockDockBuildProjectSettings"/> | ||
<!-- <projectService serviceImplementation="com.intuit.ddb.conf.DockDockBuildProjectSettings"/>--> | ||
<projectConfigurable groupId="build.tools" groupWeight="110" id="reference.settingsdialog.project.make" | ||
instance="com.intuit.ddb.DockDockBuildConfigurable"/> | ||
<runLineMarkerContributor language="Makefile" implementationClass="name.kropp.intellij.makefile.MakefileTargetRunLineMarkerContributor"/> | ||
|