From 7242be173891bb59854acec7ced583dfc0eb591c Mon Sep 17 00:00:00 2001 From: speedie Date: Sun, 19 Mar 2023 17:16:51 +0100 Subject: [PATCH] change keybind for viewing history to prevent some issues --- keybinds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keybinds.h b/keybinds.h index b82c09e..4988bff 100644 --- a/keybinds.h +++ b/keybinds.h @@ -71,7 +71,7 @@ static Key keys[] = { { 0, CONTROL, XK_h, setcolumns, {.i = +1 } }, { 0, CONTROL, XK_l, setcolumns, {.i = -1 } }, { 0, CONTROL, XK_k, restoresel, {0} }, - { 0, CONTROL, XK_h, viewhist, {0} }, + { 0, CONTROL|SHIFT, XK_h, viewhist, {0} }, { 0, CONTROL, XK_u, clear, {0} }, { 0, 0, XK_Escape, quit, {0} }, { 0, 0, XK_Home, movestart, {0} },