summaryrefslogtreecommitdiff
path: root/keyboards/psuieee/pluto12/keymaps
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2024-02-19 09:48:06 +0000
committerGitHub <noreply@github.com>2024-02-19 09:48:06 +0000
commite26e12402b7a5a619a95999f5c8a2a73defcd9b3 (patch)
tree22b25da1370626c7f1cb31ff6c6683115b2ba968 /keyboards/psuieee/pluto12/keymaps
parentdb1df185c9f779bc36f85786f87135e03cfafd29 (diff)
Manual user keymap removal (#23104)
Diffstat (limited to 'keyboards/psuieee/pluto12/keymaps')
-rw-r--r--keyboards/psuieee/pluto12/keymaps/wymcg/keymap.c56
-rw-r--r--keyboards/psuieee/pluto12/keymaps/wymcg/readme.md1
2 files changed, 0 insertions, 57 deletions
diff --git a/keyboards/psuieee/pluto12/keymaps/wymcg/keymap.c b/keyboards/psuieee/pluto12/keymaps/wymcg/keymap.c
deleted file mode 100644
index 96499b8789..0000000000
--- a/keyboards/psuieee/pluto12/keymaps/wymcg/keymap.c
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2021-22 Will McGLoughlin (wymcg)
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#include QMK_KEYBOARD_H
-
-// Defines names for use in layer keycodes and the keymap
-enum layer_names {
- _BASE,
- _NAV,
- _PROD
-};
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [_BASE] = LAYOUT(
- KC_MUTE, KC_MPRV, KC_MPLY, KC_MNXT,
- TO(_NAV), G(KC_1), G(KC_2), G(KC_3),
- TO(_PROD), G(KC_4), G(KC_5), G(KC_6)
- ),
- [_NAV] = LAYOUT(
- TO(_BASE), KC_HOME, KC_UP, KC_END,
- A(KC_TAB), KC_LEFT, KC_DOWN, KC_RIGHT,
- G(KC_TAB), KC_PGDN, KC_PGUP, MO(_BASE)
- ),
- [_PROD] = LAYOUT(
- TO(_BASE), KC_NO, KC_NO, KC_NO,
- C(KC_Z), C(KC_X), C(KC_C), C(KC_V),
- C(KC_A), C(KC_LEFT), C(KC_RIGHT),MO(_BASE)
- )
-};
-
-bool encoder_update_user(uint8_t index, bool clockwise) {
- switch (biton32(layer_state)) {
- case _BASE:
- if (clockwise) {
- tap_code(KC_VOLU);
- } else {
- tap_code(KC_VOLD);
- }
- break;
- case _NAV:
- if (clockwise) {
- tap_code16(C(G(KC_RIGHT)));
- } else {
- tap_code16(C(G(KC_LEFT)));
- }
- break;
- case _PROD:
- if (clockwise) {
- tap_code16(C(KC_Y));
- } else {
- tap_code16(C(KC_Z));
- }
- break;
- }
- return false;
-}
diff --git a/keyboards/psuieee/pluto12/keymaps/wymcg/readme.md b/keyboards/psuieee/pluto12/keymaps/wymcg/readme.md
deleted file mode 100644
index 60d2f19be3..0000000000
--- a/keyboards/psuieee/pluto12/keymaps/wymcg/readme.md
+++ /dev/null
@@ -1 +0,0 @@
-# wymcg's custom keymap