Skip to content

Commit d1e6cbb

Browse files
committed
Change caps word to not convert - into _
1 parent 01dd6c6 commit d1e6cbb

File tree

1 file changed

+6
-4
lines changed
  • keyboards/crkbd/keymaps/victorgalo

1 file changed

+6
-4
lines changed

keyboards/crkbd/keymaps/victorgalo/keymap.c

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -512,12 +512,14 @@ bool caps_word_press_user(uint16_t keycode) {
512512
switch (keycode) {
513513
// Keycodes that continue Caps Word, with shift applied.
514514
case KC_A ... KC_Z:
515-
case KC_MINS:
516-
// Apply shift to the next key.
517-
add_weak_mods(MOD_BIT(KC_LSFT));
518-
return true;
515+
516+
// case KC_MINS:
517+
// // Apply shift to the next key.
518+
// add_weak_mods(MOD_BIT(KC_LSFT));
519+
// return true;
519520

520521
// Keycodes that continue Caps Word, without shifting.
522+
case KC_MINS:
521523
case KC_1 ... KC_0:
522524
case KC_BSPC:
523525
case KC_DEL:

0 commit comments

Comments
 (0)