Abruzzo Forte e Gentile
Abruzzo Forte e Gentile

Reputation: 14869

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 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?

Upvotes: 23

Views: 19401

Answers (1)

dbrank0
dbrank0

Reputation: 9476

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)

Upvotes: 31

Related Questions