When I use the normal std::cin
or std::cin.get()
or std::getline()
functions, I get unwanted (but understandable) behaviour.
When you use the arrow keys to move back for example, you don't move back, but you input something like "^[[D" into the console.
Is there a way to make the std input function more like, let's say the Python terminal environment?
Thanks in advance!