Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new keymap with split shift and split backspace for bananasplit PCB #8395

Merged
merged 3 commits into from
Mar 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions keyboards/thevankeyboards/bananasplit/keymaps/cijanzen/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#include QMK_KEYBOARD_H

#define DEFAULT_LAYER 0
#define HHKB_NAV_LAYER 1

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[DEFAULT_LAYER] = LAYOUT_hhkb_arrow(
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV,
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1),
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, _______, KC_MENU, KC_RCTL
),

[HHKB_NAV_LAYER] = LAYOUT_hhkb_arrow(
RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_INS, KC_DEL,
_______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP, _______, KC_DEL,
_______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT, KC_ENT,
_______, _______, _______, _______, _______, _______, _______, _______, KC_END, KC_PGDN, KC_DOWN, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
)
};
35 changes: 35 additions & 0 deletions keyboards/thevankeyboards/bananasplit/keymaps/cijanzen/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# cijanzen's keymap for the Bananasplit
## Layout Notes

Split right shift and split backspace. Second layer follows HHKB layer 2 layout.

Base layer:
```
-------------------------------------------------------------------------------------------
| Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | \ | ` |
-------------------------------------------------------------------------------------------
| Tab | Q | W | E | R | T | Y | U | I | O | P | [ | ] |Backspace|
-------------------------------------------------------------------------------------------
| Caps | A | S | D | F | G | H | J | K | L | ; | ' | Enter |
-------------------------------------------------------------------------------------------
| Shift | Z | X | C | V | B | N | M | , | . | / | Shift | Fn1 |
-------------------------------------------------------------------------------------------
| Ctrl | GUI | Alt | Space | Alt | GUI | App | Ctrl |
-------------------------------------------------------------------------------------------
```

Fn1 layer:

```
-------------------------------------------------------------------------------------------
|Reset| F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | Ins | Del |
-------------------------------------------------------------------------------------------
| | | | | | | | |Pscr |Slck |Paus | Up | | Del |
-------------------------------------------------------------------------------------------
| | | | | | | | |Home |PgUp |Left |Right| Enter |
-------------------------------------------------------------------------------------------
| | | | | | | | |End |PgDn |Down | | |
-------------------------------------------------------------------------------------------
| | | | | | | | |
-------------------------------------------------------------------------------------------
```