20

Is there any way to resize the command-line / interpreter window/pane in pudb, just like the size of the side pane can be adjusted?

Rob Bednark
  • 25,981
  • 23
  • 80
  • 125

1 Answers1

33
  1. Put the focus in the command-line / interpreter pane (using Ctrl-x).
  2. Use the right-arrow key to put the focus on the Clear button. (the background changes color to indicate it is selected)
  3. Now use any of the following commands:
  • _ (underscore; makes that pane the smallest size possible)
  • = (equals; makes that pane the largest size possible)
  • + (plus; increases the size of that pane with each press)
  • - (minus; decreases the size of that pane with each press)
Rob Bednark
  • 25,981
  • 23
  • 80
  • 125
  • 1
    In step 2, if I put the focus on the button, then step 3 works. Thanks! – auro Jun 09 '16 at 21:23
  • Thank you @auro! Angle brackets (<>'s) around Clear was causing it not to be displayed. I have now fixed it removing the brackets. – Rob Bednark Jun 10 '16 at 01:05
  • 1
    Do you know of a way to make the expanded size the default size? I would like it to always start with a bigger size – fersarr Aug 10 '20 at 14:56