Revert "Filter single semicolons from tab completions"

This reverts commit dcb8e18f0e.
This commit is contained in:
Eugene Yokota 2019-12-12 01:15:21 -05:00
parent 5419c3a0db
commit 8521be5ac8
1 changed files with 1 additions and 4 deletions

View File

@ -89,10 +89,7 @@ object JLineCompletion {
(insert.toSeq, display.toSeq.sorted)
}
def appendNonEmpty(set: Set[String], add: String) = {
val trimmed = add.trim
if (trimmed.isEmpty || trimmed == ";") set else set + add
}
def appendNonEmpty(set: Set[String], add: String) = if (add.trim.isEmpty) set else set + add
def customCompletor(
f: (String, Int) => (Seq[String], Seq[String])