forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new keymap with split shift and split backspace for bananas… (qmk…
…#8395) * Add new keymap with split right shift and split backspace for bananasplit PCB * Remove unecessary config.h * Remove unecessary line breaks Co-Authored-By: Ryan <fauxpark@gmail.com> Co-authored-by: Christopher Janzen <hello@christopherjanzen.com> Co-authored-by: Ryan <fauxpark@gmail.com>
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
keyboards/thevankeyboards/bananasplit/keymaps/cijanzen/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
35
keyboards/thevankeyboards/bananasplit/keymaps/cijanzen/readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | | | | ||
------------------------------------------------------------------------------------------- | ||
| | | | | | | | | | ||
------------------------------------------------------------------------------------------- | ||
``` |