diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-04 12:17:09 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-04 12:17:09 +0200 |
commit | 03e8ad0a3ed1945fbfb8dfc0158a7ecb2c2c2d82 (patch) | |
tree | 2cf3f0d7a3aacf477f30a967e7ff6948f5d39ac8 /degesch.c | |
parent | f665f147ffb542024a754f227186950e222927b4 (diff) | |
download | xK-03e8ad0a3ed1945fbfb8dfc0158a7ecb2c2c2d82.tar.gz xK-03e8ad0a3ed1945fbfb8dfc0158a7ecb2c2c2d82.tar.xz xK-03e8ad0a3ed1945fbfb8dfc0158a7ecb2c2c2d82.zip |
degesch: enable wrapping in the backlog by default
The main issue has been eliminated.
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12973,7 +12973,7 @@ bind_common_keys (struct app_context *ctx) if (key_f5) CALL_ (self, bind, key_f5, "previous-buffer"); if (key_f6) CALL_ (self, bind, key_f6, "next-buffer"); - if (key_ppage) CALL_ (self, bind, key_ppage, "display-backlog-nw"); + if (key_ppage) CALL_ (self, bind, key_ppage, "display-backlog"); if (clear_screen) CALL_ (self, bind_control, 'l', "redraw-screen"); |