Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it a button or a tab on headers in Emacs gdb-many-windows-mode?

Tags:

emacs

gdb

gud

Some of the windows have clickable buttons or tabs on header in gdb-many-windows-mode such as 'Locals/Registers' or 'Breakpoints/Threads'. Are they tabs? Can I add new one next to them? see this

like image 415
aspirin Avatar asked Jul 31 '12 01:07

aspirin


1 Answers

Buttons.

When gdb-many-windows is non-nil, the GDB Breakpoints buffer shares its window with the GDB Threads buffer. To switch from one to the other click with Mouse-1 on the relevant button in the header line. If gdb-show-threads-by-default is non-nil, the GDB Threads buffer is the one shown by default.Source

If you want to try and add buttons you'd probably have to expand gdb-mi.el. I am not sure whether that is possible without a hassle.

like image 168
edt_devel Avatar answered Oct 04 '22 21:10

edt_devel