Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make the command-line / interpreter pane/window bigger in pudb?

Tags:

python

pudb

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?

like image 565
Rob Bednark Avatar asked Apr 12 '16 05:04

Rob Bednark


1 Answers

  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)
like image 116
Rob Bednark Avatar answered Oct 16 '22 20:10

Rob Bednark