While using cgdb, how does one scroll through the output visible in the gdb window?
Asked
Active
Viewed 9,963 times
17
-
3Have you tried `alt+p/alt+n`, pageup/pagedown? – nneonneo Oct 02 '12 at 00:18
-
This is a good answer, not only does page up/page down scroll the cgdb windows, but alt + up arrow, alt + down arrow will scroll the source window. – viktorzeid Nov 19 '13 at 23:23
1 Answers
21
PgUp and PgDn should scroll the gdb window. If they don't, check your TERM
environment variable and make sure it's set correctly.

Mike Mueller
- 2,072
- 15
- 16
-
For anyone wondering, `i` should do the trick when you want to exit scroll mode. – MattS Sep 20 '18 at 23:01
-
3