Skip to content

Commit

Permalink
Update keymap.c
Browse files Browse the repository at this point in the history
- macros can't be used with combos so adding ALT-TAB and SFT-ALT-TAB to the NAV later to close #18
  • Loading branch information
davidagross committed Dec 11, 2019
1 parent 4ee3355 commit 81de72c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions keyboards/minidox/keymaps/dgroseph/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ enum custom_keycodes {
NAV,
SYS,
FUN,
CTLCTV
ALTTAB,
CTLCTV,
SFALTB
};

// Shortcuts and Thumbs skeleton from oprietop
Expand Down Expand Up @@ -226,7 +228,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
* Navigation + mouse keys
*
* ,----------------------------------. ,----------------------------------.
* | ESC | |CTLCTV| | | | PAUSE| ACL0 | ACL1 | ACL2 | PSCR |
* | ESC |SFALTB|CTLCTV|ALTTAB| | | PAUSE| ACL0 | ACL1 | ACL2 | PSCR |
* |------+------+------+------+------| |------+------+------+------+------|
* | TAB | HOME | UP | END | PGUP | | WH U | BTN1 | MS U | BTN2 | INS |
* |------+------+------+------+------| |------+------+------+------+------|
Expand All @@ -238,8 +240,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
* | | | |
* `------' `------'
*/
[_NAV] = LAYOUT( \
KC_ESC, _______, CTLCTV, _______, _______, KC_PAUS, KC_ACL0, KC_ACL1, KC_ACL2, KC_PSCR, \
[_NAV] = LAYOUT(
KC_ESC, SFALTB, CTLCTV, ALTTAB, _______, KC_PAUS, KC_ACL0, KC_ACL1, KC_ACL2, KC_PSCR, \
KC_TAB, KC_HOME, KC_UP, KC_END, KC_PGUP, KC_WH_U, KC_BTN1, KC_MS_U, KC_BTN2, KC_INS, \
KC_CAPS, KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, KC_WH_D, KC_MS_L, KC_MS_D, KC_MS_R, KC_SLCK, \
SYS, NUM_LK, NAV_LK, SYS_LK, SYM_LK, SYS \
Expand Down

0 comments on commit 81de72c

Please sign in to comment.