From 2ac44709bd9a9ec8d3ab60a40a81ac7ca3ad1b57 Mon Sep 17 00:00:00 2001 From: Nick Hanley Date: Sat, 15 Jan 2022 17:51:31 -0500 Subject: Add keybind to scroll to image center (#203) There are keybinds for scrolling to the edges of an image but there's no way back to the center. This is particularly annoying while zooming. --- config.def.h | 1 + 1 file changed, 1 insertion(+) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index b328305..0973ff4 100644 --- a/config.def.h +++ b/config.def.h @@ -158,6 +158,7 @@ static const keymap_t keys[] = { { 0, XK_J, i_scroll_to_edge, DIR_DOWN }, { 0, XK_K, i_scroll_to_edge, DIR_UP }, { 0, XK_L, i_scroll_to_edge, DIR_RIGHT }, + { 0, XK_z, i_scroll_to_center, None }, { 0, XK_equal, i_set_zoom, 100 }, { 0, XK_w, i_fit_to_win, SCALE_DOWN }, { 0, XK_W, i_fit_to_win, SCALE_FIT }, -- cgit v1.2.3-54-g00ecf