From 0a55db9c1cb0803c2de7b72d3b52e7bf6d119426 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Mon, 7 Oct 2019 18:44:21 -0700 Subject: [PATCH] Fixed the really annoying thing with camel case seeking --- custom/generated/remapping.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/custom/generated/remapping.h b/custom/generated/remapping.h index 921f9297..1b9eceb3 100644 --- a/custom/generated/remapping.h +++ b/custom/generated/remapping.h @@ -127,10 +127,13 @@ void fill_keys_default(Bind_Helper *context){ end_map(context); begin_map(context, default_code_map); inherit_map(context, mapid_file); - bind(context, key_left, MDFR_CTRL, move_left_alpha_numeric_or_camel_boundary); - bind(context, key_right, MDFR_CTRL, move_right_alpha_numeric_or_camel_boundary); - bind(context, key_left, MDFR_ALT, move_left_alpha_numeric_boundary); - bind(context, key_right, MDFR_ALT, move_right_alpha_numeric_boundary); + bind(context, key_left, MDFR_CTRL, move_left_alpha_numeric_boundary); + bind(context, key_left, MDFR_CTRL|MDFR_SHIFT, move_left_alpha_numeric_boundary); + bind(context, key_right, MDFR_CTRL, move_right_alpha_numeric_boundary); + bind(context, key_right, MDFR_CTRL|MDFR_SHIFT, move_right_alpha_numeric_boundary); + bind(context, key_left, MDFR_ALT, move_left_alpha_numeric_or_camel_boundary); + bind(context, key_left, MDFR_ALT|MDFR_SHIFT, move_left_alpha_numeric_or_camel_boundary); + bind(context, key_right, MDFR_ALT|MDFR_SHIFT, move_right_alpha_numeric_or_camel_boundary); bind(context, '\n', MDFR_NONE, write_and_auto_tab); bind(context, '\n', MDFR_SHIFT, write_and_auto_tab); bind(context, '}', MDFR_NONE, write_and_auto_tab);