From 6e117a1cafeaaa4561b23edf30c76ca05727e901 Mon Sep 17 00:00:00 2001 From: Simmo Saan Date: Tue, 21 Jul 2015 10:31:52 +0300 Subject: [PATCH] core: allow jump from current to previous buffer with default keys "alt-j NN" --- src/gui/curses/gui-curses-key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/curses/gui-curses-key.c b/src/gui/curses/gui-curses-key.c index 47356fa27..b2c8f43be 100644 --- a/src/gui/curses/gui-curses-key.c +++ b/src/gui/curses/gui-curses-key.c @@ -222,7 +222,7 @@ gui_key_default_bindings (int context) for (i = 1; i < 100; i++) { snprintf (key_str, sizeof (key_str), "meta-j%02d", i); - snprintf (command, sizeof (command), "/buffer %d", i); + snprintf (command, sizeof (command), "/buffer *%d", i); BIND(key_str, command); } }