Add Escape key to quit sent - sent - simple plaintext presentation tool | |
git clone git://git.suckless.org/sent | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 243c8cf7b6e66813609ac4ca9c9e6343408e1d72 | |
parent cc57a28eba7c2ec574d92817bff012b3b051dd6b | |
Author: Ivan Tham <[email protected]> | |
Date: Wed, 18 Nov 2015 10:01:50 +0800 | |
Add Escape key to quit sent | |
Diffstat: | |
M config.def.h | 1 + | |
1 file changed, 1 insertion(+), 0 deletions(-) | |
--- | |
diff --git a/config.def.h b/config.def.h | |
@@ -25,6 +25,7 @@ static Mousekey mshortcuts[] = { | |
static Shortcut shortcuts[] = { | |
/* keysym function argument */ | |
+ { XK_Escape, quit, {0} }, | |
{ XK_q, quit, {0} }, | |
{ XK_Right, advance, {.i = +1} }, | |
{ XK_Left, advance, {.i = -1} }, |