From 7ca8f85cd028825a4133a7cf16f70c059b54aa93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 8 Feb 2020 14:09:28 +0100 Subject: [PATCH] input: hook ctrl+{plus/KP-Add/minus/KP-Subtract} to term_font_size_{increase,decrease} --- input.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/input.c b/input.c index 2a4322c9..bb225f0c 100644 --- a/input.c +++ b/input.c @@ -385,6 +385,18 @@ keyboard_key(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, } } + else if (effective_mods == ctrl) { + if (sym == XKB_KEY_plus || sym == XKB_KEY_KP_Add) { + term_font_size_increase(term); + goto maybe_repeat; + } + + else if (sym == XKB_KEY_minus || sym == XKB_KEY_KP_Subtract) { + term_font_size_decrease(term); + goto maybe_repeat; + } + } + else if (effective_mods == (shift | ctrl)) { if (sym == XKB_KEY_C) { selection_to_clipboard(term, serial);