summaryrefslogtreecommitdiff
path: root/keyboards/ergodox_infinity/keymaps/nordic_ergo
diff options
context:
space:
mode:
authorKonstantin Đorđević <konstantin.djordjevic@tradecore.com>2019-08-02 21:52:53 +0200
committerskullydazed <skullydazed@users.noreply.github.com>2019-08-30 15:01:52 -0700
commit267a85c885a97219b544a3c706809821c4f28344 (patch)
tree199fb95690393a44feb1083e267bfb27beec9e56 /keyboards/ergodox_infinity/keymaps/nordic_ergo
parent7ff57644e181dda1b4e577517cf72cc962bf8f9e (diff)
Remove KC_DELT alias in favor of KC_DEL (#6327)
* Remove KC_DELT alias in favor of KC_DEL * Add changelog
Diffstat (limited to 'keyboards/ergodox_infinity/keymaps/nordic_ergo')
-rw-r--r--keyboards/ergodox_infinity/keymaps/nordic_ergo/keymap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/keyboards/ergodox_infinity/keymaps/nordic_ergo/keymap.c b/keyboards/ergodox_infinity/keymaps/nordic_ergo/keymap.c
index 156fd2f198..6a66b1d3fd 100644
--- a/keyboards/ergodox_infinity/keymaps/nordic_ergo/keymap.c
+++ b/keyboards/ergodox_infinity/keymaps/nordic_ergo/keymap.c
@@ -23,7 +23,7 @@ enum custom_keycodes {
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Keymap 0: Basic layer
*
- *
+ *
*
* ,--------------------------------------------------. ,--------------------------------------------------.
* | Esc | 1 | 2 | 3 | 4 | 5 | §½ | | PRSC | 6 | 7 | 8 | 9 | 0 | - |
@@ -54,7 +54,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
KC_LCTRL, KC_RBRC, KC_NONUS_BSLASH, KC_LALT, KC_LGUI,
KC_LEFT, KC_RIGHT,
KC_HOME,
- KC_SPC,KC_DELT,KC_END,
+ KC_SPC,KC_DEL, KC_END,
// right hand
KC_PSCREEN, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
TG(1), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,
@@ -68,7 +68,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Keymap 1: Basic layer with functions
*
- *
+ *
*
* ,--------------------------------------------------. ,--------------------------------------------------.
* | Esc | F1 | F2 | F3 | F4 | F5 | F11 | | F12 | F6 | F7 | F8 | F9 | 0 | - |
@@ -240,7 +240,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
break;
}
return true;
-}
+}
// Runs just one time when the keyboard initializes.
void matrix_init_user(void) {
@@ -249,7 +249,7 @@ void matrix_init_user(void) {
// Runs constantly in the background, in a loop.
void matrix_scan_user(void) {
-
+
uint8_t layer = biton32(layer_state);
ergodox_board_led_off();
ergodox_right_led_1_off();
@@ -265,5 +265,5 @@ void matrix_scan_user(void) {
default:
// none
break;
- }
+ }
};