[ide-console] Highlight repl process output

Add icons on gutter
Send messages to process in xml
This commit is contained in:
Dmitry Kovanikov
2015-08-07 17:33:35 +03:00
committed by Pavel V. Talanov
parent cb1756f5fa
commit cb5ff094bf
19 changed files with 543 additions and 237 deletions
@@ -114,9 +114,9 @@ public class ReplFromTerminal {
private void doRun() {
try {
replWriter.println("Welcome to Kotlin version " + KotlinVersion.VERSION +
replWriter.printlnInit("Welcome to Kotlin version " + KotlinVersion.VERSION +
" (JRE " + System.getProperty("java.runtime.version") + ")");
replWriter.println("Type :help for help, :quit for quit");
replWriter.printlnInit("Type :help for help, :quit for quit");
WhatNextAfterOneLine next = WhatNextAfterOneLine.READ_LINE;
while (true) {
next = one(next);