From c8da79d785abecfed64c2ce73199151961ec9366 Mon Sep 17 00:00:00 2001 From: SewerynKaminski Date: Thu, 22 Aug 2019 18:13:12 +0200 Subject: [PATCH] Fix terminal goto control sequence building --- vlib/term/control.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/term/control.v b/vlib/term/control.v index 56f67b0a79..a8d364bb38 100644 --- a/vlib/term/control.v +++ b/vlib/term/control.v @@ -18,7 +18,7 @@ module term // x is the x coordinate // y is the y coordinate pub fn set_cursor_position(x int,y int) { - print('\x1b[$y;$x;H') + print('\x1b[$y;$x'+'H') } // n is number of cells