Skip to content

Commit

Permalink
fix(go): disable version for temp
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Aug 1, 2023
1 parent 77232a2 commit cd1a46c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Expand Up @@ -64,7 +64,7 @@ val ideaPlugins =
"com.intellij.java",
"org.jetbrains.plugins.gradle",
"org.jetbrains.kotlin",
"JavaScript",
"JavaScript"
)

val baseIDE = prop("baseIDE")
Expand Down
Expand Up @@ -7,7 +7,7 @@ import com.intellij.openapi.project.Project

class GoVersionChatContextProvider : ChatContextProvider {
override fun isApplicable(project: Project, creationContext: ChatCreationContext): Boolean {
return true
return false
}

override suspend fun collect(project: Project, creationContext: ChatCreationContext): List<ChatContextItem> {
Expand Down

0 comments on commit cd1a46c

Please sign in to comment.