-
-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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
Added Planck keymap: jcorrado #4081
Closed
Closed
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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,116 @@ | ||||||||||||||
/* Copyright 2015-2017 Jack Humbert | ||||||||||||||
* Copyright 2018 Jereme Corrado | ||||||||||||||
* | ||||||||||||||
* This program is free software: you can redistribute it and/or modify | ||||||||||||||
* it under the terms of the GNU General Public License as published by | ||||||||||||||
* the Free Software Foundation, either version 2 of the License, or | ||||||||||||||
* (at your option) any later version. | ||||||||||||||
* | ||||||||||||||
* This program is distributed in the hope that it will be useful, | ||||||||||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||||||||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||||||||||||
* GNU General Public License for more details. | ||||||||||||||
* | ||||||||||||||
* You should have received a copy of the GNU General Public License | ||||||||||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||||||||||||
*/ | ||||||||||||||
|
||||||||||||||
#include "planck.h" | ||||||||||||||
#include "action_layer.h" | ||||||||||||||
|
||||||||||||||
enum { | ||||||||||||||
_QWERTY = 0, | ||||||||||||||
_NUM, | ||||||||||||||
_SYM_L, | ||||||||||||||
_SYM_R | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
#define LMOD_0 LT(_SYM_L, KC_TAB) /* Tab, hold: Sym layer */ | ||||||||||||||
#define LMOD_1 LT(_NUM, KC_ESC) /* Esc, hold: Num layer */ | ||||||||||||||
#define LMOD_2 LSFT_T(KC_CAPS) /* Caps Lock, hold: Left Shift */ | ||||||||||||||
|
||||||||||||||
#define RMOD_0 LT(_SYM_R, KC_BSPC) /* Backspace, hold: Sym layer */ | ||||||||||||||
#define RMOD_1 LT(_NUM, KC_QUOT) /* Quote, hold: Nu layer */ | ||||||||||||||
#define RMOD_2 RSFT_T(KC_ENT) /* Enter, hold: Right Shift */ | ||||||||||||||
|
||||||||||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||||||||||
|
||||||||||||||
/* | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | Tab/ | Q | W | E | R | T | Y | U | I | O | P | BacSp/ | | ||||||||||||||
* | Sym | | | | | | | | | | | Sym | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | Esc/ | A | S | D | F | G | H | J | K | L | : | " | | ||||||||||||||
* | Num | | | | | | | | | | ; | '/Num | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | CapLk/ | Z | X | C | V | B | N | M | < | > | ? | Shift/ | | ||||||||||||||
* | Shift | | | | | | | | , | . | / | Enter | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | Toggle | ~ | {pipe} | Alt | Ctrl | Space | Space | Ctrl | Alt | { | } | | | ||||||||||||||
* | Num | ` | \ | | | | | | | [ | ] | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
*/ | ||||||||||||||
|
||||||||||||||
[_QWERTY] = { | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All your layers should be formatted to use an appropriate LAYOUT macro, as seen here: qmk_firmware/keyboards/planck/keymaps/default/keymap.c Lines 58 to 63 in 27e216f
|
||||||||||||||
{LMOD_0, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, RMOD_0}, | ||||||||||||||
{LMOD_1, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, RMOD_1}, | ||||||||||||||
{LMOD_2, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, RMOD_2}, | ||||||||||||||
{_______, KC_GRV, KC_BSLS, KC_LALT, KC_LCTL, KC_SPC, KC_SPC, KC_RCTL, KC_RALT, KC_LBRC, KC_RBRC, _______} | ||||||||||||||
}, | ||||||||||||||
|
||||||||||||||
|
||||||||||||||
/* | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | | | | | | | Left | Down | Up | Right | | | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | | | | | | | Home | PgDown | PgUp | End | | | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
*/ | ||||||||||||||
|
||||||||||||||
[_NUM] = { | ||||||||||||||
{KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS}, | ||||||||||||||
{_______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, _______, _______}, | ||||||||||||||
{_______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END, _______, _______}, | ||||||||||||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} | ||||||||||||||
}, | ||||||||||||||
|
||||||||||||||
|
||||||||||||||
/* | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | + | ! | @ | # | $ | % | ^ | & | * | ( | ) | _ | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | | F1 | F2 | F3 | F4 | F5 | F6 | | | | | | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | | F7 | F8 | F9 | F10 | F11 | F12 | | | | | | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* | | | | | | | | | | | | | | ||||||||||||||
* |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------| | ||||||||||||||
*/ | ||||||||||||||
|
||||||||||||||
[_SYM_L] = { | ||||||||||||||
{_______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_UNDS}, | ||||||||||||||
{_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, _______, _______, _______, _______, _______}, | ||||||||||||||
{_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______}, | ||||||||||||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} | ||||||||||||||
}, | ||||||||||||||
|
||||||||||||||
[_SYM_R] = { | ||||||||||||||
{KC_PLUS, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______}, | ||||||||||||||
{_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, _______, _______, _______, _______, _______}, | ||||||||||||||
{_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______}, | ||||||||||||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
}; |
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,9 @@ | ||
# jcorrado Planck keymap | ||
|
||
A keymap for the Planck modeled after the way I remap my Kinesis | ||
Advantage keyboards. | ||
|
||
The layout is designed to minimize awkward contortions: all modifier and | ||
layer-activation combinations can be performed with either hand's thumb | ||
and pinky. This leaves the other hand free to complete commands | ||
comfortably. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lines 18-19 should be replaced with
#include QMK_KEYBOARD_H
.