setup leader key email sequences
This commit is contained in:
parent
2a9ea45a65
commit
ec43bf5af7
16
keyboards/crkbd/keymaps/sajenim/leader.c
Normal file
16
keyboards/crkbd/keymaps/sajenim/leader.c
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* If you’re a Vim user, you probably know what a Leader key is. */
|
||||
#include "quantum.h"
|
||||
|
||||
void leader_end_user(void) {
|
||||
/* Type some strings */
|
||||
|
||||
// (E)mail (O)utlook
|
||||
if (leader_sequence_two_keys(KC_E, KC_O)) {
|
||||
SEND_STRING("jasmine.wilson@outlook.com.au");
|
||||
}
|
||||
// (E)mail (P)roton
|
||||
else if (leader_sequence_two_keys(KC_E, KC_P)) {
|
||||
SEND_STRING("its.jassy@pm.me");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue