Completions hang indefinitely in SBT 1.4.9, possibly in other versions as well. It seems that the root cause it that the prompt is preceded with some color escape codes, so comint-redirect-results-list doesn't terminate. Setting the following fixes the problem for me:
Completions hang indefinitely in SBT 1.4.9, possibly in other versions as well. It seems that the root cause it that the prompt is preceded with some color escape codes, so
comint-redirect-results-list
doesn't terminate. Setting the following fixes the problem for me:(the missing Unicode character is the ANSI code for escape, 0x1B)
And obviously passing
--no-colors
as an option to SBT fixes the problem as well, but where's the fun in that?