diff options
| author | Joel Challis | 2023-11-26 19:36:45 +0100 |
|---|---|---|
| committer | GitHub | 2023-11-26 19:36:45 +0100 |
| commit | 1ed03f498fa204178c2696c510ac6a2cd8524e2d (patch) | |
| tree | b97c1f983b7e4b57c007d0feedadd3ad3e39062b /users/billypython/billypython.h | |
| parent | 4908d4b1ca260efecf3613e6517aa3a6f2034876 (diff) | |
Remove userspace keymaps (#22544)
Diffstat (limited to 'users/billypython/billypython.h')
| -rw-r--r-- | users/billypython/billypython.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/users/billypython/billypython.h b/users/billypython/billypython.h deleted file mode 100644 index cdf5121f2f..0000000000 --- a/users/billypython/billypython.h +++ /dev/null @@ -1,34 +0,0 @@ -#pragma once - -#include "quantum.h" - -#ifdef TAP_DANCE_ENABLE - #include "tap_dance.h" -#endif - -#ifdef LAYER_FN - #define FN MO(L_FN) - #define FN_CAPS LT(L_FN, KC_CAPS) - #define FN_FNLK TT(L_FN) -#endif - -#define TOP LCTL(KC_HOME) -#define BOTTOM LCTL(KC_END) - -enum keycodes_user { - CLEAR = SAFE_RANGE, - - RANGE_KEYMAP, -}; - -enum layers_user { - L_BASE, -#ifdef LAYER_FN - L_FN, -#endif - - L_RANGE_KEYMAP, -}; - -bool process_record_keymap(uint16_t keycode, keyrecord_t *record); -layer_state_t layer_state_set_keymap(layer_state_t state); |