degesch: remap goto-activity to M-a

weechat appears to use this key binding, so let's not reinvent it.
This commit is contained in:
Přemysl Eric Janouch 2016-03-26 13:10:23 +01:00
parent 1e24d1d1b8
commit 9b12c830d1
2 changed files with 2 additions and 2 deletions

2
NEWS
View File

@ -18,7 +18,7 @@
* degesch: added logging of messages sent from /quote and plugins
* degesch: M-! and M-@ to go to the next buffer in order with
* degesch: M-! and M-a to go to the next buffer in order with
a highlight or new activity respectively
* degesch: added --format for previewing things like MOTD files

View File

@ -12198,7 +12198,7 @@ bind_common_keys (struct app_context *ctx)
CALL_ (self, bind_meta, '\t', "switch-buffer");
CALL_ (self, bind_meta, '!', "goto-highlight");
CALL_ (self, bind_meta, '@', "goto-activity");
CALL_ (self, bind_meta, 'a', "goto-activity");
CALL_ (self, bind_meta, 'm', "insert-attribute");
CALL_ (self, bind_meta, 'h', "display-full-log");
CALL_ (self, bind_meta, 'e', "edit-input");