We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c0545 commit 7b1de0cCopy full SHA for 7b1de0c
server/src/main/kotlin/org/javacs/kt/completion/Completions.kt
@@ -45,10 +45,10 @@ import org.jetbrains.kotlin.types.checker.KotlinTypeChecker
45
import java.util.concurrent.TimeUnit
46
47
// The maxmimum number of completion items
48
-private const val MAX_COMPLETION_ITEMS = 50
+private const val MAX_COMPLETION_ITEMS = 75
49
50
// The minimum length after which completion lists are sorted
51
-private const val MIN_SORT_LENGTH = 4
+private const val MIN_SORT_LENGTH = 3
52
53
/** Finds completions at the specified position. */
54
fun completions(file: CompiledFile, cursor: Int, config: CompletionConfiguration): CompletionList {
0 commit comments