Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
olivernybroe committed Feb 21, 2024
1 parent c54840c commit e19ea9f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pluginRepositoryUrl = https://github.com/olivernybroe/Wing-Idea
pluginVersion = 0.1.5

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 232
pluginSinceBuild = 233
pluginUntilBuild = 233.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
Expand All @@ -16,6 +16,7 @@ platformVersion = 233-EAP-SNAPSHOT

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
# https://plugins.jetbrains.com/plugin/227-psiviewer/versions
platformPlugins =JavaScript, PsiViewer:233.2

# Gradle Releases -> https://github.com/gradle/gradle/releases
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ annotations = "24.0.1"
# plugins
kotlin = "1.9.10"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.15.0"
gradleIntelliJPlugin = "1.17.2"
qodana = "0.1.13"
kover = "0.7.4"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ private class WingLspServerDescriptor(project: Project) : ProjectWideLspServerDe
return super.getIcon(item) ?: WingIcons.FILE
}

override fun createLookupElement(parameters: CompletionParameters, item: CompletionItem): LookupElement? {
override fun createLookupElement(parameters: CompletionParameters, item: CompletionItem): LookupElement {
val lookupElement = super.createLookupElement(parameters, item) as LookupElementBuilder

val insertText = item.insertText
Expand Down

0 comments on commit e19ea9f

Please sign in to comment.