aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authoreylles <eylles@noreply.codeberg.org>2023-04-14 21:45:39 +0200
committerNRK <nrk@disroot.org>2023-04-14 21:45:39 +0200
commit733916ad70b5b2d92e7adfecdf53a74dd4617b74 (patch)
treede9b410c9d73fab6be96e2f24f4e5724fdd9c716 /config.def.h
parent4df97db1cd566fab1ed927986e40cc4542e937c5 (diff)
downloadnsxiv-733916ad70b5b2d92e7adfecdf53a74dd4617b74.tar.zst
add a pick quit keybind (#432)
The last time[0] this was discussed, no-one was against it but no-one was confident in it either and so it was added to nsxiv-extra as a patch. But now that enough time has passed, it seems like there's a pretty high demand for something like this because there's plenty of use-cases that use nsxiv as a "picker" where it's meant to quickly pick a single file. And so add this as a convenient default key-bind. [0]: https://codeberg.org/nsxiv/nsxiv-record/pulls/42 Co-authored-by: eylles <ed.ylles1997@gmail.com> Co-authored-by: NRK <nrk@disroot.org> Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/432 Reviewed-by: NRK <nrk@disroot.org> Co-authored-by: eylles <eylles@noreply.codeberg.org> Co-committed-by: eylles <eylles@noreply.codeberg.org>
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index a0935f6..5d4e97a 100644
--- a/config.def.h
+++ b/config.def.h
@@ -92,6 +92,7 @@ static const KeySym KEYHANDLER_ABORT = XK_Escape;
static const keymap_t keys[] = {
/* modifiers key function argument */
{ 0, XK_q, g_quit, 0 },
+ { 0, XK_Q, g_pick_quit, 0 },
{ 0, XK_Return, g_switch_mode, None },
{ 0, XK_f, g_toggle_fullscreen, None },
{ 0, XK_b, g_toggle_bar, None },