Jasper Moeys
Jasper Moeys
Same thing happens when you accept the first suggested completion with `tab` or `enter`, which is probably the most common situation.
I guess it's some interplay between atom and the plugin. It doesn't seem to happen with completions—based on words previously used—that Atom itself suggests.
I ran into the same issue, with the following (not self contained, sorry) code: ``` def DayValue = rule { "Day" ~ "(" ~ 3.times(Integer).separatedBy(OptWhitespace ~ ",") ~ str(")") ~>...
> Porting CBT to Scala Native would potentially allow an entire tool chain independent of the JVM, including the build tool, which is a very important component of a tool...
@densh so a native Scala Native compiler will (relatively) soon be possible?
@cvogt I don't think I can reopen, but this reproduces it on my end: On Ubuntu 14.04 LTS, with $PATH already configured: ``` $ git clone https://github.com/cvogt/cbt.git $ cbt ```...
I deleted cbt and cloned it again when I wrote the reproduction instructions. I might have forgotten to kill nailgun though. But starting the REPL uses `direct` so I'm not...
``` $ cbt direct tools scala 2.10.6 Failed to created JLineReader: java.lang.NoClassDefFoundError: scala/tools/jline/console/ConsoleReader Falling back to SimpleReader. Welcome to Scala version 2.10.6 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_131). Type...
IMO the method being added here should be called `tryPeek`. `peek` should be like `take` without actually removing the element.
@lrytz > The error message should be error: Base is not an enclosing class Are you sure? `protected[Base]` should be accessible in both class/trait and companion object `Base` AFAIK.