Hello! Is there a way to clear the history of previous commands from the Python console? I don’t mean any of the log printed to the console; I’m talking about the previously sent commands that you can step through using the up and down arrow keys. I tried clear, cls, and disabling & reenabling the python plugin, but those didn’t do anythingAsking because I’ve noticed that after working on a project for a while and sending a few dozen scripts, the up and down arrow keys no longer work to navigate commands; instead the console jumps to not-the-most-recent command. It’s a small issue but is really annoying and the time spent searching for the right command or retyping or copy/pasting adds up. Thanks!
Solved it! I deleted the ConsoleHistory.ini file from MyProject/Saved/Config/ConsoleHistory.ini
When I restarted the engine it regenerated that file and everything is now working as expected.