clojure-lanterna icon indicating copy to clipboard operation
clojure-lanterna copied to clipboard

A Clojurey wrapper around the Lanterna terminal output library.

Results 8 clojure-lanterna issues
Sort by recently updated
recently updated
newest added
trafficstars

Xterm and Putty are interchanged.

Hello I enjoy using this library, but do you plan on doing more development on thie library? I have created a little [snake game](https://github.com/vushu/consnake) using this library. cheers!

Hi. There are plenty of functions to set text at given coordinates, but it would also be possible to retrieve rows or columns from the screen or terminal.

According to the Java lanterna if you set the cursor to null it will hide the cursor: https://github.com/mabe02/lanterna/blob/release/2.1/src/main/java/com/googlecode/lanterna/screen/Screen.java#L121. However, This doesn't work Clojure lanterna because you hit a null pointer...

The functions `get-key` and `get-key-blocking` are giving you all keys pressed. But they don't seem to recognise the Control, Alt & super (and on Mac Command) keys. For instance, `get-key`...

enhancement

Hi, sorry but in the documentation I can't found if clojure lanterna support panels and GUIGuideComponents https://code.google.com/p/lanterna/wiki/GUIGuideComponents are they supported?..thank you...

enhancement

I get a screen looking like the one below, when i try to run the following code: ``` clojure (ns test.core (:use lanterna.screen)) (defn main-loop [scr x y] (redraw scr)...

bug

Now you can add a vector of ints for an RGB, an integer or a keyword to change the colour. If you pass none of these then no match occurs...