Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
247 views

how to cancel ConsoleReader.readLine()

first of all, i'm learning scala and new to the java world. I want to create a console and run this console as a service that you could start and stop. I was able to run a ConsoleReader into an Actor ...
5
votes
2answers
6k views

Java keyboard input parsing in a console app

I've just started messing around with JLine to parse character input in console mode. It seems to work well, but I'm wondering: Is there a nonblocking way in JLine to find out if characters are ...
4
votes
4answers
941 views

clojure/lein REPL with jline

For some reason I can't get clojure REPL working with jline, what i did was git clone the clojure repository off github then run ant to build it, then i download jline-0.9.94.jar to the directory with ...
3
votes
2answers
97 views

Clojure standard REPL with buffer editor?

I am not looking for an IDE or integrated REPL. I just wanted to ask if someone knows if it is possible to have a buffer editor in the REPL as know from 'psql' or some *nix shells. In psql for ...
3
votes
2answers
601 views

readline-like library for Java

Which readline-like library for Java do you use? By 'readline' like library I mean library for editing console input, with support for history, tab-completion, and stuff like this. I'm looking for ...
1
vote
3answers
115 views

Where can I find documentation for the Scala jar files?

I have installed Scala 2.9.1.final This is the contents of it's "lib" folder: jline.jar scala-compiler.jar scala-dbc.jar scala-library.jar scalap.jar scala-swing.jar I am expecting that there is ...
1
vote
2answers
167 views

Is there a way to talk to a Clojure REPL process from another process?

I'm wondering if I can make a Vim plugin that sends forms over to the REPL session that lein repl starts. Is there a way to send messages to an existing jline.ConsoleRunner process?
0
votes
0answers
13 views

jline keep prompt at the bottom

I am using jline and I have a neat ConsoleReader and everything works great. However, if you are typing something into the the prompt and there is output on stdout (from another thread), the output ...
0
votes
1answer
61 views

How can I emit text on the command line with a strike-though effect using JLine?

I'm using JLine for a console application and I would like to emit text with a strike-through effect. Is this possible with JLine and how would I do it? Are there any platform-specific concerns?
0
votes
3answers
329 views

Why is my javap output different than yours for the same jar file?

I'm having trouble compiling code which has a maven dependency on jline-0.9.94. Specifically, I'm compiling Groovy 1.7.6 using its default Ant target and getting the following error: [...] -banner: ...
0
votes
1answer
207 views

jline multi-argument parsing

I am trying to get JLine to do tab completion so I can enter something like the following: commandname --arg1 value1 --arg2 value2 I am using the following code: final List<Completor> ...