aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCallum Oakley <c.oakley108@gmail.com>2019-11-29 22:10:01 +0000
committerfauxpark <fauxpark@gmail.com>2019-11-30 09:10:01 +1100
commitc0dbd81b2b652a3b44f5bbb22ee0ddaff8ed68ea (patch)
treefb33a80cab14b225fa699d788cb30a10cd308fb1
parent385454e6026e25b48bd15f76c237f88955f07088 (diff)
downloadqmk_firmware-c0dbd81b2b652a3b44f5bbb22ee0ddaff8ed68ea.tar.gz
qmk_firmware-c0dbd81b2b652a3b44f5bbb22ee0ddaff8ed68ea.zip
[keymap] personal keymap tweaks (#7510)
* replace home and end with cmd-left and cmd-right for iOS compatability * tab left and right with cmd-shift-bracket instead of ctrl-tab for Blink compatability * cmd-up and cmd-down instead of pg-up pg-down for blink shell compatability * Revert "cmd-up and cmd-down instead of pg-up pg-down for blink shell compatability" This reverts commit e976af9f11f77933f272edc22faf971445a65717. * reorganised symbol layer * update link in readme
-rw-r--r--keyboards/planck/keymaps/callum/keymap.c12
-rw-r--r--keyboards/planck/keymaps/callum/readme.md2
2 files changed, 7 insertions, 7 deletions
diff --git a/keyboards/planck/keymaps/callum/keymap.c b/keyboards/planck/keymaps/callum/keymap.c
index 2a7a53d38..c6298d247 100644
--- a/keyboards/planck/keymaps/callum/keymap.c
+++ b/keyboards/planck/keymaps/callum/keymap.c
@@ -63,16 +63,16 @@
63#define gbp A(KC_3) 63#define gbp A(KC_3)
64 64
65#define down KC_DOWN 65#define down KC_DOWN
66#define home KC_HOME 66#define home G(KC_LEFT)
67#define end KC_END 67#define end G(KC_RGHT)
68#define up KC_UP 68#define up KC_UP
69#define pgdn KC_PGDN 69#define pgdn KC_PGDN
70#define pgup KC_PGUP 70#define pgup KC_PGUP
71#define left KC_LEFT 71#define left KC_LEFT
72#define rght KC_RGHT 72#define rght KC_RGHT
73 73
74#define tabl S(C(KC_TAB)) 74#define tabl G(S(KC_LBRC))
75#define tabr C(KC_TAB) 75#define tabr G(S(KC_RBRC))
76#define fwd G(KC_RBRC) 76#define fwd G(KC_RBRC)
77#define back G(KC_LBRC) 77#define back G(KC_LBRC)
78#define dtl C(KC_LEFT) 78#define dtl C(KC_LEFT)
@@ -162,8 +162,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
162 162
163 [SYMB] = LAYOUT_planck_grid( 163 [SYMB] = LAYOUT_planck_grid(
164 esc, n7, n5, n3, n1, n9, n8, n0, n2, n4, n6, dash, 164 esc, n7, n5, n3, n1, n9, n8, n0, n2, n4, n6, dash,
165 del, bsls, hash, astr, eql, pipe, at, rprn, lprn, dlr, ampr, gbp, 165 del, at, dlr, eql, lprn, lbrc, rbrc, rprn, astr, hash, plus, gbp,
166 caps, grv, exlm, lbrc, rbrc, circ, tild, rcbr, lcbr, plus, perc, caps, 166 caps, grv, pipe, bsls, lcbr, tild, circ, rcbr, ampr, exlm, perc, caps,
167 ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____ 167 ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____
168 ), 168 ),
169 169
diff --git a/keyboards/planck/keymaps/callum/readme.md b/keyboards/planck/keymaps/callum/readme.md
index 190c2b23a..3eae9ad3c 100644
--- a/keyboards/planck/keymaps/callum/readme.md
+++ b/keyboards/planck/keymaps/callum/readme.md
@@ -28,7 +28,7 @@ This is a layout for the grid planck, built with a few ideals in mind:
28 28
29Layout rendered with [keyboard-layout-editor.com][]: 29Layout rendered with [keyboard-layout-editor.com][]:
30 30
31![](https://callum-oakley.github.io/images/keymap.png) 31![](https://callumoakley.net/images/keymap.png)
32 32
33The only behaviour not captured in this graphic is: pressing both cmd keys will 33The only behaviour not captured in this graphic is: pressing both cmd keys will
34send cmd+ctrl. See [keymap.c][] for details. 34send cmd+ctrl. See [keymap.c][] for details.