1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 13:26:38 +02:00

core: allow jump from current to previous buffer with default keys "alt-j NN"

This commit is contained in:
Simmo Saan
2015-07-21 10:31:52 +03:00
committed by Sébastien Helleu
parent 4736a5b320
commit 6e117a1caf
+1 -1
View File
@@ -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);
}
}