Skip to content

Commit

Permalink
Fix #135 #132 #130
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypfau committed Nov 10, 2023
1 parent ed8b189 commit ce2cb10
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
org.gradle.jvmargs=-Xmx4096m
pluginGroup=org.ton
pluginVersion=2.0
pluginVersion=2.0.2
publishChannel=release
publishToken=token
enableBuildSearchableOptions=false
# Existent IDE versions can be found in the following repos:
# https://www.jetbrains.com/intellij-repository/releases/
# https://www.jetbrains.com/intellij-repository/snapshots/
ideaVersion=232-EAP-SNAPSHOT
ideaVersion=233-EAP-SNAPSHOT
# https://plugins.jetbrains.com/plugin/227-psiviewer/versions
psiViewerPluginVersion=232.2-SNAPSHOT
kotlin.stdlib.default.dependency=false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ class FuncAllPublicNamesIndex : StringStubIndexExtension<FuncNamedElement>() {

companion object {
val ALL_PUBLIC_NAMES: StubIndexKey<String, FuncNamedElement> =
StubIndexKey.createIndexKey<String, FuncNamedElement>("func.all.name")
StubIndexKey.createIndexKey("func.all.name")
}
}
1 change: 1 addition & 0 deletions src/main/resources/META-INF/func.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<completion.confidence language="func" order="last"
implementationClass="org.ton.intellij.func.ide.completion.FuncCompletionConfidence"/>

<stubIndex implementation="org.ton.intellij.func.stub.index.FuncAllPublicNamesIndex"/>
<stubElementTypeHolder class="org.ton.intellij.func.psi.FuncElementTypes" externalIdPrefix="func."/>
<lang.elementManipulator forClass="org.ton.intellij.func.psi.FuncIncludeDefinition"
implementationClass="org.ton.intellij.func.psi.impl.FuncIncludePathElementManipulator"/>
Expand Down

0 comments on commit ce2cb10

Please sign in to comment.