aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/config.def.h b/config.def.h
index 1fa8de7..8c2c7ed 100644
--- a/config.def.h
+++ b/config.def.h
@@ -77,12 +77,6 @@ static const bool RENDER_WHITE_ALPHA = false;
#endif
#ifdef _MAPPINGS_CONFIG
-/* the prefix key: when pressed, the next key combo is passed to the external
- * key handler
- */
-#define PREFIX_KEYMASK ControlMask
-#define PREFIX_KEYSYM XK_x
-
/* keyboard mappings for image and thumbnail mode: */
static const keymap_t keys[] = {
/* modifiers key function argument */
@@ -91,6 +85,8 @@ static const keymap_t keys[] = {
{ 0, XK_f, it_toggle_fullscreen, (arg_t) None },
{ 0, XK_b, it_toggle_bar, (arg_t) None },
+ { ControlMask, XK_x, it_prefix_external, (arg_t) None },
+
{ 0, XK_r, it_reload_image, (arg_t) None },
{ 0, XK_R, t_reload_all, (arg_t) None },
{ 0, XK_D, it_remove_image, (arg_t) None },
@@ -161,7 +157,7 @@ static const keymap_t keys[] = {
{ 0, XK_braceleft, i_change_gamma, (arg_t) -1 },
{ 0, XK_braceright, i_change_gamma, (arg_t) +1 },
- { ControlMask, XK_G, i_change_gamma, (arg_t) 0 },
+ { ControlMask, XK_g, i_change_gamma, (arg_t) 0 },
};
/* mouse button mappings for image mode: */