qmk_firmware/keyboards/planck/keymaps/hiea/common/number_fkey_layout.h
sdothum 50b5c6ad72 update with qmk master (#2887)
* add splitography

* trim keymap.c

* add Makefile

* rename Makefile to rules.mk

* thumb key definition

* thumb key definition

* thumb key definition

* blue/orange layer swap, double qwerty steno exit

* fix TxBolt 1-3 key chord suppression (PREVENT_STUCK_MODIFIERS)

* add audio control

* beakl 8+10, dvorak (standard and splitography wide variant)

* beakl 8+10, dvorak (standard and splitography wide variant)

* shift layer home blocks

* regex layer key changes

* tilde align symbol navigation and regex layer

* splitography/planck code break out into common .h segments

* splitography/planck code break out into common .h segments

* splitography common library

* splitography common library

* splitography beakl altgr home row

* updating with qmk master
2018-05-04 18:36:23 -07:00

47 lines
3.1 KiB
C

// const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// ......................................................... Number Keypad Layer
// .-----------------------------------------------------------------------------------.
// | | F | E | D | | | | / | 7 | 8 | 9 | * |
// |-----------------------------------------------------------------------------------|
// | GUI | C | B | A | | | | . | 4 | 5 | 6 | - |
// |-----------------------------------------------------------------------------------|
// | | # | G | \ | | | | , | 1 | 2 | 3 | + |
// |-----------------------------------------------------------------------------------|
// | | | | f() | | | | 0 | = | | | |
// | | | | f() | | | | = | 0 | | | |
// '-----------------------------------------------------------------------------------'
[_NUMBER] = {
{_______, KC_F, MT_E, KC_D, _______, ___x___, ___x___, KC_SLSH, KC_7, KC_8, KC_9, KC_ASTR},
{OS_GUI, GT_C, AT_B, ST_A, _______, ___x___, ___x___, TD_DOT, KC_4, KC_5, KC_6, KC_MINS},
{_______, KC_HASH, SM_G, KC_BSLS, _______, ___x___, ___x___, TD_COMM, KC_1, KC_2, KC_3, KC_PLUS},
#ifdef THUMB_0
{___x___, ___x___, ___x___, ___fn__, ___x___, ___x___, ___x___, KC_0, LT_EQL, ___x___, ___x___, ___x___},
#else
{___x___, ___x___, ___x___, ___fn__, ___x___, ___x___, ___x___, KC_EQL, LT_0, ___x___, ___x___, ___x___},
#endif
},
// ............ .................................................. Function Keys
// .-----------------------------------------------------------------------------------.
// | | | | | | | | | F7 | F8 | F9 | F12 |
// |-----------------------------------------------------------------------------------|
// | Ctrl | GUI | Alt | Shift| | | | | F4 | F5 | F6 | F11 |
// |-----------------------------------------------------------------------------------|
// | | | | | | | | | F1 | F2 | F3 | F10 |
// |-----------------------------------------------------------------------------------|
// | | | | | | f() | | + | | | | |
// | | | | | f() | | | + | | | | | see _PLOVER
// '-----------------------------------------------------------------------------------'
[_FNCKEY] = {
{_______, _______, _______, _______, _______, ___x___, ___x___, _______, KC_F7, KC_F8, KC_F9, KC_F12 },
{OS_GUI, OS_CTL, OS_ALT, OS_SFT, _______, ___x___, ___x___, _______, KC_F4, KC_F5, KC_F6, KC_F11 },
{_______, _______, _______, _______, _______, ___x___, ___x___, _______, KC_F1, KC_F2, KC_F3, KC_F10 },
{_______, _______, _______, _______, ___fn__, ___fn__, _______, KC_PLUS, _______, _______, _______, _______},
},