Home > Software engineering >  How to stop Pycharm from limiting the number of lines in the RUN?
How to stop Pycharm from limiting the number of lines in the RUN?

Time:09-06

while running a program I print lots of content, and Pycharm deletes some of the initial print. It seems to have a limit. I have tried various ways and did not figure out how to remove this limit. My goal is to be able to see everything on the "run" as per the image. Have you figured out how to do this? PyCharm run environment

CodePudding user response:

I think you can change that using:

  • preferences -> Editor -> General -> console -> Override console cycle buffer size
  • preferences -> Advanced Settings -> Terminal scrollback buffer size

CodePudding user response:

File ---> Settings ---> Editor ---> General ---> Console ---> Then check Out "Override console cycle buffer size (1024 KB)" Change that values into whatever you need.

it worked for me. My PyCharm Version is 2021.2 Click to check PyCharm Screenshot

  • Related