Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I expand the max width of the Run Tool Window in Clion/Intellij?

As you can see, there's plenty of space for the text to expand to the right, but it gets wrapped at 120 characters. I have tried turning off soft wrapping (the little button on the right side), I tried going into the settings, under editor -> general -> console, unchecking "use soft wraps in console", and increasing the "console commands history size", but none of these have worked. I'd like for the cout of my program to continue to the right, and ideally just make a horizontal scroll bar rather than wrapping or truncating. Is there a way to do this in CLion/Intellij?

like image 271
KITTYONFYRE Avatar asked Dec 17 '22 21:12

KITTYONFYRE


1 Answers

120 is the default value for windows console. To change the value 1. you can set the OS-wide system variable CONSOLE_WIDTH. 2. setup CONSOLE_WIDTH inside you run configuration:

Configuration editor

then Registry... (aka Help -> Find action -> Registry...) got to be invoked to opt out value of run.processes.with.pty

Registry...

like image 185
uta Avatar answered Apr 09 '23 12:04

uta