I'm trying to write text editor with asciimatics, and I need to view cursor :)
Please add functions like cursor.show() and cursor.move(x, y)
Or just please explain how to do it. I see in code
win_out = win32console.CreateConsoleScreenBuffer()
win_out.SetConsoleCursorInfo(0, 1)
But how to use it?
I'm trying to write text editor with asciimatics, and I need to view cursor :)
Please add functions like cursor.show() and cursor.move(x, y)
Or just please explain how to do it. I see in code
win_out = win32console.CreateConsoleScreenBuffer()
win_out.SetConsoleCursorInfo(0, 1)
But how to use it?