aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2016-03-26 13:10:23 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2016-03-26 13:11:28 +0100
commit9b12c830d10a84460b79ac6b7a10e2bf190722ef (patch)
tree10e9c4b12a6f73817470c7c77a60a74fd3c64412
parent1e24d1d1b8d55005e54948fbd8bff6fb50d3bb8e (diff)
downloadxK-9b12c830d10a84460b79ac6b7a10e2bf190722ef.tar.gz
xK-9b12c830d10a84460b79ac6b7a10e2bf190722ef.tar.xz
xK-9b12c830d10a84460b79ac6b7a10e2bf190722ef.zip
degesch: remap goto-activity to M-a
weechat appears to use this key binding, so let's not reinvent it.
-rw-r--r--NEWS2
-rw-r--r--degesch.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 2c88bf2..ca9ee47 100644
--- a/NEWS
+++ b/NEWS
@@ -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
diff --git a/degesch.c b/degesch.c
index 01be6dc..bee5ef8 100644
--- a/degesch.c
+++ b/degesch.c
@@ -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");