Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core] Add Caps Word feature to core #16588

Merged
merged 14 commits into from
May 14, 2022
4 changes: 4 additions & 0 deletions quantum/keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,10 @@ void quantum_task(void) {
#ifdef CAPS_WORD_ENABLE
caps_word_task();
#endif

#ifdef SECURE_ENABLE
secure_task();
#endif
}

/** \brief Keyboard task: Do keyboard routine jobs
Expand Down
8 changes: 6 additions & 2 deletions quantum/quantum_keycodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -597,9 +597,13 @@ enum quantum_keycodes {

QK_MAKE,

// Caps Word
CAPS_WORD,
SECURE_LOCK,
SECURE_UNLOCK,
SECURE_TOGGLE,

// Caps Word
CAPS_WORD,
getreuer marked this conversation as resolved.
Show resolved Hide resolved

// Start of custom keycode range for keyboards and keymaps - always leave at the end
SAFE_RANGE
};
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.