简体   繁体   中英

How to make the gdb tui window bigger

I am debugging my application by using gdb in tui mode.

When I start my debugging session the main windows is split in 2 equal-sized parts.

  • the window with the source code (upper side)
  • the window where I can call gdb commands (lower side)

The 2 windows are the same exact size.

Is there any way or key combination to make the source code window bigger than the other ones? Anything to make it larger?

See gdb manual for TUI commands .

You basically need to issue something like: winheight SRC + 5 (to increase of some columns) or winheight SRC 20 (to set absolute value)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM