Skip to content

Commit

Permalink
Remove commented out code. Oops
Browse files Browse the repository at this point in the history
Co-authored-by: jack <[email protected]>
  • Loading branch information
guidoism and waffle87 authored Dec 11, 2024
1 parent 5777eb3 commit 748e46d
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions keyboards/vt40/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,6 @@

#include QMK_KEYBOARD_H

/*
enum custom_keycodes {
KC_P00 = SAFE_RANGE
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_PMNS,
KC_P7, KC_P8, KC_P9, KC_PPLS,
KC_P4, KC_P5, KC_P6, KC_PERC,
KC_P1, KC_P2, KC_P3, KC_EQL,
KC_P0, KC_P00, KC_PDOT, KC_PENT
)
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
if (record->event.pressed) {
switch(keycode) {
case KC_P00:
tap_code(KC_P0);
tap_code(KC_P0);
return false;
}
}
return true;
}
#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = { ENCODER_CCW_CW(KC_PGUP, KC_PGDN) }
};
#endif
*/

enum planck_layers {
_QWERTY,
Expand Down

0 comments on commit 748e46d

Please sign in to comment.