summaryrefslogtreecommitdiff
path: root/quantum/template/keymaps/default.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/template/keymaps/default.c')
-rw-r--r--quantum/template/keymaps/default.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/quantum/template/keymaps/default.c b/quantum/template/keymaps/default.c
deleted file mode 100644
index 4121fd860c..0000000000
--- a/quantum/template/keymaps/default.c
+++ /dev/null
@@ -1,30 +0,0 @@
-// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
-// this is the style you want to emulate.
-
-#include "%KEYBOARD%.h"
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-[0] = KEYMAP( /* Base */
- KC_A, KC_1, KC_H, \
- KC_TAB, KC_SPC \
-),
-};
-
-const uint16_t PROGMEM fn_actions[] = {
-
-};
-
-const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
-{
- // MACRODOWN only works in this function
- switch(id) {
- case 0:
- if (record->event.pressed) {
- register_code(KC_RSFT);
- } else {
- unregister_code(KC_RSFT);
- }
- break;
- }
- return MACRO_NONE;
-};