liquid

shakdwipeea 2018-04-01T10:04:43.000006Z

Hi, I tried to setup the editor in a vagrant box on windows. Following http://salza.dk/setupbasic.html, i have created the project but when I start the editor using clj -m liana.core I get https://imgur.com/a/2Ia78 behaviour. The nav keys don't work and the lines in the window are repeated. I am using vagrant and have a ubuntu image, with windows 10. The terminal I am using is cmder. What should I try to look into?

shakdwipeea 2018-04-01T10:07:32.000059Z

I also tried the jframe option. In that, the window goes blank when I resize / maximize.

mogenslund 2018-04-01T15:14:28.000033Z

The jframe version is fixed size. I have spent most time supporting the terminal. The size for the jframe can be adjusted on startup using --rows --columns parameters, like: clj -m liana.core --jframe --rows=50 --columns=180 It does not change automatically on resize. To force redraw of the whole window you can use C-g.

mogenslund 2018-04-01T15:28:37.000087Z

Command prompts on Windows usually does not support the low level commands I use to control drawing, so use JFrame in any Windows setup, unless you are inside a VirtualBox.

shakdwipeea 2018-04-01T19:59:21.000021Z

Thanks. Another question.. How can i go about changing the font size in the jframe version?

mogenslund 2018-04-01T20:39:12.000019Z

Append a parameter like: --fontsize=14 To see all parameters run: clj -m liana.core --help

1👍